제출 #50700

#제출 시각아이디문제언어결과실행 시간메모리
50700zetapi동굴 (IOI13_cave)C++14
0 / 100
22 ms640 KiB
#include "cave.h" #include "bits/stdc++.h" using namespace std; const int MAX=1e5; void exploreCave(int N) { /* ... */ int arr[MAX],other[MAX]; for(int A=1;A<=N;A++) arr[A]=0,other[A]=0; for(int A=1;A<=N;A++) { other[A]=1; arr[A]=tryCombination(other); other[A]=0; } answer(other,arr); return ; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...