結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-05 17:17:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 692 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 94,948 KB
最終ジャッジ日時 2024-05-10 07:25:20
合計ジャッジ時間 4,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,168 KB
testcase_01 AC 44 ms
55,296 KB
testcase_02 AC 43 ms
55,552 KB
testcase_03 AC 84 ms
93,568 KB
testcase_04 AC 48 ms
63,488 KB
testcase_05 AC 87 ms
94,948 KB
testcase_06 AC 61 ms
76,544 KB
testcase_07 AC 48 ms
66,560 KB
testcase_08 AC 49 ms
67,712 KB
testcase_09 AC 56 ms
74,880 KB
testcase_10 AC 68 ms
90,112 KB
testcase_11 AC 63 ms
79,104 KB
testcase_12 AC 50 ms
68,096 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 44 ms
57,088 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 43 ms
55,552 KB
testcase_22 RE -
testcase_23 AC 45 ms
56,576 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 44 ms
55,808 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 43 ms
55,936 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

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
# input = sys.stdin.readline

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

M1 = int(input())
A = list(map(int,input().split()))
M2 = int(input())
B = list(map(int,input().split()))
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