| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 332807 | SPyofgame | Coin Collecting (JOI19_ho_t4) | C++14 | 1 ms | 364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <vector>
#include <cmath>
#include <set>
using namespace std;
int main()
{
int n;
cin >> n;
int m = 2;
long long 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;
}
cout << res;
return 0;
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
