結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-04 22:06:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 91,372 KB
最終ジャッジ日時 2024-12-20 02:40:43
合計ジャッジ時間 3,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,572 KB
testcase_01 AC 38 ms
53,740 KB
testcase_02 AC 38 ms
53,152 KB
testcase_03 AC 70 ms
81,828 KB
testcase_04 AC 55 ms
66,192 KB
testcase_05 AC 82 ms
91,372 KB
testcase_06 AC 59 ms
72,244 KB
testcase_07 AC 58 ms
66,640 KB
testcase_08 AC 55 ms
67,236 KB
testcase_09 AC 62 ms
73,632 KB
testcase_10 AC 70 ms
81,192 KB
testcase_11 AC 59 ms
73,508 KB
testcase_12 AC 55 ms
68,264 KB
testcase_13 AC 53 ms
62,540 KB
testcase_14 AC 50 ms
62,028 KB
testcase_15 AC 51 ms
61,860 KB
testcase_16 AC 49 ms
61,776 KB
testcase_17 AC 52 ms
63,760 KB
testcase_18 AC 49 ms
62,136 KB
testcase_19 AC 53 ms
63,484 KB
testcase_20 AC 50 ms
61,404 KB
testcase_21 AC 44 ms
60,388 KB
testcase_22 AC 50 ms
62,160 KB
testcase_23 AC 49 ms
61,428 KB
testcase_24 AC 48 ms
61,528 KB
testcase_25 AC 49 ms
62,236 KB
testcase_26 AC 47 ms
61,368 KB
testcase_27 AC 48 ms
63,792 KB
testcase_28 AC 48 ms
63,052 KB
testcase_29 AC 50 ms
61,424 KB
testcase_30 AC 48 ms
60,020 KB
testcase_31 AC 55 ms
63,792 KB
testcase_32 AC 50 ms
60,416 KB
testcase_33 AC 40 ms
51,824 KB
testcase_34 AC 53 ms
62,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

N,K = map(int,stdin.readline().split())
_ = input()
A = list(map(int,stdin.readline().split()))
_ = input()
B = list(map(int,stdin.readline().split()))

lis = [0] * (N+1)


for na in A:
    lis[na] = 1

for nb in B:
    lis[nb] = 2

dp = [False] * (N+1)
dp[0] = True

for i in range(N):

    if lis[i] == 1:
        dp[i] = False
    if lis[i] == 2:
        dp[i] = True
    
    if dp[i]:
        dp[i+1] = True
        if i+K <= N:
            dp[i+K] = True

if dp[-1]:
    print ("Yes")
else:
    print ("No")
        
0