結果

問題 No.2451 Redistribute Integers
ユーザー hiro71687k
提出日時 2023-09-01 23:41:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 3,854 ms
コンパイル使用メモリ 251,520 KB
最終ジャッジ日時 2025-02-16 17:35:35
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=1000000007;
ll inf=1009999999999999990;
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n);
    ll sum=0;
    ll mx=0;
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
        sum+=a[i];
    }
    if (sum%n==0)
    {
        if (n%2==0)
        {
            for (ll i = 1; i < n; i++)
            {
                if (a[i]%2!=a[i-1]%2)
                {
                    cout << "No" << endl;
                    return 0;
                }
            }
        }
        cout << "Yes" << endl;
    }else{
        cout << "No" <<endl;
    }
    
}
0