結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 66 ms
81,792 KB
testcase_04 AC 53 ms
65,152 KB
testcase_05 AC 77 ms
91,520 KB
testcase_06 AC 67 ms
71,296 KB
testcase_07 AC 47 ms
65,920 KB
testcase_08 AC 49 ms
65,536 KB
testcase_09 AC 58 ms
71,808 KB
testcase_10 AC 63 ms
80,384 KB
testcase_11 AC 55 ms
72,064 KB
testcase_12 AC 50 ms
66,560 KB
testcase_13 AC 46 ms
61,824 KB
testcase_14 AC 45 ms
61,568 KB
testcase_15 AC 43 ms
61,696 KB
testcase_16 AC 42 ms
61,056 KB
testcase_17 AC 46 ms
62,080 KB
testcase_18 AC 44 ms
61,056 KB
testcase_19 AC 47 ms
62,464 KB
testcase_20 AC 45 ms
61,568 KB
testcase_21 AC 42 ms
59,264 KB
testcase_22 AC 44 ms
61,696 KB
testcase_23 AC 44 ms
60,800 KB
testcase_24 AC 44 ms
61,696 KB
testcase_25 AC 54 ms
61,952 KB
testcase_26 AC 43 ms
59,904 KB
testcase_27 AC 45 ms
62,080 KB
testcase_28 AC 44 ms
61,696 KB
testcase_29 AC 43 ms
60,032 KB
testcase_30 AC 42 ms
59,136 KB
testcase_31 AC 47 ms
62,592 KB
testcase_32 AC 42 ms
60,288 KB
testcase_33 AC 34 ms
51,712 KB
testcase_34 AC 43 ms
60,928 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