結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー miya145592miya145592
提出日時 2023-08-04 22:39:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 102,912 KB
最終ジャッジ日時 2024-05-10 07:22:49
合計ジャッジ時間 6,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,456 KB
testcase_01 AC 43 ms
51,584 KB
testcase_02 AC 44 ms
51,712 KB
testcase_03 AC 159 ms
93,184 KB
testcase_04 AC 89 ms
77,312 KB
testcase_05 AC 233 ms
102,912 KB
testcase_06 AC 123 ms
83,456 KB
testcase_07 AC 101 ms
78,208 KB
testcase_08 AC 115 ms
79,616 KB
testcase_09 AC 144 ms
83,416 KB
testcase_10 AC 176 ms
90,624 KB
testcase_11 AC 125 ms
84,608 KB
testcase_12 AC 103 ms
77,952 KB
testcase_13 AC 149 ms
85,632 KB
testcase_14 AC 201 ms
92,160 KB
testcase_15 AC 128 ms
84,224 KB
testcase_16 AC 103 ms
78,208 KB
testcase_17 AC 170 ms
87,296 KB
testcase_18 AC 147 ms
84,096 KB
testcase_19 AC 177 ms
89,984 KB
testcase_20 AC 164 ms
86,784 KB
testcase_21 AC 65 ms
63,744 KB
testcase_22 AC 126 ms
81,408 KB
testcase_23 AC 105 ms
80,640 KB
testcase_24 AC 121 ms
80,896 KB
testcase_25 AC 174 ms
89,728 KB
testcase_26 AC 124 ms
81,024 KB
testcase_27 AC 186 ms
90,240 KB
testcase_28 AC 158 ms
86,272 KB
testcase_29 AC 124 ms
80,768 KB
testcase_30 AC 67 ms
65,152 KB
testcase_31 AC 194 ms
90,112 KB
testcase_32 AC 122 ms
80,640 KB
testcase_33 AC 45 ms
51,840 KB
testcase_34 AC 117 ms
80,128 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