Submission #389256

#TimeUsernameProblemLanguageResultExecution timeMemory
389256balbitXOR Sum (info1cup17_xorsum)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "grader.h"

using namespace std;

int findEgg (int N, vector < pair < int, int > > bridges)
{
    for (int i = 1; i<=N; ++i) {
        if (query({i})) return 1;
    }
//    if (query ({1})) return 1;
//    return N;
}

Compilation message (stderr)

xorsum.cpp:2:10: fatal error: grader.h: No such file or directory
    2 | #include "grader.h"
      |          ^~~~~~~~~~
compilation terminated.