# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
71815 | 2018-08-25T16:21:56 Z | team(#2232, comfile) | 일하는 개미 (FXCUP3_ant) | C++17 | 3 ms | 248 KB |
#include <bits/stdc++.h> #include "ant.h" using namespace std; int FindK(){ int l=1; int r=1e8-1; int ct=0; while(l<r){ int mid=(l+r)/2; int tmp=DeliverCount(mid); if(tmp){ r=mid/tmp; l=max(mid/(tmp+1)+1,l); } else l=mid+1;ct++; if(ct==26) break; } return l; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 248 KB | Execution failed because the return code was nonzero |
2 | Halted | 0 ms | 0 KB | - |