Submission #1284155

#TimeUsernameProblemLanguageResultExecution timeMemory
1284155ggillianjiang코끼리 (Dancing Elephants) (IOI11_elephants)C++20
Compilation error
0 ms0 KiB
#include "grader.h"
#include "cluedo.h"
#include <vector>

#define m first.first
#define l first.second
#define w second

using namespace std;

void Solve(){
   pair< pair<int, int> , int> mlw;
   int r;
   r = Theory(mlw.m, mlw.l, mlw.w);
   if (r == 0) return;
   else if(r==1) mlw.m++;
   else if(r==2) mlw.l++;
   else mlw.w++;
}

Compilation message (stderr)

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