結果

問題 No.2451 Redistribute Integers
ユーザー rlangevinrlangevin
提出日時 2023-09-01 21:25:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 269 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 154,380 KB
最終ジャッジ日時 2024-06-11 10:58:18
合計ジャッジ時間 3,963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,968 KB
testcase_01 AC 46 ms
51,968 KB
testcase_02 AC 44 ms
51,840 KB
testcase_03 AC 44 ms
51,968 KB
testcase_04 AC 206 ms
152,768 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 43 ms
51,840 KB
testcase_08 AC 171 ms
146,412 KB
testcase_09 AC 43 ms
51,840 KB
testcase_10 AC 43 ms
52,480 KB
testcase_11 AC 45 ms
52,224 KB
testcase_12 WA -
testcase_13 AC 187 ms
153,708 KB
testcase_14 AC 192 ms
141,576 KB
testcase_15 AC 133 ms
108,728 KB
testcase_16 AC 124 ms
103,040 KB
testcase_17 WA -
testcase_18 AC 189 ms
154,380 KB
testcase_19 WA -
testcase_20 AC 167 ms
134,676 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
p, m = 0, 0
S = sum(A)
if S % N != 0:
    print("No")
    exit()
    
S //= N
for a in A:
    if a <= S:
        p += S - a
    else:
        d = a - S
        m += d 
        
print("Yes") if p == m else print("No")
0