| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1289369 | aren_dance | Cluedo (IOI10_cluedo) | C++20 | 4 ms | 400 KiB |
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;
void Solve(){
int i=1;
int j=1;
int k=1;
while(true){
int x=Theory(i,j,k);
if(x==0){
return;
}
if(x==1){
i++;
}
if(x==2){
j++;
}
if(x==3){
k++;
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
