#include <bits/stdc++.h>
#include "elephants.h"
using namespace std;
int n;
int l;
int bir, iki;
void init(int N, int L, int X[])
{
bir = X[0];
iki = X[1];
// cout << bir << " " << iki << " " << L << endl;
n = N;
l = L;
}
int update(int i, int y)
{
// cout << i << " " << y << endl;
if(i == 0) bir = y;
else iki = y;
int fark = abs(bir - iki);
if(fark > l) return 2;
else return 1;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
17644 KB |
Output is correct |
2 |
Correct |
0 ms |
17644 KB |
Output is correct |
3 |
Correct |
0 ms |
17644 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
17644 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
26 ms |
17644 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
39 ms |
17644 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
99 ms |
17644 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |