結果
問題 | No.1586 Equal Array |
ユーザー | korogisu |
提出日時 | 2021-07-08 22:39:15 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 47 ms / 1,000 ms |
コード長 | 954 bytes |
コンパイル時間 | 1,499 ms |
コンパイル使用メモリ | 169,292 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 12:54:48 |
合計ジャッジ時間 | 2,925 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i, n) for (int i = 0; i < (int)(n); i++) #define RREP(i, n) for (int i = (int)(n); i >= 0; i--) #define rep(i, a, n) for (int i = (a); i < (int)(n); i++) #define rrep(i, a, n) for (int i = (a); i >= (int)(n); i--) #define ALL(obj) (obj).begin(), (obj).end() #define rALL(obj) (obj).rbegin(), (obj).rend() using ll = long long; using vi = vector<int>; using vii = vector<vector<int>>; using P = pair<int, int>; template<class T> inline bool chmin(T& a, T b) { if ( a > b ) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if ( a < b ) { a = b; return true; } return false; } int main() { ll N; cin >> N; vector<int> A(N); for (int i = 0; i < N; i++) cin >> A[i]; bool ans = true; ll res = 0; for(int i: A) { res += i%N; } if(res%N != 0) ans = false; cout << (ans ? "Yes" : "No") << endl; return 0; }