結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー miho-4miho-4
提出日時 2023-08-04 21:44:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 851,880 KB
最終ジャッジ日時 2024-05-10 07:15:46
合計ジャッジ時間 10,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 WA -
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 128 ms
100,736 KB
testcase_04 AC 66 ms
67,200 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 74 ms
73,728 KB
testcase_09 AC 102 ms
89,984 KB
testcase_10 AC 120 ms
98,688 KB
testcase_11 WA -
testcase_12 AC 87 ms
79,104 KB
testcase_13 AC 438 ms
301,696 KB
testcase_14 MLE -
testcase_15 AC 138 ms
105,728 KB
testcase_16 AC 139 ms
120,192 KB
testcase_17 AC 580 ms
380,704 KB
testcase_18 AC 345 ms
252,928 KB
testcase_19 MLE -
testcase_20 AC 612 ms
387,612 KB
testcase_21 AC 65 ms
64,768 KB
testcase_22 AC 296 ms
222,592 KB
testcase_23 AC 101 ms
83,840 KB
testcase_24 AC 212 ms
158,976 KB
testcase_25 MLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=int(input())
A=list(map(int,input().split()))
b=int(input())
B=list(map(int,input().split()))
SA,SB=set(A),set(B)
dp=[[0,0] for _ in range(n+1)]
dp[0][0]=1

for i in range(n):
  if i in SA:
    if dp[i][0]:
      dp[i][0]=0
      dp[i][1]=1
  if i in SB:
    if dp[i][1]:
      dp[i][1]=0
      dp[i][0]=1
      
  dp[i+1][0]+=dp[i][0]
  dp[i+1][0]+=dp[i][1]
  if i+k<=n:
    dp[i+k][0]+=dp[i][0]
    dp[i+k][1]+=dp[i][1]

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