結果

問題 No.1586 Equal Array
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-21 15:54:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 110 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 83,696 KB
最終ジャッジ日時 2024-10-15 06:43:06
合計ジャッジ時間 3,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,020 KB
testcase_01 AC 37 ms
52,464 KB
testcase_02 AC 38 ms
53,016 KB
testcase_03 AC 38 ms
52,068 KB
testcase_04 AC 57 ms
78,460 KB
testcase_05 AC 58 ms
78,404 KB
testcase_06 AC 61 ms
82,228 KB
testcase_07 AC 63 ms
82,620 KB
testcase_08 AC 62 ms
82,296 KB
testcase_09 AC 62 ms
83,664 KB
testcase_10 AC 62 ms
83,096 KB
testcase_11 AC 37 ms
52,368 KB
testcase_12 AC 37 ms
53,300 KB
testcase_13 AC 62 ms
83,092 KB
testcase_14 AC 64 ms
83,324 KB
testcase_15 AC 62 ms
82,544 KB
testcase_16 AC 62 ms
82,820 KB
testcase_17 AC 38 ms
51,996 KB
testcase_18 AC 62 ms
83,164 KB
testcase_19 AC 62 ms
83,696 KB
testcase_20 AC 36 ms
52,164 KB
testcase_21 AC 38 ms
52,568 KB
testcase_22 AC 37 ms
52,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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