#include "cave.h"
#include<bits/stdc++.h>
using namespace std;
void exploreCave(int N) {
int a[N+1];
int d[N+1];
memset(a, 0, sizeof(a));
for(int i = 0; i < N; i++) {
d[i] = i;
if(tryCombination(a) == i) {
continue;
}else {
a[i] = 1;
}
}
answer(a, d);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
512 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
384 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
512 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
512 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
512 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |