結果

問題 No.2155 みちらcolor
ユーザー 310icecrystal310icecrystal
提出日時 2024-07-09 21:55:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 811 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 59,520 KB
最終ジャッジ日時 2024-07-09 21:55:35
合計ジャッジ時間 6,127 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 64
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,L = map(int,input().split())
A = list(map(int,input().split()))

#dp[i][j] = i番目まで見てjが作れるか
dp = [[0]*1001 for i in range(N+1)]
dp[0][L] = 1
for i in range(N):
    for j in range(1001):
        if dp[i][j]:
            dp[i+1][j] = 1
            dp[i+1][(j+A[i])//2] = 1
    #print(dp[i+1])

if dp[N][M]:
    print("Yes")
else:
    print("No")
0