Submission #390277

# Submission time Handle Problem Language Result Execution time Memory
390277 2021-04-15T18:06:08 Z MilosMilutinovic Cluedo (IOI10_cluedo) C++14
0 / 100
1 ms 200 KB
/**
 *    author:  milos
 *    created: 15.04.2021 20:03:19       
**/
#include <bits/stdc++.h>
#include "cluedo.h"
#include "grader.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++;
  }
}
# Verdict Execution time Memory Grader output
1 Failed 1 ms 200 KB wrong parameter
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Failed 1 ms 200 KB wrong parameter
2 Halted 0 ms 0 KB -