結果

問題 No.2155 みちらcolor
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-12-09 22:10:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 59,264 KB
最終ジャッジ日時 2024-10-14 22:09:08
合計ジャッジ時間 4,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 64
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,l = map(int,input().split())
M = 1005
dp = [0]*M
dp[l] = 1
A = list(map(int,input().split()))
for a in A:
    ndp = [0]*M
    for i in range(M):
        if dp[i] == 0:
            continue
        
        ndp[i] = 1
        ndp[(i+a)//2] = 1
    dp = ndp
print("Yes" if dp[m] else "No")
0