結果
| 問題 | No.1586 Equal Array |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-05 13:17:39 |
| 言語 | PyPy3 (7.3.23 + ac-library) |
| 結果 |
AC
不安定
|
| 実行時間 | 81 ms / 1,000 ms |
| + 376µs | |
| コード長 | 127 bytes |
| 記録 | |
| コンパイル時間 | 249 ms |
| コンパイル使用メモリ | 95,884 KB |
| 実行使用メモリ | 98,432 KB |
| 最終ジャッジ日時 | 2026-08-28 20:41:36 |
| 合計ジャッジ時間 | 3,600 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
n = int(input())
alst = list(map(int, input().split()))
tot = sum(alst)
if tot % n == 0:
print("Yes")
else:
print("No")