제출 #1078044

#제출 시각아이디문제언어결과실행 시간메모리
1078044kilikuma커다란 상품 (IOI17_prize)C++17
0 / 100
59 ms344 KiB
#include "prize.h"
#include <bits/stdc++.h>

using namespace std;

int find_best(int n) {
	for(int i = 0; i < n; i++) {
		vector<int> res = ask(i);
		if(res[0] + res[1] == 0)
			return i;
	}
	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...