結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー グミグミ
提出日時 2023-08-04 21:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 100,084 KB
最終ジャッジ日時 2024-12-20 02:32:06
合計ジャッジ時間 3,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,352 KB
testcase_01 AC 38 ms
53,480 KB
testcase_02 AC 37 ms
53,376 KB
testcase_03 AC 77 ms
87,452 KB
testcase_04 AC 49 ms
63,808 KB
testcase_05 AC 93 ms
100,084 KB
testcase_06 AC 60 ms
73,708 KB
testcase_07 AC 50 ms
64,768 KB
testcase_08 AC 57 ms
67,648 KB
testcase_09 AC 65 ms
72,612 KB
testcase_10 AC 79 ms
86,024 KB
testcase_11 AC 63 ms
74,732 KB
testcase_12 AC 55 ms
66,636 KB
testcase_13 AC 52 ms
62,028 KB
testcase_14 AC 57 ms
60,748 KB
testcase_15 AC 50 ms
62,100 KB
testcase_16 AC 47 ms
61,476 KB
testcase_17 AC 55 ms
62,436 KB
testcase_18 AC 52 ms
61,548 KB
testcase_19 AC 54 ms
62,808 KB
testcase_20 AC 51 ms
60,196 KB
testcase_21 AC 42 ms
59,020 KB
testcase_22 AC 50 ms
61,324 KB
testcase_23 AC 48 ms
60,368 KB
testcase_24 AC 51 ms
61,372 KB
testcase_25 AC 50 ms
59,692 KB
testcase_26 AC 52 ms
60,840 KB
testcase_27 AC 55 ms
61,288 KB
testcase_28 AC 55 ms
62,248 KB
testcase_29 AC 49 ms
59,888 KB
testcase_30 AC 44 ms
60,728 KB
testcase_31 AC 57 ms
62,012 KB
testcase_32 AC 48 ms
58,484 KB
testcase_33 AC 38 ms
52,816 KB
testcase_34 AC 49 ms
62,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
	n,k=map(int,input().split())
	m1=int(input())
	a=set(map(int,input().split()))
	m2=int(input())
	b=set(map(int,input().split()))
	
	dp=[False]*(n+1)
	dp[0]=True

	for i in range(1,n+1):
		if i in a:
			dp[i] = False
		elif i in b:
			dp[i] = True
		elif dp[i-1]:
			dp[i] = True
		elif 0 <= i-k < n+1:
			if dp[i-k]:
				dp[i] = True
		else:
			dp[i] = False
	
	ans = dp[n]
	print('Yes' if ans else 'No')

if __name__ == "__main__":
	main()
0