結果

問題 No.1586 Equal Array
ユーザー titan23titan23
提出日時 2022-06-11 00:46:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 1,000 ms
コード長 200 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 84,212 KB
最終ジャッジ日時 2024-09-21 07:58:48
合計ジャッジ時間 2,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,996 KB
testcase_01 AC 37 ms
52,552 KB
testcase_02 AC 42 ms
53,132 KB
testcase_03 AC 40 ms
51,760 KB
testcase_04 AC 57 ms
77,828 KB
testcase_05 AC 57 ms
77,760 KB
testcase_06 AC 67 ms
82,348 KB
testcase_07 AC 62 ms
82,540 KB
testcase_08 AC 63 ms
83,364 KB
testcase_09 AC 62 ms
84,212 KB
testcase_10 AC 63 ms
82,740 KB
testcase_11 AC 37 ms
52,820 KB
testcase_12 AC 38 ms
53,232 KB
testcase_13 AC 64 ms
83,784 KB
testcase_14 AC 64 ms
82,792 KB
testcase_15 AC 63 ms
82,944 KB
testcase_16 AC 63 ms
83,020 KB
testcase_17 AC 39 ms
52,472 KB
testcase_18 AC 63 ms
82,912 KB
testcase_19 AC 64 ms
83,516 KB
testcase_20 AC 40 ms
52,568 KB
testcase_21 AC 42 ms
53,164 KB
testcase_22 AC 42 ms
52,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

##################

n = int(input())
A = list(map(int, input().split()))
ave = sum(A) / n
if ave % 1 != 0:
  print('No')
else:
  print('Yes')
0