結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー かとぅー ☆かとぅー ☆
提出日時 2023-09-04 22:27:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 110,464 KB
最終ジャッジ日時 2024-06-22 19:53:57
合計ジャッジ時間 4,183 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,888 KB
testcase_01 AC 38 ms
53,760 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 123 ms
98,796 KB
testcase_04 AC 65 ms
72,320 KB
testcase_05 AC 154 ms
110,464 KB
testcase_06 AC 90 ms
90,636 KB
testcase_07 AC 76 ms
79,616 KB
testcase_08 AC 95 ms
81,708 KB
testcase_09 AC 102 ms
91,008 KB
testcase_10 AC 132 ms
96,256 KB
testcase_11 AC 93 ms
91,648 KB
testcase_12 AC 81 ms
79,544 KB
testcase_13 AC 87 ms
86,908 KB
testcase_14 AC 102 ms
92,928 KB
testcase_15 AC 54 ms
72,448 KB
testcase_16 AC 59 ms
70,784 KB
testcase_17 AC 94 ms
89,380 KB
testcase_18 AC 85 ms
85,692 KB
testcase_19 AC 96 ms
91,596 KB
testcase_20 AC 87 ms
88,644 KB
testcase_21 AC 44 ms
61,568 KB
testcase_22 AC 62 ms
72,960 KB
testcase_23 AC 50 ms
68,096 KB
testcase_24 AC 63 ms
73,692 KB
testcase_25 AC 93 ms
91,144 KB
testcase_26 AC 64 ms
72,832 KB
testcase_27 AC 95 ms
92,032 KB
testcase_28 AC 92 ms
87,296 KB
testcase_29 AC 61 ms
71,936 KB
testcase_30 AC 47 ms
63,588 KB
testcase_31 AC 101 ms
92,444 KB
testcase_32 AC 59 ms
69,888 KB
testcase_33 AC 38 ms
54,016 KB
testcase_34 AC 60 ms
72,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, K = map(int, input().split())
M_1 = int(input())
A = list(map(int, input().split()))
d_a = defaultdict(int)
for i in range(M_1):
    d_a[A[i]] += 1
M_2 = int(input())        
B = list(map(int, input().split())) 
d_b = defaultdict(int)
for i in range(M_2):
    d_b[B[i]] += 1
dp = [[False, False] for i in range(N + 1)]
dp[0][0] = True   
for i in range(N):
    if dp[i][0]:
        if i+1 <= N:
            if i+1 in d_a:
                dp[i+1][1] = True
            else:
                dp[i+1][0] = True
        if i+K <= N:
            if i+K in d_a:
                dp[i+K][1] = True
            else:
                dp[i+K][0] = True
    if dp[i][1]:
        if i+1 <= N:
            if i+1 in d_b:
                dp[i+1][0] = True      
            else:
                dp[i+1][1] = True       
        if i+K <= N:
            if i+K in d_b:
                dp[i+K][0] = True      
            else:
                dp[i+K][1] = True      

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