結果

問題 No.2451 Redistribute Integers
ユーザー titiatitia
提出日時 2023-09-01 21:24:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 67,216 KB
最終ジャッジ日時 2024-06-11 10:57:43
合計ジャッジ時間 3,125 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,496 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 202 ms
67,216 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 172 ms
61,088 KB
testcase_09 AC 25 ms
10,496 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 WA -
testcase_13 AC 187 ms
65,464 KB
testcase_14 AC 181 ms
66,956 KB
testcase_15 AC 110 ms
38,224 KB
testcase_16 AC 98 ms
34,852 KB
testcase_17 WA -
testcase_18 AC 187 ms
65,464 KB
testcase_19 WA -
testcase_20 AC 148 ms
53,872 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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