結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー miya145592miya145592
提出日時 2023-08-04 22:32:11
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 711 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 848,820 KB
最終ジャッジ日時 2024-05-10 07:21:56
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 131 ms
93,512 KB
testcase_04 AC 67 ms
77,824 KB
testcase_05 AC 170 ms
103,296 KB
testcase_06 AC 88 ms
83,960 KB
testcase_07 AC 76 ms
78,696 KB
testcase_08 AC 126 ms
88,964 KB
testcase_09 AC 102 ms
83,728 KB
testcase_10 AC 207 ms
91,080 KB
testcase_11 AC 91 ms
85,192 KB
testcase_12 AC 74 ms
78,464 KB
testcase_13 AC 692 ms
506,248 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