結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー miho-4miho-4
提出日時 2023-08-04 21:49:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 111,872 KB
最終ジャッジ日時 2024-05-10 07:18:23
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 114 ms
100,996 KB
testcase_04 AC 64 ms
72,576 KB
testcase_05 AC 148 ms
111,872 KB
testcase_06 AC 84 ms
88,896 KB
testcase_07 AC 63 ms
75,520 KB
testcase_08 AC 65 ms
74,752 KB
testcase_09 AC 95 ms
89,620 KB
testcase_10 AC 114 ms
98,180 KB
testcase_11 AC 83 ms
90,588 KB
testcase_12 AC 71 ms
78,844 KB
testcase_13 AC 53 ms
71,936 KB
testcase_14 AC 86 ms
92,992 KB
testcase_15 AC 54 ms
71,296 KB
testcase_16 AC 48 ms
66,304 KB
testcase_17 AC 57 ms
74,084 KB
testcase_18 AC 56 ms
70,656 KB
testcase_19 AC 81 ms
91,064 KB
testcase_20 AC 55 ms
73,728 KB
testcase_21 AC 44 ms
61,312 KB
testcase_22 AC 52 ms
67,840 KB
testcase_23 AC 53 ms
67,712 KB
testcase_24 AC 51 ms
68,480 KB
testcase_25 AC 81 ms
90,624 KB
testcase_26 AC 50 ms
67,712 KB
testcase_27 AC 82 ms
91,236 KB
testcase_28 AC 55 ms
72,192 KB
testcase_29 AC 51 ms
67,712 KB
testcase_30 AC 43 ms
61,824 KB
testcase_31 AC 82 ms
91,736 KB
testcase_32 AC 50 ms
66,688 KB
testcase_33 AC 36 ms
51,968 KB
testcase_34 AC 51 ms
66,688 KB
権限があれば一括ダウンロードができます

ソースコード

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
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
      
  if dp[i][0]:dp[i+1][0]=1
  if dp[i][1]:dp[i+1][1]=1
  if i+k<=n:
    if dp[i][0]:dp[i+k][0]=1
    if dp[i][1]:dp[i+k][1]=1

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