結果

問題 No.2155 みちらcolor
ユーザー 👑 KazunKazun
提出日時 2022-12-10 01:08:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 60,108 KB
最終ジャッジ日時 2024-04-22 23:33:57
合計ジャッジ時間 4,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,716 KB
testcase_01 AC 41 ms
58,844 KB
testcase_02 AC 40 ms
57,856 KB
testcase_03 AC 40 ms
59,364 KB
testcase_04 AC 41 ms
58,724 KB
testcase_05 AC 41 ms
58,176 KB
testcase_06 AC 45 ms
58,180 KB
testcase_07 AC 41 ms
59,520 KB
testcase_08 AC 42 ms
59,548 KB
testcase_09 AC 42 ms
58,260 KB
testcase_10 AC 41 ms
59,512 KB
testcase_11 AC 41 ms
59,336 KB
testcase_12 AC 42 ms
59,808 KB
testcase_13 AC 40 ms
57,912 KB
testcase_14 AC 41 ms
59,804 KB
testcase_15 AC 40 ms
58,764 KB
testcase_16 AC 41 ms
58,200 KB
testcase_17 AC 40 ms
58,508 KB
testcase_18 AC 41 ms
58,848 KB
testcase_19 AC 41 ms
58,056 KB
testcase_20 AC 40 ms
59,720 KB
testcase_21 AC 39 ms
59,264 KB
testcase_22 AC 40 ms
59,540 KB
testcase_23 AC 40 ms
59,036 KB
testcase_24 AC 41 ms
59,268 KB
testcase_25 AC 42 ms
59,444 KB
testcase_26 AC 42 ms
59,656 KB
testcase_27 AC 43 ms
59,588 KB
testcase_28 AC 41 ms
58,664 KB
testcase_29 AC 42 ms
58,504 KB
testcase_30 AC 42 ms
60,108 KB
testcase_31 AC 41 ms
58,968 KB
testcase_32 AC 42 ms
58,556 KB
testcase_33 AC 42 ms
58,684 KB
testcase_34 AC 41 ms
59,108 KB
testcase_35 AC 42 ms
59,184 KB
testcase_36 AC 42 ms
58,828 KB
testcase_37 AC 41 ms
58,764 KB
testcase_38 AC 41 ms
59,468 KB
testcase_39 AC 41 ms
59,248 KB
testcase_40 AC 41 ms
59,252 KB
testcase_41 AC 40 ms
58,720 KB
testcase_42 AC 41 ms
59,640 KB
testcase_43 AC 41 ms
59,048 KB
testcase_44 AC 39 ms
52,376 KB
testcase_45 AC 38 ms
52,328 KB
testcase_46 AC 37 ms
53,056 KB
testcase_47 AC 41 ms
58,716 KB
testcase_48 AC 40 ms
57,792 KB
testcase_49 AC 40 ms
58,172 KB
testcase_50 AC 40 ms
58,672 KB
testcase_51 AC 40 ms
58,652 KB
testcase_52 AC 40 ms
57,988 KB
testcase_53 AC 39 ms
58,396 KB
testcase_54 AC 40 ms
59,804 KB
testcase_55 AC 40 ms
58,108 KB
testcase_56 AC 39 ms
57,820 KB
testcase_57 AC 41 ms
58,320 KB
testcase_58 AC 41 ms
58,180 KB
testcase_59 AC 41 ms
57,928 KB
testcase_60 AC 39 ms
59,256 KB
testcase_61 AC 40 ms
58,720 KB
testcase_62 AC 41 ms
59,636 KB
testcase_63 AC 40 ms
57,792 KB
testcase_64 AC 41 ms
58,932 KB
testcase_65 AC 41 ms
58,008 KB
testcase_66 AC 41 ms
58,156 KB
権限があれば一括ダウンロードができます

ソースコード

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