結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー komkompikomkompi
提出日時 2023-08-05 07:28:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-05-10 07:24:33
合計ジャッジ時間 3,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 AC 88 ms
96,384 KB
testcase_04 AC 49 ms
64,768 KB
testcase_05 AC 106 ms
109,952 KB
testcase_06 AC 67 ms
82,304 KB
testcase_07 AC 51 ms
68,992 KB
testcase_08 AC 57 ms
71,168 KB
testcase_09 AC 70 ms
82,816 KB
testcase_10 AC 84 ms
93,312 KB
testcase_11 AC 65 ms
83,840 KB
testcase_12 AC 53 ms
69,760 KB
testcase_13 AC 59 ms
74,240 KB
testcase_14 AC 72 ms
76,416 KB
testcase_15 AC 53 ms
71,936 KB
testcase_16 AC 63 ms
66,560 KB
testcase_17 AC 68 ms
76,032 KB
testcase_18 AC 60 ms
72,064 KB
testcase_19 AC 67 ms
76,288 KB
testcase_20 AC 65 ms
76,672 KB
testcase_21 AC 60 ms
60,032 KB
testcase_22 AC 55 ms
69,504 KB
testcase_23 AC 50 ms
66,944 KB
testcase_24 AC 54 ms
69,248 KB
testcase_25 AC 64 ms
76,288 KB
testcase_26 AC 55 ms
68,608 KB
testcase_27 AC 70 ms
76,472 KB
testcase_28 AC 61 ms
74,368 KB
testcase_29 AC 54 ms
68,608 KB
testcase_30 AC 44 ms
60,544 KB
testcase_31 AC 73 ms
76,672 KB
testcase_32 AC 55 ms
67,328 KB
testcase_33 AC 35 ms
51,584 KB
testcase_34 AC 52 ms
67,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N,K=map(int,input().split())
M1=int(input())
A=list(map(int,input().split()))

M2=int(input())
B=list(map(int,input().split()))

stairs=[10**9]*(N+1)
stairs[0]=0

A=set(A)
B=set(B)

for i in range(N):
    for delta in [1,K]:
        nxt=i+delta
        if nxt>N:
            continue
        if nxt in A:
            stairs[nxt]=1
        elif nxt in B:
            stairs[nxt]=0
        else:
            stairs[nxt]=min(stairs[i],stairs[nxt])

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