| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 545595 | Gabriel | Cluedo (IOI10_cluedo) | C++17 | 13 ms | 280 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "cluedo.h"
#include "grader.h"
#include "bits/stdc++.h"
using namespace std;
void Solve(){
long long a = 1;
long long b = 1;
long long c = 1;
while(true){
int d = Theory(a, b, c);
switch(d){
case 1:
a++;
break;
case 2:
b++;
break;
case 3:
c++;
break;
case 0:
return;
}
}
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
