結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,124 KB
testcase_01 AC 40 ms
53,412 KB
testcase_02 AC 37 ms
53,628 KB
testcase_03 AC 112 ms
97,300 KB
testcase_04 AC 59 ms
68,936 KB
testcase_05 AC 132 ms
110,144 KB
testcase_06 AC 75 ms
82,860 KB
testcase_07 AC 65 ms
73,344 KB
testcase_08 AC 77 ms
75,148 KB
testcase_09 AC 96 ms
83,712 KB
testcase_10 AC 113 ms
93,724 KB
testcase_11 AC 77 ms
83,868 KB
testcase_12 AC 79 ms
76,968 KB
testcase_13 AC 60 ms
65,672 KB
testcase_14 AC 68 ms
62,804 KB
testcase_15 AC 57 ms
63,592 KB
testcase_16 AC 55 ms
63,116 KB
testcase_17 AC 68 ms
64,556 KB
testcase_18 AC 62 ms
63,056 KB
testcase_19 AC 65 ms
65,080 KB
testcase_20 AC 64 ms
63,440 KB
testcase_21 AC 45 ms
60,984 KB
testcase_22 AC 57 ms
63,572 KB
testcase_23 AC 55 ms
62,920 KB
testcase_24 AC 58 ms
65,424 KB
testcase_25 AC 61 ms
63,312 KB
testcase_26 AC 57 ms
63,188 KB
testcase_27 AC 65 ms
64,052 KB
testcase_28 AC 64 ms
64,440 KB
testcase_29 AC 57 ms
62,144 KB
testcase_30 AC 51 ms
62,904 KB
testcase_31 AC 71 ms
64,740 KB
testcase_32 AC 56 ms
61,788 KB
testcase_33 AC 39 ms
53,780 KB
testcase_34 AC 57 ms
63,776 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