結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー miya145592miya145592
提出日時 2023-08-04 22:33:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 711 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 821,504 KB
最終ジャッジ日時 2024-05-10 07:22:26
合計ジャッジ時間 6,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 297 ms
29,248 KB
testcase_04 AC 59 ms
12,416 KB
testcase_05 AC 433 ms
38,276 KB
testcase_06 AC 139 ms
19,516 KB
testcase_07 AC 83 ms
14,592 KB
testcase_08 AC 168 ms
33,152 KB
testcase_09 AC 214 ms
22,800 KB
testcase_10 AC 330 ms
31,016 KB
testcase_11 AC 156 ms
20,688 KB
testcase_12 AC 78 ms
14,720 KB
testcase_13 AC 1,368 ms
476,416 KB
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
M1 = int(input())
A = set(map(int, input().split()))
M2 = int(input())
B = set(map(int, input().split()))
dp = [[0 for _ in range(2)] for _ in range(N+1)]
dp[0][0] = 1
for i in range(N):
    for j in range(2):
        if dp[i][j]==0:
            continue
        if i+1 in A:
            dp[i+1][1] += dp[i][j]
        elif i+1 in B:
            dp[i+1][0] += dp[i][j]
        else:
            dp[i+1][j] += dp[i][j]
        if i+K<=N:
            if i+K in A:
                dp[i+K][1] += dp[i][j]
            elif i+K in B:
                dp[i+K][0] += dp[i][j]
            else:
                dp[i+K][j] += dp[i][j]
if dp[N][0]>0:
    print("Yes")
else:
    print("No")
0