結果

問題 No.2451 Redistribute Integers
ユーザー igeeeigeee
提出日時 2023-09-01 21:29:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 1,207 bytes
コンパイル時間 5,262 ms
コンパイル使用メモリ 262,996 KB
実行使用メモリ 7,116 KB
最終ジャッジ日時 2023-09-01 21:30:05
合計ジャッジ時間 7,425 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 220 ms
7,116 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 142 ms
6,988 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 79 ms
4,384 KB
testcase_13 AC 208 ms
6,972 KB
testcase_14 AC 228 ms
7,016 KB
testcase_15 AC 115 ms
4,872 KB
testcase_16 AC 88 ms
4,928 KB
testcase_17 AC 171 ms
6,036 KB
testcase_18 AC 204 ms
6,984 KB
testcase_19 AC 18 ms
4,380 KB
testcase_20 AC 148 ms
6,176 KB
testcase_21 AC 225 ms
7,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
#define repn(i,end) for(long long i = 0; i <= (long long)(end); i++)
#define reps(i,start,end) for(long long i = start; i < (long long)(end); i++)
#define repsn(i,start,end) for(long long i = start; i <= (long long)(end); i++)
#define ll long long
#define ld long double
#define print(t) cout << t << endl 
#define all(a)  (a).begin(),(a).end()
// << std::fixed << std::setprecision(0)
const ll INF = 1LL << 60;
 
template<class T> bool chmin(T& a, T b){
 if(a > b){
  a = b;
  return true;
 }
  return false;
}
 
template<class T> bool chmax(T& a, T b){
 if(a < b){
  a = b;
  return true;
 }
  return false;
}
  
ll lpow(ll x,ll n){
  ll ans = 1;
  while(n >0){
    if(n & 1)ans *= x;
    x *= x;
    n >>= 1;
  }
  return ans;
}
 
int main(){
  ll n;cin >> n;
  ll sum = 0;
  vector<ll> a(n);
  rep(i,n){
    cin >> a[i];
    sum += a[i];
  }
  if(sum %n != 0){
    cout << "No" << endl;
    return 0;
  }else{
    sort(all(a));
    if((a.back() -a[0]) % n == 0 ){
      cout << "Yes" << endl;
    }else{
      cout << "No" << endl;
    }
  }

}
0