結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー nikoro256nikoro256
提出日時 2023-08-04 22:04:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 111,824 KB
最終ジャッジ日時 2024-05-10 07:20:10
合計ジャッジ時間 4,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 153 ms
100,608 KB
testcase_04 AC 74 ms
77,608 KB
testcase_05 AC 182 ms
111,824 KB
testcase_06 AC 104 ms
89,216 KB
testcase_07 AC 88 ms
78,464 KB
testcase_08 AC 119 ms
80,640 KB
testcase_09 AC 126 ms
89,472 KB
testcase_10 AC 157 ms
98,176 KB
testcase_11 AC 106 ms
90,112 KB
testcase_12 AC 88 ms
78,976 KB
testcase_13 AC 122 ms
86,528 KB
testcase_14 AC 128 ms
93,312 KB
testcase_15 AC 88 ms
85,760 KB
testcase_16 AC 69 ms
73,472 KB
testcase_17 AC 113 ms
88,704 KB
testcase_18 AC 102 ms
85,376 KB
testcase_19 AC 112 ms
91,264 KB
testcase_20 AC 106 ms
88,704 KB
testcase_21 AC 46 ms
62,848 KB
testcase_22 AC 80 ms
82,432 KB
testcase_23 AC 63 ms
72,960 KB
testcase_24 AC 82 ms
81,984 KB
testcase_25 AC 108 ms
90,836 KB
testcase_26 AC 87 ms
82,432 KB
testcase_27 AC 119 ms
91,896 KB
testcase_28 AC 102 ms
86,656 KB
testcase_29 AC 80 ms
82,176 KB
testcase_30 AC 54 ms
65,664 KB
testcase_31 AC 127 ms
92,032 KB
testcase_32 AC 68 ms
73,216 KB
testcase_33 AC 35 ms
51,584 KB
testcase_34 AC 68 ms
74,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
M1=int(input())
A=list(map(int,input().split()))
A=set(A)
M2=int(input())
B=list(map(int,input().split()))
B=set(B)
dp=[[False,False] for _ in range(N+1)]
dp[0][0]=True
for i in range(N):
    for j in range(2):
        if i+1 in B:
            dp[i+1][0]=dp[i][j] or dp[i+1][0]
        elif i+1 in A:
            dp[i+1][1]=dp[i][j] or dp[i+1][1]
        else:
            dp[i+1][j]=dp[i][j] or dp[i+1][j]
        if i+K<=N:
            if i+K in B:
                dp[i+K][0]=dp[i][j] or dp[i+K][0]
            elif i+K in A:
                dp[i+K][1]=dp[i][j] or dp[i+K][1]
            else:
                dp[i+K][j]=dp[i][j] or dp[i+K][j]
if dp[-1][0]:
    print('Yes')
else:
    print('No')
0