답안 #564080

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
564080 2022-05-18T14:13:27 Z 4fecta 송금 (JOI19_remittance) C++17
0 / 100
0 ms 212 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define int ll
#define ld long double
#define pii pair<int, int>
#define f first
#define s second
#define boost() cin.tie(0), cin.sync_with_stdio(0)

const int MN = 1000005;

int n;
pii a[MN];

int32_t main() {
    boost();

    cin >> n;
    for (int i = 0; i < n; i++) cin >> a[i].f >> a[i].s;
    for (int t = 0; t < 30; t++) {
        for (int i = 0; i < n; i++) {
            if (a[i].f <= a[i].s) continue;
            int d = (a[i].f - a[i].s) / 2;
            a[i].f -= d * 2;
            a[(i + 1) % n].f += d;
        }
    }
    bool ok = 1;
    //for (int i = 0; i < n; i++) ok &= a[i].f == a[i].s;
    cout << (ok ? "YES\n" : "NO\n");

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -