結果

問題 No.3220 Forest Creation
ユーザー sasa8uyauya
提出日時 2025-08-01 22:51:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 149 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 88,000 KB
最終ジャッジ日時 2025-08-01 22:51:57
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 39 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

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"][a[1]>0 and p2%2==0 and p2<=2*(p1-1)])
0