結果

問題 No.1586 Equal Array
ユーザー hiikunZ
提出日時 2021-07-09 19:56:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 520 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 194,880 KB
最終ジャッジ日時 2025-01-22 20:12:53
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long int;
using ld = long double;
const ll MAX = 5000000000000000000;
const ld PI = 3.14159265358979;
const ll MOD = 0;//2024948111;
random_device rd;
mt19937 mt(rd());
ld dotorad(ld K){return PI * K / 180.0;}
ld radtodo(ld K){return K * 180.0 / PI;}
int main(){
    ll N;
    cin >> N;
    ll s = 0;
    for(ll i = 0;i < N;i++){
        ll a;
        cin >> a;
        s += a;
    }
    if(s % N == 0) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0