Submission #390273

# Submission time Handle Problem Language Result Execution time Memory
390273 2021-04-15T18:04:32 Z MilosMilutinovic Cluedo (IOI10_cluedo) C++14
Compilation error
0 ms 0 KB
/**
 *    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

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