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