結果
問題 | No.1586 Equal Array |
ユーザー |
![]() |
提出日時 | 2025-03-20 21:01:53 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 70 ms / 1,000 ms |
コード長 | 125 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 82,400 KB |
実行使用メモリ | 84,132 KB |
最終ジャッジ日時 | 2025-03-20 21:01:58 |
合計ジャッジ時間 | 2,498 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
n = int(input())a = list(map(int, input().split()))total = sum(a)if total % n != 0:print("No")else:print("Yes")