結果

問題 No.2451 Redistribute Integers
ユーザー lloyzlloyz
提出日時 2023-09-01 21:25:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 10,660 KB
実行使用メモリ 66,492 KB
最終ジャッジ日時 2023-09-01 21:25:47
合計ジャッジ時間 3,222 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,984 KB
testcase_01 AC 15 ms
7,868 KB
testcase_02 AC 17 ms
7,840 KB
testcase_03 AC 17 ms
7,988 KB
testcase_04 AC 176 ms
64,776 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 15 ms
7,808 KB
testcase_08 AC 166 ms
66,492 KB
testcase_09 AC 15 ms
7,964 KB
testcase_10 AC 16 ms
7,792 KB
testcase_11 AC 16 ms
7,860 KB
testcase_12 WA -
testcase_13 AC 175 ms
64,716 KB
testcase_14 AC 166 ms
64,604 KB
testcase_15 AC 92 ms
35,656 KB
testcase_16 AC 90 ms
32,488 KB
testcase_17 WA -
testcase_18 AC 172 ms
62,928 KB
testcase_19 WA -
testcase_20 AC 138 ms
51,348 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

if sum(A) % n == 0:
    print("Yes")
else:
    print("No")
0