#include <algorithm>
#include <iostream>
#include <iomanip>
#include <vector>
#include <cmath>
#include <set>
using namespace std;
int main()
{
int n;
cin >> n;
int m = 2;
int res = 0;
for (int q = n << 1; q-->0; )
{
int x, y;
cin >> x >> y;
int dx = (x < 1) ? 1 - x : (x > n) ? x - n : 0;
int dy = (y < 1) ? 1 - y : (y > m) ? y - m : 0;
res += dx + dy;
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |