結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー とりゐとりゐ
提出日時 2023-08-04 22:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 108,088 KB
最終ジャッジ日時 2024-05-10 07:20:49
合計ジャッジ時間 3,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 72 ms
93,200 KB
testcase_04 AC 48 ms
63,508 KB
testcase_05 AC 91 ms
108,088 KB
testcase_06 AC 56 ms
76,544 KB
testcase_07 AC 45 ms
65,536 KB
testcase_08 AC 48 ms
66,432 KB
testcase_09 AC 58 ms
74,496 KB
testcase_10 AC 69 ms
89,472 KB
testcase_11 AC 56 ms
78,336 KB
testcase_12 AC 50 ms
67,712 KB
testcase_13 AC 49 ms
61,280 KB
testcase_14 AC 51 ms
60,416 KB
testcase_15 AC 44 ms
60,032 KB
testcase_16 AC 46 ms
60,544 KB
testcase_17 AC 50 ms
61,696 KB
testcase_18 AC 47 ms
60,416 KB
testcase_19 AC 48 ms
61,696 KB
testcase_20 AC 46 ms
60,460 KB
testcase_21 AC 39 ms
59,264 KB
testcase_22 AC 43 ms
61,184 KB
testcase_23 AC 43 ms
60,160 KB
testcase_24 AC 43 ms
61,696 KB
testcase_25 AC 45 ms
60,632 KB
testcase_26 AC 43 ms
60,160 KB
testcase_27 AC 47 ms
61,440 KB
testcase_28 AC 47 ms
61,440 KB
testcase_29 AC 42 ms
60,416 KB
testcase_30 AC 42 ms
59,904 KB
testcase_31 AC 50 ms
62,080 KB
testcase_32 AC 43 ms
59,392 KB
testcase_33 AC 33 ms
52,224 KB
testcase_34 AC 42 ms
60,764 KB
権限があれば一括ダウンロードができます

ソースコード

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