# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
672033 | Waratpp123 | 드문 곤충 (IOI22_insects) | C++17 | 1 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
#include<bits/stdc++.h>
using namespace std;
int cnt[2050],ch[2050],mi=2050;
int min_cardinality(int N) {
int i,j,now,s=-1,ans=1;
while(1){
now=0;
for(i=0;i<N;i++){
if(ch[i]==1) continue;
move_inside(i);
ch[i]=1;
if(press_button()==ans) {
now++;
continue;
}
move_outside(i);
ch[i]=0;
}
if(s==-1){
s=now;
}else{
if(s==now) ans++,s=now;
else return ans;
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |