結果

問題 No.1586 Equal Array
ユーザー googol_S0googol_S0
提出日時 2021-07-08 22:20:53
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 114 ms / 1,000 ms
コード長 99 bytes
コンパイル時間 299 ms
使用メモリ 95,856 KB
最終ジャッジ日時 2023-02-01 18:24:11
合計ジャッジ時間 4,028 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 86 ms
75,548 KB
testcase_01 AC 85 ms
75,724 KB
testcase_02 AC 85 ms
75,504 KB
testcase_03 AC 85 ms
75,756 KB
testcase_04 AC 104 ms
93,480 KB
testcase_05 AC 105 ms
93,468 KB
testcase_06 AC 113 ms
95,208 KB
testcase_07 AC 111 ms
95,488 KB
testcase_08 AC 112 ms
95,456 KB
testcase_09 AC 114 ms
95,528 KB
testcase_10 AC 113 ms
95,596 KB
testcase_11 AC 86 ms
75,744 KB
testcase_12 AC 88 ms
75,784 KB
testcase_13 AC 112 ms
95,560 KB
testcase_14 AC 112 ms
95,200 KB
testcase_15 AC 112 ms
95,524 KB
testcase_16 AC 112 ms
95,476 KB
testcase_17 AC 86 ms
75,652 KB
testcase_18 AC 114 ms
95,420 KB
testcase_19 AC 113 ms
95,856 KB
testcase_20 AC 88 ms
75,844 KB
testcase_21 AC 87 ms
75,744 KB
testcase_22 AC 85 ms
75,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
S=sum(A)
if S%N:
  print('No')
else:
  print('Yes')
0