Submission #777834

#TimeUsernameProblemLanguageResultExecution timeMemory
777834Minindu206Grapevine (NOI22_grapevine)C++14
Compilation error
0 ms0 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int a = 1, b = 1, c = 1;
   int x = Theory(a, b, c);
   while(x)
   {
      if(x == 1)
         a++;
      if(x == 2)
         b++;
      if(x == 3)
         c++;
      x = Theory(a, b, c);
   }
}

Compilation message (stderr)

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