답안 #236859

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
236859 2020-06-03T15:17:09 Z egekabas 송금 (JOI19_remittance) C++14
0 / 100
5 ms 384 KB
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long   ll;
typedef unsigned long long   ull;
typedef long double ld;
typedef pair<int, int>    pii;
typedef pair<ull, ull>    pull;
typedef pair<ld, ld>  pld;
ll a[1000009];
ll b[1000009];
ll n;
int main() {
    
    //freopen("in.txt", "r", stdin);
    //freopen("out.txt", "w", stdout);
    
    for(ll i = 0; i < n; ++i)
        cin >> a[i] >> b[i];
    ll cnt = 30;
    while(cnt--){
        for(ll i = 0; i < n; ++i){
            ll dif = a[i]-b[i];
            if(dif > 0){
                a[i] -= dif/2*2;
                a[(i+1)%n] += dif/2;
            }
        }
    }
    for(ll i = 0; i < n; ++i)
        if(a[i] != b[i]){
            cout << "No/n";
            return 0;
        }
    cout << "Yes\n";
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -