結果

問題 No.1586 Equal Array
ユーザー rlangevinrlangevin
提出日時 2024-05-16 00:08:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 101 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 84,244 KB
最終ジャッジ日時 2024-12-20 10:32:54
合計ジャッジ時間 3,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,236 KB
testcase_01 AC 39 ms
53,312 KB
testcase_02 AC 40 ms
52,196 KB
testcase_03 AC 39 ms
52,552 KB
testcase_04 AC 61 ms
77,368 KB
testcase_05 AC 59 ms
78,504 KB
testcase_06 AC 66 ms
82,916 KB
testcase_07 AC 64 ms
82,592 KB
testcase_08 AC 64 ms
83,832 KB
testcase_09 AC 63 ms
82,440 KB
testcase_10 AC 64 ms
83,188 KB
testcase_11 AC 39 ms
53,168 KB
testcase_12 AC 39 ms
51,776 KB
testcase_13 AC 64 ms
82,340 KB
testcase_14 AC 64 ms
82,024 KB
testcase_15 AC 64 ms
82,896 KB
testcase_16 AC 66 ms
84,244 KB
testcase_17 AC 39 ms
52,228 KB
testcase_18 AC 66 ms
83,328 KB
testcase_19 AC 66 ms
83,296 KB
testcase_20 AC 38 ms
52,964 KB
testcase_21 AC 40 ms
53,768 KB
testcase_22 AC 39 ms
52,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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