結果

問題 No.2155 みちらcolor
ユーザー flippergoflippergo
提出日時 2024-10-28 19:54:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 66,864 KB
最終ジャッジ日時 2024-10-28 19:54:34
合計ジャッジ時間 6,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
65,720 KB
testcase_01 AC 57 ms
65,180 KB
testcase_02 AC 54 ms
65,144 KB
testcase_03 AC 55 ms
64,808 KB
testcase_04 AC 58 ms
65,392 KB
testcase_05 AC 59 ms
66,232 KB
testcase_06 AC 53 ms
64,244 KB
testcase_07 AC 54 ms
64,420 KB
testcase_08 AC 56 ms
65,016 KB
testcase_09 AC 56 ms
65,468 KB
testcase_10 AC 54 ms
64,888 KB
testcase_11 AC 55 ms
65,860 KB
testcase_12 AC 56 ms
65,040 KB
testcase_13 AC 47 ms
61,872 KB
testcase_14 AC 57 ms
65,188 KB
testcase_15 AC 52 ms
63,968 KB
testcase_16 AC 52 ms
65,404 KB
testcase_17 AC 52 ms
65,048 KB
testcase_18 AC 55 ms
65,128 KB
testcase_19 AC 54 ms
65,532 KB
testcase_20 AC 56 ms
66,012 KB
testcase_21 AC 57 ms
65,688 KB
testcase_22 AC 56 ms
64,732 KB
testcase_23 AC 55 ms
65,800 KB
testcase_24 AC 58 ms
66,076 KB
testcase_25 AC 58 ms
65,572 KB
testcase_26 AC 58 ms
65,352 KB
testcase_27 AC 57 ms
65,008 KB
testcase_28 AC 57 ms
65,800 KB
testcase_29 AC 57 ms
65,648 KB
testcase_30 AC 56 ms
66,580 KB
testcase_31 AC 57 ms
65,288 KB
testcase_32 AC 58 ms
66,864 KB
testcase_33 AC 57 ms
64,852 KB
testcase_34 AC 58 ms
65,172 KB
testcase_35 AC 57 ms
64,804 KB
testcase_36 AC 57 ms
64,912 KB
testcase_37 AC 58 ms
65,168 KB
testcase_38 AC 56 ms
65,452 KB
testcase_39 AC 57 ms
65,984 KB
testcase_40 AC 56 ms
66,492 KB
testcase_41 AC 56 ms
65,168 KB
testcase_42 AC 51 ms
63,768 KB
testcase_43 AC 45 ms
62,020 KB
testcase_44 AC 35 ms
53,144 KB
testcase_45 AC 36 ms
52,320 KB
testcase_46 AC 36 ms
52,180 KB
testcase_47 AC 54 ms
65,432 KB
testcase_48 AC 53 ms
65,096 KB
testcase_49 AC 47 ms
61,920 KB
testcase_50 AC 55 ms
65,356 KB
testcase_51 AC 55 ms
65,812 KB
testcase_52 AC 54 ms
65,224 KB
testcase_53 AC 52 ms
64,300 KB
testcase_54 AC 54 ms
65,156 KB
testcase_55 AC 48 ms
61,892 KB
testcase_56 AC 54 ms
64,948 KB
testcase_57 AC 52 ms
64,840 KB
testcase_58 AC 53 ms
64,112 KB
testcase_59 AC 46 ms
62,172 KB
testcase_60 AC 49 ms
63,080 KB
testcase_61 AC 53 ms
64,212 KB
testcase_62 AC 54 ms
65,144 KB
testcase_63 AC 54 ms
64,060 KB
testcase_64 AC 54 ms
65,000 KB
testcase_65 AC 47 ms
61,232 KB
testcase_66 AC 54 ms
65,428 KB
権限があれば一括ダウンロードができます

ソースコード

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(1,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 0<=2*j+1-A[i]<=X:
            dp[i][j] = dp[i][j]|dp[i-1][2*j+1-A[i]]
if dp[N][M]:
    print("Yes")
else:
    print("No")
0