Submission #1011756

# Submission time Handle Problem Language Result Execution time Memory
1011756 2024-07-01T08:03:12 Z uranhishig Hotter Colder (IOI10_hottercolder) C++14
0 / 100
168 ms 16220 KB
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;

int Guess(int G);

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

}

Compilation message

hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:8:13: warning: unused variable 'i' [-Wunused-variable]
    8 |  int q = 0, i;
      |             ^
hottercolder.cpp:29:1: warning: no return statement in function returning non-void [-Wreturn-type]
   29 | }
      | ^
# Verdict Execution time Memory Grader output
1 Runtime error 12 ms 13400 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 13 ms 13264 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 11 ms 13404 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 168 ms 16220 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -