| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1307602 | LBP139 | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
using namespace std;
int main(){
for(int i=1;i<=6;i++){
for(int j=1;j<=10;j++){
for(int k=1;k<=6;k++){
cout<<"Theory("<<i<<", "<<j<<", "<<k<<")"<<endl;
int t;
cin>>t;
if(t==0){
break;
}
}
}
}
return 0;
}
