結果

問題 No.2155 みちらcolor
ユーザー flippergoflippergo
提出日時 2024-10-28 19:47:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 64,132 KB
最終ジャッジ日時 2024-10-28 19:47:34
合計ジャッジ時間 5,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
63,844 KB
testcase_01 AC 50 ms
63,648 KB
testcase_02 AC 48 ms
63,860 KB
testcase_03 AC 49 ms
62,592 KB
testcase_04 AC 48 ms
62,748 KB
testcase_05 AC 50 ms
62,672 KB
testcase_06 AC 48 ms
61,768 KB
testcase_07 AC 48 ms
62,552 KB
testcase_08 AC 49 ms
62,816 KB
testcase_09 AC 49 ms
62,532 KB
testcase_10 AC 47 ms
62,820 KB
testcase_11 AC 49 ms
62,728 KB
testcase_12 AC 49 ms
63,004 KB
testcase_13 AC 45 ms
60,796 KB
testcase_14 AC 49 ms
62,504 KB
testcase_15 AC 44 ms
62,116 KB
testcase_16 AC 48 ms
62,140 KB
testcase_17 AC 45 ms
62,736 KB
testcase_18 AC 49 ms
63,088 KB
testcase_19 AC 48 ms
62,296 KB
testcase_20 AC 49 ms
64,132 KB
testcase_21 AC 50 ms
63,952 KB
testcase_22 AC 49 ms
64,128 KB
testcase_23 AC 49 ms
62,860 KB
testcase_24 AC 49 ms
62,760 KB
testcase_25 AC 49 ms
62,512 KB
testcase_26 AC 49 ms
63,040 KB
testcase_27 AC 50 ms
63,420 KB
testcase_28 AC 48 ms
63,584 KB
testcase_29 AC 50 ms
62,984 KB
testcase_30 AC 49 ms
62,332 KB
testcase_31 AC 50 ms
63,156 KB
testcase_32 AC 50 ms
63,024 KB
testcase_33 AC 49 ms
63,736 KB
testcase_34 AC 50 ms
62,852 KB
testcase_35 AC 48 ms
63,712 KB
testcase_36 AC 49 ms
62,848 KB
testcase_37 AC 50 ms
64,112 KB
testcase_38 AC 49 ms
62,784 KB
testcase_39 AC 50 ms
63,708 KB
testcase_40 AC 50 ms
62,756 KB
testcase_41 AC 51 ms
62,776 KB
testcase_42 AC 47 ms
61,940 KB
testcase_43 WA -
testcase_44 AC 36 ms
53,076 KB
testcase_45 AC 37 ms
53,068 KB
testcase_46 AC 36 ms
53,356 KB
testcase_47 AC 47 ms
62,412 KB
testcase_48 AC 48 ms
62,296 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 47 ms
63,124 KB
testcase_53 AC 46 ms
61,588 KB
testcase_54 AC 45 ms
61,444 KB
testcase_55 AC 44 ms
61,488 KB
testcase_56 AC 46 ms
62,704 KB
testcase_57 AC 47 ms
61,420 KB
testcase_58 WA -
testcase_59 AC 44 ms
61,064 KB
testcase_60 AC 45 ms
61,116 KB
testcase_61 WA -
testcase_62 AC 47 ms
62,040 KB
testcase_63 AC 46 ms
61,644 KB
testcase_64 WA -
testcase_65 AC 43 ms
60,184 KB
testcase_66 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,L = map(int,input().split())
A = [0]+list(map(int,input().split()))
amax = max(A)
X = max(L,M,amax)
dp = [[False for _ in range(X+1)] for _ in range(N+1)]
dp[1][L] = True
dp[1][(L+A[1])//2] = True
for i in range(2,N+1):
    for j in range(X+1):
        dp[i][j] = dp[i-1][j]
        if 0<=2*j-A[i]<=X:
            dp[i][j] = dp[i][j]|dp[i-1][2*j-A[i]]
if dp[N][M]:
    print("Yes")
else:
    print("No")
0