結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー bit_kyoprobit_kyopro
提出日時 2023-08-04 21:57:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 93,824 KB
最終ジャッジ日時 2024-05-10 07:19:44
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 89 ms
86,272 KB
testcase_04 AC 59 ms
68,224 KB
testcase_05 AC 100 ms
93,824 KB
testcase_06 AC 62 ms
75,392 KB
testcase_07 AC 54 ms
69,248 KB
testcase_08 AC 63 ms
72,960 KB
testcase_09 AC 79 ms
80,352 KB
testcase_10 AC 109 ms
84,604 KB
testcase_11 AC 68 ms
79,272 KB
testcase_12 AC 74 ms
76,664 KB
testcase_13 AC 52 ms
64,384 KB
testcase_14 AC 52 ms
64,128 KB
testcase_15 AC 48 ms
62,720 KB
testcase_16 AC 48 ms
63,616 KB
testcase_17 AC 51 ms
64,768 KB
testcase_18 AC 52 ms
63,872 KB
testcase_19 AC 53 ms
64,896 KB
testcase_20 AC 51 ms
63,616 KB
testcase_21 AC 41 ms
60,032 KB
testcase_22 AC 49 ms
63,616 KB
testcase_23 AC 46 ms
61,952 KB
testcase_24 AC 50 ms
64,256 KB
testcase_25 AC 50 ms
63,232 KB
testcase_26 AC 49 ms
62,720 KB
testcase_27 AC 52 ms
63,872 KB
testcase_28 AC 51 ms
64,128 KB
testcase_29 AC 57 ms
61,952 KB
testcase_30 AC 46 ms
61,440 KB
testcase_31 AC 55 ms
65,536 KB
testcase_32 AC 46 ms
61,312 KB
testcase_33 AC 37 ms
51,840 KB
testcase_34 AC 50 ms
63,744 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