# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
139442 | 2019-07-31T17:48:02 Z | Hassoony | 커다란 상품 (IOI17_prize) | C++17 | 98 ms | 504 KB |
#include <bits/stdc++.h> #include "prize.h" //#include "grader.cpp" using namespace std; const int MX=2e5+9; bool vis[MX]; int find_best(int n){ int q=10000; while(q--){ int x=rand()%n; if(vis[x])continue; vis[x]=1; vector<int>ans = ask(x); if(ans[0] + ans[1] == 0){ return x; } } return 1; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 97 ms | 504 KB | answer is not correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 98 ms | 504 KB | answer is not correct |
2 | Halted | 0 ms | 0 KB | - |