Submission #957656

#TimeUsernameProblemLanguageResultExecution timeMemory
957656AC2KRegions (IOI09_regions)C++17
Compilation error
0 ms0 KiB
#include "cluedo.h"
#include "grader.h"

void Solve() {
    int ans_x = 0, ans_y = 0, ans_z = 0;

    while (1) {
        int res = Theory(ans_x, ans_y, ans_z);
        if (res == 0) {
            return;
        }
        if (res == 1) {
            ++ans_x;
        }
        if (res == 2) {
            ++ans_y;
        }
        if (res == 3) {
            ++ans_z;
        }
    }
}

Compilation message (stderr)

regions.cpp:1:10: fatal error: cluedo.h: No such file or directory
    1 | #include "cluedo.h"
      |          ^~~~~~~~~~
compilation terminated.