| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 598611 | Mounir | Cluedo (IOI10_cluedo) | C++14 | 15 ms | 208 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 "grader.h"
#include "cluedo.h"
void Solve(){
int minIndex[3];
minIndex[0] = minIndex[1] = minIndex[2] = 1;
while (true){
int ans = Theory(minIndex[0], minIndex[1], minIndex[2]);
if (ans == 0) return;
minIndex[ans - 1]++;
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
