結果

問題 No.2451 Redistribute Integers
ユーザー kpinkcatkpinkcat
提出日時 2023-10-05 02:51:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 606 bytes
コンパイル時間 955 ms
コンパイル使用メモリ 104,988 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-11 11:08:40
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 230 ms
7,168 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 159 ms
7,168 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 71 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 96 ms
5,376 KB
testcase_17 AC 155 ms
6,016 KB
testcase_18 WA -
testcase_19 AC 18 ms
5,376 KB
testcase_20 AC 167 ms
6,272 KB
testcase_21 AC 205 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<string>
#include<algorithm>
#include<vector>
#include<set>
#include<list>
#include<queue>
#include<math.h>
#include<bitset>
using ll = long long;
using namespace std;

int main(){
    ll n, cnt = 0, ave = 0, dif = 0;
    cin >> n;
    vector<ll> a(n);
    for (int i = 0; i < n; i++){
        cin >> a[i];
        cnt += a[i];
    }
    if (cnt%n == 0) ave = cnt/n;
    else {
        cout << "No" << endl;
        return 0;
    }
    
    for (int i = 0; i < n; i++){
        dif += abs(a[i] - ave);
    }
    cout << ((dif%n == 0) ? "Yes" : "No") << endl;
}
0