結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-05 17:19:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 231,296 KB
最終ジャッジ日時 2024-05-10 07:25:53
合計ジャッジ時間 7,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
55,296 KB
testcase_01 AC 53 ms
55,168 KB
testcase_02 AC 58 ms
55,296 KB
testcase_03 AC 89 ms
93,952 KB
testcase_04 AC 59 ms
62,848 KB
testcase_05 AC 106 ms
96,000 KB
testcase_06 AC 71 ms
76,928 KB
testcase_07 AC 61 ms
65,920 KB
testcase_08 AC 64 ms
67,072 KB
testcase_09 AC 70 ms
74,496 KB
testcase_10 AC 85 ms
89,856 KB
testcase_11 AC 74 ms
79,488 KB
testcase_12 AC 63 ms
67,456 KB
testcase_13 AC 281 ms
155,648 KB
testcase_14 AC 455 ms
231,296 KB
testcase_15 AC 55 ms
56,576 KB
testcase_16 AC 154 ms
105,472 KB
testcase_17 AC 336 ms
178,944 KB
testcase_18 AC 267 ms
152,320 KB
testcase_19 AC 398 ms
207,104 KB
testcase_20 AC 334 ms
182,400 KB
testcase_21 AC 53 ms
55,168 KB
testcase_22 AC 217 ms
131,328 KB
testcase_23 AC 59 ms
56,448 KB
testcase_24 AC 215 ms
122,880 KB
testcase_25 AC 122 ms
94,208 KB
testcase_26 AC 214 ms
131,584 KB
testcase_27 AC 412 ms
217,600 KB
testcase_28 AC 302 ms
158,720 KB
testcase_29 AC 224 ms
130,944 KB
testcase_30 AC 54 ms
55,808 KB
testcase_31 AC 411 ms
213,632 KB
testcase_32 AC 211 ms
130,816 KB
testcase_33 AC 52 ms
55,296 KB
testcase_34 AC 228 ms
109,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
sys.setrecursionlimit(10**6)
# input = sys.stdin.readline

N,K = map(int,input().split())

M1 = int(input())
if M1!=0:
    A = list(map(int,input().split()))
else:
    A = set([])
M2 = int(input())
if M2!=0:
    B = list(map(int,input().split()))
else:
    B = set([])
B =set(B)
A = set(A)
dp = [-1]*(N+1)
dp[0]=1
def f(x):
    if dp[x]!=-1:
        return dp[x]
    if x in A:
        dp[x] = 0
        return dp[x]
    if x in B:
        dp[x] = 1
        return 1
    if x>=K:
        dp[x] = max(f(x-1),f(x-K))
        return dp[x]
    dp[x] = f(x-1)
    return dp[x]
if f(N):
    print('Yes')
else:
    print('No')
0