結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー やでな@競プロやでな@競プロ
提出日時 2023-10-08 21:14:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 110,192 KB
最終ジャッジ日時 2024-07-26 18:13:04
合計ジャッジ時間 4,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,736 KB
testcase_01 AC 42 ms
54,916 KB
testcase_02 AC 40 ms
55,344 KB
testcase_03 AC 141 ms
99,540 KB
testcase_04 AC 69 ms
71,884 KB
testcase_05 AC 159 ms
110,192 KB
testcase_06 AC 92 ms
87,692 KB
testcase_07 AC 83 ms
79,848 KB
testcase_08 AC 91 ms
82,928 KB
testcase_09 AC 105 ms
91,760 KB
testcase_10 AC 136 ms
97,384 KB
testcase_11 AC 104 ms
88,272 KB
testcase_12 AC 92 ms
79,056 KB
testcase_13 AC 80 ms
85,184 KB
testcase_14 AC 92 ms
96,688 KB
testcase_15 AC 72 ms
81,868 KB
testcase_16 AC 63 ms
71,484 KB
testcase_17 AC 84 ms
88,932 KB
testcase_18 AC 75 ms
80,876 KB
testcase_19 AC 88 ms
91,928 KB
testcase_20 AC 81 ms
86,784 KB
testcase_21 AC 47 ms
62,644 KB
testcase_22 AC 70 ms
78,256 KB
testcase_23 AC 62 ms
72,988 KB
testcase_24 AC 71 ms
76,644 KB
testcase_25 AC 81 ms
89,432 KB
testcase_26 AC 69 ms
77,008 KB
testcase_27 AC 85 ms
93,744 KB
testcase_28 AC 79 ms
84,788 KB
testcase_29 AC 68 ms
75,732 KB
testcase_30 AC 53 ms
64,976 KB
testcase_31 AC 92 ms
94,548 KB
testcase_32 AC 62 ms
73,564 KB
testcase_33 AC 41 ms
53,800 KB
testcase_34 AC 67 ms
75,116 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+1] == 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
                
    #print(dp,i)
                
if dp[-1]:
    print("Yes")
else:
    print("No")
            
0