Submission #1011751

#TimeUsernameProblemLanguageResultExecution timeMemory
1011751uranhishigHotter Colder (IOI10_hottercolder)C++14
0 / 100
181 ms16180 KiB
#include <bits/stdc++.h>
using namespace std;

int Guess(int G);

int HC(int n){
	int q = 0, i;
	bool x = true;
	bool xx = true;
   	for(int i = 1; i <= 500; i++){
   		int w = Guess(i);
   		if(w == -1){
   			if(xx){
   				q = i;
   				xx = false;
			}
   			x = false;
		}
   	}
   if(x){
   		cout << "500" << endl;
   }
   else{
   	   cout << q - 1 << endl;
   }

}

Compilation message (stderr)

hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:7:13: warning: unused variable 'i' [-Wunused-variable]
    7 |  int q = 0, i;
      |             ^
hottercolder.cpp:27:1: warning: no return statement in function returning non-void [-Wreturn-type]
   27 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...