結果

問題 No.1586 Equal Array
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-08 22:23:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 111 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 82,624 KB
最終ジャッジ日時 2024-07-01 12:42:32
合計ジャッジ時間 2,347 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,308 KB
testcase_01 AC 37 ms
52,016 KB
testcase_02 AC 38 ms
51,892 KB
testcase_03 AC 38 ms
52,304 KB
testcase_04 AC 58 ms
77,552 KB
testcase_05 AC 57 ms
78,716 KB
testcase_06 AC 65 ms
81,524 KB
testcase_07 AC 64 ms
81,940 KB
testcase_08 AC 65 ms
82,512 KB
testcase_09 AC 64 ms
82,360 KB
testcase_10 AC 62 ms
81,824 KB
testcase_11 AC 38 ms
52,872 KB
testcase_12 AC 38 ms
52,028 KB
testcase_13 AC 64 ms
82,152 KB
testcase_14 AC 64 ms
82,544 KB
testcase_15 AC 64 ms
81,884 KB
testcase_16 AC 64 ms
82,420 KB
testcase_17 AC 37 ms
51,628 KB
testcase_18 AC 63 ms
81,688 KB
testcase_19 AC 65 ms
82,624 KB
testcase_20 AC 39 ms
52,080 KB
testcase_21 AC 38 ms
51,704 KB
testcase_22 AC 41 ms
52,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
s = sum(A)
if s%n:
    print("No")
    exit()

print("Yes")
0