結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,988 KB
testcase_01 AC 41 ms
54,536 KB
testcase_02 AC 42 ms
53,864 KB
testcase_03 AC 139 ms
99,008 KB
testcase_04 AC 68 ms
73,276 KB
testcase_05 AC 163 ms
110,444 KB
testcase_06 AC 96 ms
87,072 KB
testcase_07 AC 97 ms
78,880 KB
testcase_08 AC 92 ms
82,480 KB
testcase_09 AC 103 ms
93,816 KB
testcase_10 AC 137 ms
95,812 KB
testcase_11 AC 110 ms
88,016 KB
testcase_12 AC 87 ms
79,852 KB
testcase_13 AC 75 ms
83,072 KB
testcase_14 AC 89 ms
93,984 KB
testcase_15 AC 70 ms
80,536 KB
testcase_16 AC 62 ms
70,272 KB
testcase_17 AC 80 ms
86,260 KB
testcase_18 AC 71 ms
80,652 KB
testcase_19 AC 86 ms
89,816 KB
testcase_20 AC 79 ms
85,552 KB
testcase_21 AC 50 ms
61,884 KB
testcase_22 AC 69 ms
75,096 KB
testcase_23 AC 66 ms
73,504 KB
testcase_24 AC 68 ms
74,532 KB
testcase_25 AC 82 ms
87,916 KB
testcase_26 AC 65 ms
74,796 KB
testcase_27 AC 83 ms
91,064 KB
testcase_28 AC 74 ms
82,568 KB
testcase_29 AC 65 ms
74,964 KB
testcase_30 AC 54 ms
63,072 KB
testcase_31 AC 87 ms
91,812 KB
testcase_32 AC 62 ms
73,420 KB
testcase_33 WA -
testcase_34 AC 62 ms
72,844 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 b:
    dp[i] = 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