結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー とりゐとりゐ
提出日時 2023-08-04 22:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 108,380 KB
最終ジャッジ日時 2024-12-20 02:41:16
合計ジャッジ時間 3,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

n,k=map(int,input().split())
m1=int(input())
a=set(list(map(int,input().split())))
m2=int(input())
b=set(list(map(int,input().split())))

dp=[0]*(n+1)
for i in range(1,n+1):
  if i in a:
    dp[i]=1
    continue
  if i in b:
    dp[i]=0
    continue
  dp[i]=dp[i-1]
  if i>=k:
    dp[i]&=dp[i-k]

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