結果

問題 No.1586 Equal Array
ユーザー ikashoppinikashoppin
提出日時 2021-07-08 22:28:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 748 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 195,372 KB
最終ジャッジ日時 2025-01-22 18:36:29
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using lli = long long;
#define rep(i,n) for(int i=0;i<n;i++)
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
template<class T>
ostream &operator<<(ostream &os, const vector<T> &x){
    os << "{";
    for(size_t i = 0; i < x.size(); i++){
        if(i < x.size()-1) os << x[i] << ", ";
        else os << x[i];
    }
    os << "}";
    return os;
}

int main(void){
    int n;
    cin >> n;
    vector<lli> a(n);
    lli s = 0;
    rep(i, n){
        cin >> a[i];
        s += a[i];
    }
    if(s%n == 0) cout << "Yes" << endl;
    else cout << "No" << endl;
    return 0;
}
0