結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー tassei903tassei903
提出日時 2023-08-04 21:34:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 93,024 KB
最終ジャッジ日時 2024-12-20 02:28:09
合計ジャッジ時間 3,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,404 KB
testcase_01 AC 39 ms
52,868 KB
testcase_02 AC 39 ms
53,404 KB
testcase_03 AC 68 ms
82,096 KB
testcase_04 AC 52 ms
64,160 KB
testcase_05 AC 80 ms
93,024 KB
testcase_06 AC 57 ms
71,700 KB
testcase_07 AC 54 ms
64,608 KB
testcase_08 AC 53 ms
65,884 KB
testcase_09 AC 59 ms
72,868 KB
testcase_10 AC 67 ms
80,668 KB
testcase_11 AC 57 ms
74,228 KB
testcase_12 AC 53 ms
67,256 KB
testcase_13 AC 49 ms
62,660 KB
testcase_14 AC 47 ms
61,928 KB
testcase_15 AC 47 ms
61,128 KB
testcase_16 AC 47 ms
62,024 KB
testcase_17 AC 49 ms
62,848 KB
testcase_18 AC 46 ms
61,184 KB
testcase_19 AC 50 ms
64,764 KB
testcase_20 AC 47 ms
62,168 KB
testcase_21 AC 44 ms
59,788 KB
testcase_22 AC 47 ms
61,700 KB
testcase_23 AC 46 ms
61,672 KB
testcase_24 AC 47 ms
62,040 KB
testcase_25 AC 47 ms
62,764 KB
testcase_26 AC 45 ms
62,176 KB
testcase_27 AC 48 ms
63,260 KB
testcase_28 AC 48 ms
62,672 KB
testcase_29 AC 46 ms
61,204 KB
testcase_30 AC 46 ms
60,220 KB
testcase_31 AC 49 ms
64,080 KB
testcase_32 AC 44 ms
60,768 KB
testcase_33 AC 37 ms
52,968 KB
testcase_34 AC 47 ms
62,572 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