結果

問題 No.2155 みちらcolor
ユーザー 👑 KazunKazun
提出日時 2022-12-10 01:08:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 58,496 KB
最終ジャッジ日時 2024-10-14 23:25:17
合計ジャッジ時間 4,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 64
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    K=max(M,L,max(A))
    DP=[0]*(K+1); DP[L]=1
    for a in A:
        E=DP.copy()
        for c in range(K+1):
            DP[(c+a)//2]|=E[c]
    return DP[M]

#==================================================
print("Yes" if solve() else "No")
0