結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー やでな@競プロやでな@競プロ
提出日時 2023-10-08 21:09:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 704 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 110,592 KB
最終ジャッジ日時 2024-07-26 18:12:52
合計ジャッジ時間 4,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,988 KB
testcase_01 AC 39 ms
55,436 KB
testcase_02 AC 40 ms
53,844 KB
testcase_03 AC 127 ms
99,488 KB
testcase_04 AC 65 ms
72,884 KB
testcase_05 AC 149 ms
110,592 KB
testcase_06 AC 86 ms
87,188 KB
testcase_07 AC 87 ms
79,344 KB
testcase_08 AC 83 ms
82,204 KB
testcase_09 AC 94 ms
90,104 KB
testcase_10 AC 126 ms
95,952 KB
testcase_11 AC 104 ms
88,076 KB
testcase_12 AC 86 ms
79,432 KB
testcase_13 AC 71 ms
82,876 KB
testcase_14 AC 82 ms
93,476 KB
testcase_15 AC 70 ms
80,612 KB
testcase_16 AC 63 ms
71,096 KB
testcase_17 AC 77 ms
86,448 KB
testcase_18 AC 65 ms
78,500 KB
testcase_19 AC 83 ms
89,968 KB
testcase_20 AC 76 ms
84,976 KB
testcase_21 AC 48 ms
62,480 KB
testcase_22 AC 65 ms
76,448 KB
testcase_23 AC 62 ms
73,132 KB
testcase_24 AC 64 ms
75,136 KB
testcase_25 AC 76 ms
89,068 KB
testcase_26 AC 61 ms
74,468 KB
testcase_27 AC 78 ms
91,220 KB
testcase_28 AC 70 ms
82,164 KB
testcase_29 AC 59 ms
75,252 KB
testcase_30 AC 47 ms
64,100 KB
testcase_31 AC 80 ms
91,932 KB
testcase_32 AC 58 ms
74,292 KB
testcase_33 WA -
testcase_34 AC 61 ms
73,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
m1 = int(input())
a = list(map(int,input().split()))
m2 = int(input())
b = list(map(int,input().split()))

from collections import *
da = defaultdict(int)
db = defaultdict(int)
for i in a:
    da[i] += 1
for i in b:
    db[i] += 1

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

for i in range(0,n):
    if dp[i] == True:
        if da[i] == 0:
            dp[i+1] = True
        if 0 <= i+k <= n:
            if da[i+k] == 0:
                dp[i+k] = True
    elif dp[i] == False:
        if db[i+1] == 1:
            dp[i+1] = True
        if 0 <= i+k <= n:
            if db[i+k] == 1:
                dp[i+k] = True
                
if dp[-1]:
    print("Yes")
else:
    print("No")
0