結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー mono_0812mono_0812
提出日時 2023-08-04 21:38:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,062 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,488 KB
最終ジャッジ日時 2024-05-10 07:11:29
合計ジャッジ時間 7,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
12,032 KB
testcase_01 WA -
testcase_02 AC 41 ms
12,288 KB
testcase_03 AC 246 ms
26,604 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 115 ms
16,640 KB
testcase_09 WA -
testcase_10 AC 254 ms
26,812 KB
testcase_11 WA -
testcase_12 AC 82 ms
15,232 KB
testcase_13 AC 243 ms
22,016 KB
testcase_14 AC 397 ms
28,160 KB
testcase_15 WA -
testcase_16 AC 119 ms
15,872 KB
testcase_17 AC 296 ms
24,064 KB
testcase_18 AC 229 ms
20,992 KB
testcase_19 AC 336 ms
26,240 KB
testcase_20 AC 271 ms
23,936 KB
testcase_21 WA -
testcase_22 AC 155 ms
17,920 KB
testcase_23 WA -
testcase_24 AC 149 ms
17,664 KB
testcase_25 AC 333 ms
25,856 KB
testcase_26 AC 167 ms
18,304 KB
testcase_27 AC 325 ms
26,368 KB
testcase_28 AC 250 ms
22,272 KB
testcase_29 AC 160 ms
18,048 KB
testcase_30 WA -
testcase_31 AC 338 ms
26,752 KB
testcase_32 AC 163 ms
17,664 KB
testcase_33 WA -
testcase_34 AC 123 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

############################################################################################
import bisect,collections,copy,heapq,itertools,math,string,sys,queue,time,random
from decimal import Decimal
def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return list(map(int,input().split()))
def LIIS(): return list(map(int,input().split()))

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

import math

def prime_numbers(n):
    prime = [True for i in range(n+1)]
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False
    numbers=[]
    for i in range(2,n+1):
        if prime[i]:
            numbers.append(i)

    return numbers

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])
 
    if temp!=1:
        arr.append([temp, 1])
 
    if arr==[]:
        arr.append([n, 1])
 
    return arr
 
INF=float("inf")
MOD=998244353
MOD2=10**9+7
sys.setrecursionlimit(500005)
def bit_count(x):
    return bin(x).count("1")
def yesno(f):
    if f:print("Yes")
    else:print("No")
####################################################
n,k=IIS()
m1=II()
A=set(LIIS())
m2=II()
B=set(LIIS())
dp=[[0]*2 for i in range(n+1)]
dp[0][0]=1

for i in range(n):
    for j in (i+1,i+k):
        if j<=n:
            if j in A:
                dp[j][0]|=dp[i][0]|dp[i][1]
            elif j in B:
                dp[j][1]|=dp[i][0]|dp[i][1]
            else:
                dp[j][1]|=dp[i][1]
                dp[j][0]|=dp[i][0]

yesno(dp[n][0])
0