結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー CecilCecil
提出日時 2023-08-04 22:07:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 100,280 KB
最終ジャッジ日時 2024-12-20 02:40:47
合計ジャッジ時間 3,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 40 ms
52,416 KB
testcase_02 AC 38 ms
52,192 KB
testcase_03 AC 77 ms
88,004 KB
testcase_04 AC 50 ms
64,084 KB
testcase_05 AC 96 ms
100,280 KB
testcase_06 AC 62 ms
74,228 KB
testcase_07 AC 52 ms
66,840 KB
testcase_08 AC 56 ms
69,032 KB
testcase_09 AC 62 ms
72,720 KB
testcase_10 AC 75 ms
87,196 KB
testcase_11 AC 61 ms
76,392 KB
testcase_12 AC 52 ms
67,468 KB
testcase_13 AC 52 ms
63,416 KB
testcase_14 AC 56 ms
62,084 KB
testcase_15 AC 52 ms
61,336 KB
testcase_16 AC 49 ms
60,776 KB
testcase_17 AC 54 ms
63,396 KB
testcase_18 AC 51 ms
62,140 KB
testcase_19 AC 53 ms
63,264 KB
testcase_20 AC 51 ms
60,796 KB
testcase_21 AC 42 ms
60,592 KB
testcase_22 AC 49 ms
63,044 KB
testcase_23 AC 49 ms
61,504 KB
testcase_24 AC 48 ms
61,548 KB
testcase_25 AC 51 ms
61,656 KB
testcase_26 AC 49 ms
61,228 KB
testcase_27 AC 54 ms
60,836 KB
testcase_28 AC 53 ms
61,816 KB
testcase_29 AC 49 ms
60,980 KB
testcase_30 AC 46 ms
61,496 KB
testcase_31 AC 55 ms
62,456 KB
testcase_32 AC 47 ms
59,888 KB
testcase_33 AC 36 ms
53,140 KB
testcase_34 AC 47 ms
61,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
M1 = int(input())
A = set(map(int, input().split()))
M2 = int(input())
B = set(map(int, input().split()))

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

for i in range(1, N+1):
    if i in B:
        dp[i] = True
    elif i in A:
        dp[i] = False
    else:
        if i < K:
            dp[i] = dp[i-1]
        if i >= K:
            if dp[i-K] == True or dp[i-1] == True:
                dp[i] = True
            else:
                dp[i] = dp[i-1]
#print(A)
#print(B)
#"print(dp)         
if dp[N] == True or dp[N-K] == True:
    print("Yes")
else:
    print("No")
0