結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
62,700 KB
testcase_01 AC 48 ms
63,252 KB
testcase_02 AC 46 ms
63,924 KB
testcase_03 AC 48 ms
62,728 KB
testcase_04 AC 48 ms
63,080 KB
testcase_05 AC 48 ms
62,980 KB
testcase_06 AC 46 ms
62,820 KB
testcase_07 AC 46 ms
62,156 KB
testcase_08 AC 47 ms
63,108 KB
testcase_09 AC 48 ms
63,520 KB
testcase_10 AC 46 ms
62,284 KB
testcase_11 AC 48 ms
63,520 KB
testcase_12 AC 48 ms
63,116 KB
testcase_13 AC 44 ms
60,580 KB
testcase_14 AC 49 ms
63,596 KB
testcase_15 AC 45 ms
61,016 KB
testcase_16 AC 47 ms
63,608 KB
testcase_17 AC 46 ms
62,960 KB
testcase_18 AC 48 ms
64,160 KB
testcase_19 AC 48 ms
62,320 KB
testcase_20 AC 48 ms
62,764 KB
testcase_21 AC 49 ms
63,240 KB
testcase_22 AC 49 ms
63,088 KB
testcase_23 AC 49 ms
62,704 KB
testcase_24 AC 49 ms
63,024 KB
testcase_25 AC 48 ms
64,220 KB
testcase_26 AC 49 ms
63,776 KB
testcase_27 AC 49 ms
62,960 KB
testcase_28 AC 50 ms
63,592 KB
testcase_29 AC 50 ms
62,580 KB
testcase_30 AC 48 ms
63,076 KB
testcase_31 AC 50 ms
63,648 KB
testcase_32 AC 49 ms
63,456 KB
testcase_33 AC 50 ms
62,980 KB
testcase_34 AC 50 ms
63,228 KB
testcase_35 AC 50 ms
63,212 KB
testcase_36 AC 49 ms
63,016 KB
testcase_37 AC 49 ms
64,444 KB
testcase_38 AC 50 ms
62,916 KB
testcase_39 AC 48 ms
63,792 KB
testcase_40 AC 48 ms
63,708 KB
testcase_41 AC 50 ms
63,672 KB
testcase_42 WA -
testcase_43 AC 43 ms
59,988 KB
testcase_44 AC 36 ms
52,596 KB
testcase_45 AC 35 ms
53,012 KB
testcase_46 AC 35 ms
52,744 KB
testcase_47 AC 46 ms
63,124 KB
testcase_48 AC 47 ms
61,572 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 47 ms
62,456 KB
testcase_53 AC 46 ms
62,220 KB
testcase_54 AC 46 ms
62,240 KB
testcase_55 AC 44 ms
60,656 KB
testcase_56 AC 46 ms
63,000 KB
testcase_57 AC 46 ms
63,472 KB
testcase_58 WA -
testcase_59 AC 44 ms
60,776 KB
testcase_60 AC 45 ms
61,308 KB
testcase_61 WA -
testcase_62 AC 46 ms
61,500 KB
testcase_63 AC 48 ms
63,304 KB
testcase_64 WA -
testcase_65 AC 43 ms
60,976 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][A[1]] = 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