# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
139441 | 2019-07-31T17:46:44 Z | Hassoony | 커다란 상품 (IOI17_prize) | C++17 | 81 ms | 692 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){ while(1){ int x=rand()%n; if(vis[x])continue; vis[x]=1; vector<int>ans = ask(x); if(ans[0] + ans[1] == 0){ return x; } } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 53 ms | 500 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 81 ms | 692 KB | Incorrect |
2 | Halted | 0 ms | 0 KB | - |