제출 #71678

#제출 시각아이디문제언어결과실행 시간메모리
71678team (#119)일하는 개미 (FXCUP3_ant)C++98
90 / 100
4 ms620 KiB
#include <bits/stdc++.h> #include "ant.h" using namespace std; int FindK(){ int l=1; int r=1e8-1; while(l<r){ int mid=(l+r)/2; int tmp=DeliverCount(mid); if(tmp) r=mid/tmp; else l=mid+1; } return l; }
#Verdict Execution timeMemoryGrader output
Fetching results...