結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー tassei903tassei903
提出日時 2023-08-04 21:34:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-05-10 07:08:00
合計ジャッジ時間 2,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 67 ms
81,152 KB
testcase_04 AC 51 ms
63,872 KB
testcase_05 AC 79 ms
91,392 KB
testcase_06 AC 59 ms
71,424 KB
testcase_07 AC 50 ms
64,512 KB
testcase_08 AC 52 ms
65,920 KB
testcase_09 AC 59 ms
71,040 KB
testcase_10 AC 64 ms
78,976 KB
testcase_11 AC 58 ms
72,704 KB
testcase_12 AC 52 ms
66,176 KB
testcase_13 AC 46 ms
62,208 KB
testcase_14 AC 44 ms
62,592 KB
testcase_15 AC 43 ms
60,928 KB
testcase_16 AC 44 ms
61,056 KB
testcase_17 AC 49 ms
62,720 KB
testcase_18 AC 46 ms
61,056 KB
testcase_19 AC 48 ms
63,232 KB
testcase_20 AC 44 ms
61,568 KB
testcase_21 AC 42 ms
59,008 KB
testcase_22 AC 45 ms
61,440 KB
testcase_23 AC 42 ms
60,544 KB
testcase_24 AC 45 ms
61,568 KB
testcase_25 AC 44 ms
62,208 KB
testcase_26 AC 41 ms
60,672 KB
testcase_27 AC 43 ms
62,080 KB
testcase_28 AC 45 ms
62,336 KB
testcase_29 AC 42 ms
60,416 KB
testcase_30 AC 42 ms
60,160 KB
testcase_31 AC 44 ms
63,232 KB
testcase_32 AC 42 ms
60,032 KB
testcase_33 AC 36 ms
52,096 KB
testcase_34 AC 46 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n, k = na()
b = [0] * (1+n)
m = ni()
a = na()
for i in range(m):
    b[a[i]] = 1
m = ni()
a = na()
for i in range(m):
    b[a[i]] = 2

dp = [0] * (n+1)
dp[0] = 1
for i in range(1, n+1):
    if b[i] == 1:
        dp[i] = 0
    elif b[i] == 2:
        dp[i] = 1
    else:
        if i - k >= 0:
            dp[i] |= dp[i-k]
        dp[i] |= dp[i-1]

if dp[-1]:
    Yes()
else:
    No()
0