답안 #197269

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
197269 2020-01-19T20:15:00 Z loK10 송금 (JOI19_remittance) C++17
0 / 100
2 ms 376 KB
#include <bits/stdc++.h>
#pragma GCC optimize ("Ofast")
using namespace std;

int main(){
    ios_base::sync_with_stdio(0); cin.tie(0);

    int n;
    cin >> n;
    int a[n], b[n];
    for(int i = 0; i < n; i++){
        cin >> a[i] >> b[i];
    }
    for(int k = 0; k < 10; k++){
        for(int i = 0; i < n; i++){
            if(a[i] > b[i]){
                int delta = min(a[i] / 2, (a[i] - b[i] + 1) / 2);
                a[i] -= 2 * delta;
                a[(i + 1) % n] += delta;
            }
        }
    }
    for(int i = 0; i < n; i++){
        if(a[i] != b[i]){
            cout << "NO";
            return 0;
        }
    }
    cout << "YES";


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