結果
| 問題 | 
                            No.1586 Equal Array
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-10-04 22:42:57 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 75 ms / 1,000 ms | 
| コード長 | 93 bytes | 
| コンパイル時間 | 198 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 21,784 KB | 
| 最終ジャッジ日時 | 2024-07-22 23:21:26 | 
| 合計ジャッジ時間 | 3,107 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 20 | 
ソースコード
N = int(input())
A = [int(x)for x in input().split()]
print('Yes' if sum(A)/N%1==0 else 'No')