結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー 310icecrystal310icecrystal
提出日時 2023-08-05 02:15:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 93,908 KB
最終ジャッジ日時 2024-12-20 02:47:23
合計ジャッジ時間 3,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,428 KB
testcase_01 AC 39 ms
52,280 KB
testcase_02 AC 40 ms
53,936 KB
testcase_03 AC 80 ms
83,736 KB
testcase_04 AC 52 ms
64,356 KB
testcase_05 AC 108 ms
93,908 KB
testcase_06 AC 64 ms
73,184 KB
testcase_07 AC 55 ms
66,012 KB
testcase_08 AC 56 ms
66,556 KB
testcase_09 AC 64 ms
72,704 KB
testcase_10 AC 78 ms
80,068 KB
testcase_11 AC 63 ms
73,348 KB
testcase_12 AC 54 ms
67,420 KB
testcase_13 AC 51 ms
64,276 KB
testcase_14 AC 54 ms
65,080 KB
testcase_15 AC 52 ms
63,828 KB
testcase_16 AC 49 ms
62,324 KB
testcase_17 AC 53 ms
63,924 KB
testcase_18 AC 50 ms
62,128 KB
testcase_19 AC 53 ms
64,820 KB
testcase_20 AC 51 ms
62,360 KB
testcase_21 AC 43 ms
58,900 KB
testcase_22 AC 50 ms
63,192 KB
testcase_23 AC 49 ms
62,172 KB
testcase_24 AC 50 ms
63,012 KB
testcase_25 AC 50 ms
62,212 KB
testcase_26 AC 50 ms
62,700 KB
testcase_27 AC 50 ms
62,032 KB
testcase_28 AC 53 ms
64,520 KB
testcase_29 AC 49 ms
62,284 KB
testcase_30 AC 47 ms
61,412 KB
testcase_31 AC 55 ms
64,004 KB
testcase_32 AC 47 ms
61,408 KB
testcase_33 AC 38 ms
53,080 KB
testcase_34 AC 50 ms
62,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#dp[i]=i段目にきれいな状態で着地できるか?
dp = [False]*(N+1)
dp[0] = True
now_dirty = 0
now_clean = 0
for i in range(1,N+1):
    if now_dirty <= M1-1 and i == A[now_dirty]:
        now_dirty += 1
    elif now_clean <= M2-1 and i == B[now_clean]:
        now_clean += 1
        dp[i] = True
    else:
        if dp[i-1]:
            dp[i] = True
        elif i >= K and dp[i-K]:
            dp[i] = True

if dp[N]:
    print("Yes")
else:
    print("No")
0