結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー miya145592miya145592
提出日時 2023-08-04 22:39:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 103,216 KB
最終ジャッジ日時 2024-12-20 02:45:33
合計ジャッジ時間 5,438 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,768 KB
testcase_01 AC 42 ms
52,476 KB
testcase_02 AC 40 ms
53,076 KB
testcase_03 AC 155 ms
93,768 KB
testcase_04 AC 76 ms
77,736 KB
testcase_05 AC 178 ms
103,216 KB
testcase_06 AC 92 ms
84,012 KB
testcase_07 AC 78 ms
78,184 KB
testcase_08 AC 87 ms
80,352 KB
testcase_09 AC 108 ms
83,764 KB
testcase_10 AC 131 ms
90,988 KB
testcase_11 AC 103 ms
85,004 KB
testcase_12 AC 91 ms
78,092 KB
testcase_13 AC 113 ms
86,076 KB
testcase_14 AC 157 ms
92,120 KB
testcase_15 AC 100 ms
84,428 KB
testcase_16 AC 83 ms
78,084 KB
testcase_17 AC 130 ms
87,332 KB
testcase_18 AC 118 ms
84,276 KB
testcase_19 AC 145 ms
90,208 KB
testcase_20 AC 123 ms
87,524 KB
testcase_21 AC 56 ms
64,580 KB
testcase_22 AC 99 ms
81,224 KB
testcase_23 AC 81 ms
81,220 KB
testcase_24 AC 106 ms
81,116 KB
testcase_25 AC 133 ms
90,024 KB
testcase_26 AC 104 ms
81,204 KB
testcase_27 AC 149 ms
90,300 KB
testcase_28 AC 133 ms
86,384 KB
testcase_29 AC 98 ms
81,376 KB
testcase_30 AC 55 ms
65,892 KB
testcase_31 AC 151 ms
90,336 KB
testcase_32 AC 98 ms
81,292 KB
testcase_33 AC 41 ms
53,536 KB
testcase_34 AC 89 ms
80,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
_ = input()
A = set(map(int, input().split()))
_ = 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] = 1
        elif i+1 in B:
            dp[i+1][0] = 1
        else:
            dp[i+1][j] = 1
        if i+K<=N:
            if i+K in A:
                dp[i+K][1] = 1
            elif i+K in B:
                dp[i+K][0] = 1
            else:
                dp[i+K][j] = 1
if dp[N][0]>0:
    print("Yes")
else:
    print("No")
0