Submission #390275

#TimeUsernameProblemLanguageResultExecution timeMemory
390275MilosMilutinovicCluedo (IOI10_cluedo)C++14
Compilation error
0 ms0 KiB
/**
 *    author:  milos
 *    created: 15.04.2021 20:03:19       
**/
#include <bits/stdc++.h>
#include "cleudo.h"
 
using namespace std;
 
void Solve() {
  int x = 1, y = 1, z = 1;
  while (true) {
    int foo = Theory(x, z, y);
    if (foo == 0) break;
    if (foo == 1) x++;
    if (foo == 2) y++;
    if (foo == 3) z++;
  }
}

Compilation message (stderr)

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