結果

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

ソースコード

diff #

n, m, l = map(int, input().split())
dp = [False] * 1000
dp[l - 1] = True
for a in map(int, input().split()):
    a -= 1
    ndp = dp[:]
    for i in range(1000):
        if dp[i]:
            ndp[(i + a) // 2] = True
    dp = ndp
print('Yes' if dp[m - 1] else 'No')
0