結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー bit_kyoprobit_kyopro
提出日時 2023-08-04 21:57:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 94,224 KB
最終ジャッジ日時 2024-12-20 02:40:10
合計ジャッジ時間 3,500 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,928 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
52,956 KB
testcase_03 AC 97 ms
86,392 KB
testcase_04 AC 61 ms
67,676 KB
testcase_05 AC 107 ms
94,224 KB
testcase_06 AC 69 ms
76,400 KB
testcase_07 AC 62 ms
69,444 KB
testcase_08 AC 70 ms
72,992 KB
testcase_09 AC 89 ms
80,772 KB
testcase_10 AC 101 ms
84,528 KB
testcase_11 AC 75 ms
79,436 KB
testcase_12 AC 79 ms
76,432 KB
testcase_13 AC 57 ms
66,208 KB
testcase_14 AC 57 ms
65,500 KB
testcase_15 AC 55 ms
63,704 KB
testcase_16 AC 54 ms
64,656 KB
testcase_17 AC 57 ms
65,404 KB
testcase_18 AC 56 ms
64,676 KB
testcase_19 AC 58 ms
65,616 KB
testcase_20 AC 56 ms
65,032 KB
testcase_21 AC 47 ms
61,544 KB
testcase_22 AC 55 ms
64,024 KB
testcase_23 AC 52 ms
63,464 KB
testcase_24 AC 58 ms
66,176 KB
testcase_25 AC 57 ms
65,056 KB
testcase_26 AC 52 ms
63,252 KB
testcase_27 AC 53 ms
63,920 KB
testcase_28 AC 58 ms
65,780 KB
testcase_29 AC 53 ms
63,824 KB
testcase_30 AC 51 ms
63,368 KB
testcase_31 AC 58 ms
66,548 KB
testcase_32 AC 51 ms
61,940 KB
testcase_33 AC 41 ms
53,220 KB
testcase_34 AC 55 ms
63,968 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()))
x = [0 for _ in range(n + 1)]

for val in a:
    x[val] = 1
for val in b:
    x[val] = 2

dp = [False for _ in range(n + 1)]
dp[0] = True

for i in range(n):
    if (dp[i] and x[i + 1] == 0) or x[i + 1] == 2:
        dp[i + 1] = True
    if i + k <= n and ((dp[i] and x[i + k] == 0) or x[i + k] == 2):
        dp[i + k] = True
        
print('Yes' if dp[n] else 'No')
0