結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,260 KB
testcase_01 AC 39 ms
52,756 KB
testcase_02 AC 38 ms
52,744 KB
testcase_03 AC 90 ms
93,780 KB
testcase_04 AC 53 ms
67,244 KB
testcase_05 AC 107 ms
104,628 KB
testcase_06 AC 68 ms
81,104 KB
testcase_07 AC 55 ms
68,752 KB
testcase_08 AC 56 ms
71,456 KB
testcase_09 AC 71 ms
80,900 KB
testcase_10 AC 87 ms
91,264 KB
testcase_11 AC 68 ms
81,824 KB
testcase_12 AC 55 ms
70,432 KB
testcase_13 AC 64 ms
75,648 KB
testcase_14 AC 76 ms
78,556 KB
testcase_15 AC 59 ms
74,180 KB
testcase_16 AC 55 ms
67,032 KB
testcase_17 AC 71 ms
78,060 KB
testcase_18 AC 63 ms
74,060 KB
testcase_19 AC 71 ms
78,688 KB
testcase_20 AC 67 ms
77,856 KB
testcase_21 AC 47 ms
61,692 KB
testcase_22 AC 58 ms
70,292 KB
testcase_23 AC 55 ms
68,876 KB
testcase_24 AC 56 ms
71,296 KB
testcase_25 AC 69 ms
78,248 KB
testcase_26 AC 59 ms
70,124 KB
testcase_27 AC 73 ms
78,188 KB
testcase_28 AC 65 ms
76,016 KB
testcase_29 AC 57 ms
69,628 KB
testcase_30 AC 50 ms
62,228 KB
testcase_31 AC 75 ms
78,616 KB
testcase_32 AC 56 ms
68,316 KB
testcase_33 AC 39 ms
52,520 KB
testcase_34 AC 55 ms
68,300 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