結果

問題 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
コンパイル時間 656 ms
コンパイル使用メモリ 10,516 KB
実行使用メモリ 66,384 KB
最終ジャッジ日時 2023-09-01 21:24:42
合計ジャッジ時間 3,278 ms
ジャッジサーバーID
(参考情報)
judge16 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,856 KB
testcase_01 AC 16 ms
7,912 KB
testcase_02 AC 16 ms
7,828 KB
testcase_03 AC 15 ms
7,968 KB
testcase_04 AC 174 ms
64,856 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 16 ms
7,808 KB
testcase_08 AC 161 ms
66,384 KB
testcase_09 AC 15 ms
7,964 KB
testcase_10 AC 16 ms
7,848 KB
testcase_11 AC 15 ms
7,844 KB
testcase_12 WA -
testcase_13 AC 176 ms
64,772 KB
testcase_14 AC 165 ms
64,452 KB
testcase_15 AC 93 ms
35,584 KB
testcase_16 AC 89 ms
32,472 KB
testcase_17 WA -
testcase_18 AC 169 ms
62,800 KB
testcase_19 WA -
testcase_20 AC 138 ms
51,492 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