結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー n_nan_na
提出日時 2023-08-05 22:51:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-05-10 07:25:57
合計ジャッジ時間 3,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 109 ms
97,156 KB
testcase_04 AC 56 ms
67,968 KB
testcase_05 AC 125 ms
109,952 KB
testcase_06 AC 75 ms
82,432 KB
testcase_07 AC 61 ms
71,936 KB
testcase_08 AC 69 ms
75,520 KB
testcase_09 AC 90 ms
83,456 KB
testcase_10 AC 108 ms
93,600 KB
testcase_11 AC 70 ms
83,324 KB
testcase_12 AC 72 ms
76,736 KB
testcase_13 AC 58 ms
64,072 KB
testcase_14 AC 69 ms
62,848 KB
testcase_15 AC 57 ms
62,080 KB
testcase_16 AC 52 ms
63,232 KB
testcase_17 AC 67 ms
64,640 KB
testcase_18 AC 59 ms
63,188 KB
testcase_19 AC 62 ms
64,768 KB
testcase_20 AC 59 ms
62,720 KB
testcase_21 AC 43 ms
59,392 KB
testcase_22 AC 53 ms
63,104 KB
testcase_23 AC 50 ms
61,696 KB
testcase_24 AC 54 ms
63,616 KB
testcase_25 AC 58 ms
62,976 KB
testcase_26 AC 56 ms
62,336 KB
testcase_27 AC 62 ms
62,720 KB
testcase_28 AC 61 ms
64,384 KB
testcase_29 AC 56 ms
62,208 KB
testcase_30 AC 62 ms
61,440 KB
testcase_31 AC 70 ms
64,768 KB
testcase_32 AC 50 ms
61,056 KB
testcase_33 AC 36 ms
51,968 KB
testcase_34 AC 53 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())

M1 = int(input())
A = list(map(int,input().split()))
A = set(A)

M2 = int(input())
B = list(map(int,input().split()))
B = set(B)

dp = [False]*(N+1)
dp[0] = True

for i in range(N):
    n1 = i + 1
    if n1 in B:
        dp[n1] = True
    if n1 not in A and dp[i]:
        dp[n1] = True

    n2 = i + K
    if n2 > N:
        continue
    if n2 in B:
        dp[n2] = True
    if n2 not in A and dp[i]:
        dp[n2] = True
        
if dp[N]:
    print("Yes")
else:
    print("No")
0