Submission #1130293

#TimeUsernameProblemLanguageResultExecution timeMemory
1130293sohamsen15Cluedo (IOI10_cluedo)C++20
Compilation error
0 ms0 KiB
#pragma GCC optimize("O3,unroll-loops")
#include <bits/stdc++.h>
#include <grader.h>
using namespace std;
using ll = long long;
const int INF = 999999;

void Solve() {
    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;
}

Compilation message (stderr)

cluedo.cpp:3:10: fatal error: grader.h: No such file or directory
    3 | #include <grader.h>
      |          ^~~~~~~~~~
compilation terminated.