#include "ramen.h"
void Ramen(int n) {
int L = -1;
int R = -1;
for(int i = 0 ; i < n ; i += 2) {
int x = i;
int y = i + 1;
if (y >= n) y = x;
else {
if (Compare(x,y) < 0)
x = i + 1,
y = i;
}
if (L < 0) {
L = x;
R = y;
}
else {
if (Compare(L,x) < 0) L = x;
if (Compare(R,x) > 0) R = x;
}
}
Answer(R,L);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
380 KB |
Execution failed because the return code was nonzero |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
376 KB |
Execution failed because the return code was nonzero |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
376 KB |
Execution failed because the return code was nonzero |
2 |
Halted |
0 ms |
0 KB |
- |