Submission #1011809

#TimeUsernameProblemLanguageResultExecution timeMemory
1011809nomuluunHotter Colder (IOI10_hottercolder)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; HC(int N){ Guess(1); for(int i=1; i<=N; i++){ Guess(i); } }

Compilation message (stderr)

hottercolder.cpp:3:1: error: ISO C++ forbids declaration of 'HC' with no type [-fpermissive]
    3 | HC(int N){
      | ^~
hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:4:5: error: 'Guess' was not declared in this scope
    4 |     Guess(1);
      |     ^~~~~
hottercolder.cpp:8:1: warning: no return statement in function returning non-void [-Wreturn-type]
    8 | }
      | ^