結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 20:32:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 606 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 98,628 KB
最終ジャッジ日時 2024-09-09 20:32:31
合計ジャッジ時間 4,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 38 ms
52,656 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 99 ms
98,628 KB
testcase_06 AC 62 ms
78,080 KB
testcase_07 AC 55 ms
70,812 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 61 ms
78,208 KB
testcase_12 WA -
testcase_13 AC 55 ms
72,552 KB
testcase_14 AC 95 ms
94,700 KB
testcase_15 WA -
testcase_16 AC 52 ms
66,784 KB
testcase_17 AC 57 ms
75,144 KB
testcase_18 AC 53 ms
72,152 KB
testcase_19 AC 82 ms
92,796 KB
testcase_20 AC 54 ms
74,492 KB
testcase_21 WA -
testcase_22 AC 52 ms
68,616 KB
testcase_23 WA -
testcase_24 AC 52 ms
69,120 KB
testcase_25 WA -
testcase_26 AC 50 ms
68,156 KB
testcase_27 AC 55 ms
76,620 KB
testcase_28 AC 53 ms
73,880 KB
testcase_29 AC 50 ms
67,988 KB
testcase_30 AC 50 ms
63,376 KB
testcase_31 AC 82 ms
93,188 KB
testcase_32 AC 52 ms
67,816 KB
testcase_33 AC 37 ms
53,200 KB
testcase_34 AC 50 ms
67,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
s=[0]*(n+1)
m1=int(input())
a=list(map(int,input().split()))
for i in a:
	s[i]=1
m2=int(input())
b=list(map(int,input().split()))
for i in b:
	s[i]=1
q=[[0,0] for i in range(n+1)]
q[0][0]=1
for i in range(1,n+1):
	if s[i]==0:
		q[i][0]|=q[i-1][0]
		q[i][1]|=q[i-1][1]
		if i-k>=0:
			q[i][0]|=q[i-k][0]
			q[i][1]|=q[i-k][1]
	if s[i]==1:
		q[i][1]|=q[i-1][0]
		q[i][1]|=q[i-1][1]
		if i-k>=0:
			q[i][1]|=q[i-k][0]
			q[i][1]|=q[i-k][1]
	if s[i]==2:
		q[i][0]|=q[i-1][0]
		q[i][0]|=q[i-1][1]
		if i-k>=0:
			q[i][0]|=q[i-k][0]
			q[i][0]|=q[i-k][1]
print(["No","Yes"][q[n][0]])
0