結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー なえしらなえしら
提出日時 2024-08-16 22:53:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 91,188 KB
最終ジャッジ日時 2024-08-16 22:53:38
合計ジャッジ時間 3,536 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,672 KB
testcase_01 AC 34 ms
53,216 KB
testcase_02 AC 34 ms
52,972 KB
testcase_03 AC 60 ms
81,580 KB
testcase_04 AC 44 ms
64,480 KB
testcase_05 AC 74 ms
91,188 KB
testcase_06 AC 51 ms
70,856 KB
testcase_07 AC 49 ms
65,320 KB
testcase_08 AC 47 ms
65,836 KB
testcase_09 AC 56 ms
71,380 KB
testcase_10 AC 61 ms
79,016 KB
testcase_11 AC 51 ms
72,100 KB
testcase_12 AC 45 ms
65,852 KB
testcase_13 AC 45 ms
61,968 KB
testcase_14 AC 45 ms
62,772 KB
testcase_15 AC 43 ms
61,396 KB
testcase_16 AC 43 ms
61,284 KB
testcase_17 AC 47 ms
62,740 KB
testcase_18 AC 43 ms
61,160 KB
testcase_19 AC 45 ms
62,356 KB
testcase_20 AC 44 ms
61,012 KB
testcase_21 AC 38 ms
58,908 KB
testcase_22 AC 43 ms
60,940 KB
testcase_23 AC 42 ms
61,004 KB
testcase_24 AC 43 ms
61,088 KB
testcase_25 AC 44 ms
61,792 KB
testcase_26 AC 42 ms
61,640 KB
testcase_27 AC 43 ms
61,812 KB
testcase_28 AC 44 ms
62,384 KB
testcase_29 AC 45 ms
60,848 KB
testcase_30 AC 43 ms
60,144 KB
testcase_31 AC 48 ms
63,808 KB
testcase_32 AC 41 ms
61,124 KB
testcase_33 AC 35 ms
53,576 KB
testcase_34 AC 43 ms
60,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
M = int(input())
A = list(map(int, input().split()))
M = int(input())
B = list(map(int, input().split()))

dp = [True] + [None] * N
for a in A: dp[a] = False
for b in B: dp[b] = True

for i in range(1, N + 1):
  if dp[i] is None:
    dp[i] = dp[i - 1] or i >= K and dp[i - K]

print("Yes" if dp[N] else "No")
0