結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー ntudantuda
提出日時 2023-08-05 09:32:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 105,908 KB
最終ジャッジ日時 2024-05-10 07:24:49
合計ジャッジ時間 2,891 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,884 KB
testcase_01 AC 35 ms
53,164 KB
testcase_02 AC 33 ms
52,180 KB
testcase_03 AC 74 ms
97,120 KB
testcase_04 AC 43 ms
65,040 KB
testcase_05 AC 85 ms
105,908 KB
testcase_06 AC 54 ms
74,696 KB
testcase_07 AC 45 ms
66,888 KB
testcase_08 AC 46 ms
67,868 KB
testcase_09 AC 59 ms
78,072 KB
testcase_10 AC 70 ms
88,404 KB
testcase_11 AC 57 ms
76,736 KB
testcase_12 AC 50 ms
68,936 KB
testcase_13 AC 43 ms
62,672 KB
testcase_14 AC 47 ms
60,924 KB
testcase_15 AC 45 ms
61,188 KB
testcase_16 AC 41 ms
60,508 KB
testcase_17 AC 45 ms
61,200 KB
testcase_18 AC 41 ms
60,084 KB
testcase_19 AC 48 ms
61,700 KB
testcase_20 AC 43 ms
60,756 KB
testcase_21 AC 38 ms
59,016 KB
testcase_22 AC 39 ms
61,000 KB
testcase_23 AC 42 ms
61,924 KB
testcase_24 AC 42 ms
61,276 KB
testcase_25 AC 47 ms
60,476 KB
testcase_26 AC 41 ms
60,256 KB
testcase_27 AC 44 ms
60,852 KB
testcase_28 AC 43 ms
61,788 KB
testcase_29 AC 41 ms
59,956 KB
testcase_30 AC 39 ms
60,688 KB
testcase_31 AC 44 ms
62,580 KB
testcase_32 AC 41 ms
60,040 KB
testcase_33 AC 32 ms
53,100 KB
testcase_34 AC 38 ms
61,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
M1 = int(input())
A = set(map(int,input().split()))
M = int(input())
B = set(map(int,input().split()))
C = A | B
dp = [True] * (N+1)
for a in A:
    dp[a] = False
for i in range(1,N+1):
    if i in C:
        continue
    dp[i] = dp[i-1]
    if i >= K:
        dp[i] |= dp[i-K]
if dp[N]:
    print("Yes")
else:
    print("No")
0