| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1322741 | akneeka | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "cluedo.h"
using namespace std;
void Solve(){
for (int i = 1; i <= 6; i++){
for (int j = 1; j <= 10; j++){
for (int k = 1; k <= 6; k++){
int ans = Theory(i, j, k);
if (ans == 0){return;}
}
}
}
}
