結果
問題 |
No.3220 Forest Creation
|
ユーザー |
![]() |
提出日時 | 2025-08-01 22:51:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 138 bytes |
コンパイル時間 | 482 ms |
コンパイル使用メモリ | 82,668 KB |
実行使用メモリ | 88,924 KB |
最終ジャッジ日時 | 2025-08-01 22:51:27 |
合計ジャッジ時間 | 4,318 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 42 WA * 3 |
ソースコード
n=int(input()) a=list(map(int,input().split())) p1=sum(a) p2=sum(a[i]*i for i in range(n+1)) print(["No","Yes"][p2%2==0 and p2<=2*(p1-1)])