結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー MottchanMottchan
提出日時 2023-08-04 21:55:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 622 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 91,220 KB
最終ジャッジ日時 2024-05-10 07:19:34
合計ジャッジ時間 4,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,776 KB
testcase_01 AC 49 ms
54,528 KB
testcase_02 AC 42 ms
54,272 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,k= map(int,input().split())

m1 = int(input())
lm1 = list(map(int,input().split()))
m2= int(input())
lm2 = list(map(int,input().split()))

dp=[False]*(n+1)
dp[0]=True

for i in range(1,n+1):
    dp[i] = dp[i-1]
    if i-k >= 0:
        dp[i] = dp[i-k]
    if lm1.count(i) == 1:
        dp[i] = False
    if lm2.count(i) == 1:
        dp[i] = True

if dp[n]:
    print('Yes')
else:
    print('No')
0