結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー gr1msl3ygr1msl3y
提出日時 2023-08-13 13:06:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,192 KB
最終ジャッジ日時 2024-05-10 07:28:20
合計ジャッジ時間 3,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 34 ms
51,456 KB
testcase_03 AC 85 ms
93,184 KB
testcase_04 AC 52 ms
65,280 KB
testcase_05 AC 102 ms
104,192 KB
testcase_06 AC 67 ms
79,744 KB
testcase_07 AC 53 ms
67,712 KB
testcase_08 AC 59 ms
70,656 KB
testcase_09 AC 69 ms
80,384 KB
testcase_10 AC 83 ms
90,880 KB
testcase_11 AC 69 ms
81,280 KB
testcase_12 AC 55 ms
69,504 KB
testcase_13 AC 61 ms
74,880 KB
testcase_14 AC 72 ms
78,208 KB
testcase_15 AC 59 ms
73,216 KB
testcase_16 AC 52 ms
66,688 KB
testcase_17 AC 67 ms
77,824 KB
testcase_18 AC 61 ms
72,960 KB
testcase_19 AC 70 ms
78,336 KB
testcase_20 AC 68 ms
77,440 KB
testcase_21 AC 44 ms
60,288 KB
testcase_22 AC 56 ms
69,504 KB
testcase_23 AC 54 ms
67,584 KB
testcase_24 AC 55 ms
69,248 KB
testcase_25 AC 71 ms
77,824 KB
testcase_26 AC 58 ms
69,120 KB
testcase_27 AC 70 ms
77,696 KB
testcase_28 AC 64 ms
75,008 KB
testcase_29 AC 55 ms
69,376 KB
testcase_30 AC 47 ms
61,312 KB
testcase_31 AC 73 ms
78,080 KB
testcase_32 AC 55 ms
67,840 KB
testcase_33 AC 34 ms
51,840 KB
testcase_34 AC 53 ms
67,328 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()))

dp0 = [0]*(N+1)
dp1 = [0]*(N+1)
dp0[0] = 1
for i in range(N):
    for ni in [i+1, i+K]:
        if ni > N:
            continue
        if i in A:
            dp1[ni] |= dp0[i] | dp1[i]
        elif i in B:
            dp0[ni] |= dp0[i] | dp1[i]
        else:
            dp0[ni] |= dp0[i]
            dp1[ni] |= dp1[i]

print('Yes' if dp0[N] else 'No')
0