#include "gondola.h"
int valid(int n, int inputSeq[])
{
int first = -1;
for(int i=0; i<n; i++) {
int now = inputSeq[i];
if(now > n) continue;
first = i;
break;
}
if(first == -1) return 1;
for(int i=0; i<n; i++) {
int index = (first + i) % n;
int value = (inputSeq[first] + i - 1) % n + 1;
int now = inputSeq[index];
if(now > n) continue;
if(now != value) return 0;
}
return 1;
}
//----------------------
int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
return -2;
}
//----------------------
int countReplacement(int n, int inputSeq[])
{
return -3;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
2452 KB |
Output is correct |
2 |
Correct |
0 ms |
2452 KB |
Output is correct |
3 |
Correct |
0 ms |
2452 KB |
Output is correct |
4 |
Correct |
0 ms |
2452 KB |
Output is correct |
5 |
Correct |
0 ms |
2452 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
2452 KB |
Output is correct |
2 |
Correct |
0 ms |
2452 KB |
Output is correct |
3 |
Correct |
0 ms |
2452 KB |
Output is correct |
4 |
Correct |
0 ms |
2452 KB |
Output is correct |
5 |
Correct |
0 ms |
2452 KB |
Output is correct |
6 |
Correct |
4 ms |
2452 KB |
Output is correct |
7 |
Correct |
12 ms |
2452 KB |
Output is correct |
8 |
Correct |
8 ms |
2452 KB |
Output is correct |
9 |
Correct |
0 ms |
2452 KB |
Output is correct |
10 |
Correct |
8 ms |
2452 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
2452 KB |
Output is correct |
2 |
Correct |
0 ms |
2452 KB |
Output is correct |
3 |
Correct |
0 ms |
2452 KB |
Output is correct |
4 |
Correct |
0 ms |
2452 KB |
Output is correct |
5 |
Correct |
0 ms |
2452 KB |
Output is correct |
6 |
Correct |
4 ms |
2452 KB |
Output is correct |
7 |
Correct |
12 ms |
2452 KB |
Output is correct |
8 |
Correct |
12 ms |
2452 KB |
Output is correct |
9 |
Correct |
4 ms |
2452 KB |
Output is correct |
10 |
Correct |
8 ms |
2452 KB |
Output is correct |
11 |
Incorrect |
0 ms |
2452 KB |
Output isn't correct |
12 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
2452 KB |
Output isn't correct - Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
2452 KB |
Output isn't correct - Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
2452 KB |
Output isn't correct - Integer -2 violates the range [0, 350000] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
2452 KB |
Output isn't correct - Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
2452 KB |
Output isn't correct - Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
2452 KB |
Output isn't correct - Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
2452 KB |
Output isn't correct - Integer -3 violates the range [0, 1000000008] |
2 |
Halted |
0 ms |
0 KB |
- |