結果
問題 | No.2155 みちらcolor |
ユーザー | hellopra |
提出日時 | 2022-12-09 22:19:29 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 47 ms / 2,000 ms |
コード長 | 337 bytes |
コンパイル時間 | 410 ms |
コンパイル使用メモリ | 82,228 KB |
実行使用メモリ | 59,520 KB |
最終ジャッジ日時 | 2024-10-14 22:16:32 |
合計ジャッジ時間 | 5,048 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 64 |
ソースコード
N,M,L = map(int,input().split()) A = [-1]+list(map(int,input().split())) dp = [[False] * 1001 for _ in range(N+1)] #i個目まで使って、jを作れるか? dp[0][L] = True for i in range(1,N+1): for j in range(1001): if not dp[i-1][j]: continue dp[i][(A[i] + j)// 2] = True dp[i][j] = True print("Yes" if dp[N][M] else "No")