結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー maron8676maron8676
提出日時 2023-08-04 21:40:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,844 KB
最終ジャッジ日時 2024-05-10 07:12:25
合計ジャッジ時間 3,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 90 ms
19,716 KB
testcase_04 AC 32 ms
11,392 KB
testcase_05 AC 102 ms
23,844 KB
testcase_06 AC 49 ms
16,796 KB
testcase_07 AC 34 ms
12,288 KB
testcase_08 AC 46 ms
12,800 KB
testcase_09 AC 68 ms
14,308 KB
testcase_10 AC 78 ms
17,532 KB
testcase_11 AC 52 ms
17,384 KB
testcase_12 AC 39 ms
12,800 KB
testcase_13 AC 93 ms
11,776 KB
testcase_14 AC 139 ms
12,288 KB
testcase_15 AC 87 ms
11,648 KB
testcase_16 AC 51 ms
11,008 KB
testcase_17 AC 110 ms
11,904 KB
testcase_18 AC 88 ms
11,648 KB
testcase_19 AC 118 ms
12,032 KB
testcase_20 AC 109 ms
11,776 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 64 ms
11,392 KB
testcase_23 AC 47 ms
11,264 KB
testcase_24 AC 64 ms
11,392 KB
testcase_25 AC 119 ms
12,032 KB
testcase_26 AC 66 ms
11,392 KB
testcase_27 AC 132 ms
12,032 KB
testcase_28 AC 99 ms
11,648 KB
testcase_29 AC 64 ms
11,136 KB
testcase_30 AC 27 ms
10,880 KB
testcase_31 AC 130 ms
12,160 KB
testcase_32 AC 64 ms
11,264 KB
testcase_33 AC 25 ms
10,752 KB
testcase_34 AC 52 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from sys import stdin

readline = stdin.readline


def li():
    return list(map(int, readline().split()))


N, K = li()
M1 = int(input())
A = li()
M2 = int(input())
B = li()

A_set = set(A)

ans = [0] * (N + 1)
ans[0] = 1
for b in B:
    ans[b] = 1

for i in range(N):
    if ans[i] == 0:
        continue

    if i + 1 not in A_set:
        ans[i + 1] = 1
    if i + K <= N and i + K not in A_set:
        ans[i + K] = 1

if ans[N] == 1:
    print("Yes")
else:
    print("No")
0