| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1275710 | marckv | Cluedo (IOI10_cluedo) | C++20 | 49 ms | 332 KiB |
#include <bits/stdc++.h>
using namespace std;
// Provided by the grader (you don’t implement this)
int Theory(int murderer, int location, int weapon);
// You must implement this
void Solve() {
// your logic goes here
// repeatedly call Theory(...) until it returns 0
for (int i=1; i<=6; i++) {
for (int j=1; j<=10; j++) {
for (int k=1; k<=6; k++) {
if (Theory(i, j, k) == 0) return;
}
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
