You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
347 B

// RESULT: 0
S=?[ s=0 ];
// RESULT: 0
S=?[ s=0 & t=0 ];
// RESULT: 1/3
S=?[ s=1 & t=0 ];
// RESULT: 1/6
S=?[ s=1 & t=1 ];
// RESULT: 1/6
S=?[ s=1 & t=2 ];
// RESULT: 1/6
S=?[ s=2 & t=0 ];
// RESULT: 1/12
S=?[ s=2 & t=1 ];
// RESULT: 1/12
S=?[ s=2 & t=2 ];
// RESULT: 1/2
S=?[ t=0 ];
// RESULT: 1/4
S=?[ t=1 ];
// RESULT: 1/4
S=?[ t=1 ];