結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー timitimi
提出日時 2023-08-04 21:37:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 123,240 KB
最終ジャッジ日時 2024-12-20 02:30:09
合計ジャッジ時間 4,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,768 KB
testcase_01 AC 38 ms
52,756 KB
testcase_02 AC 40 ms
52,552 KB
testcase_03 AC 157 ms
99,040 KB
testcase_04 AC 86 ms
79,024 KB
testcase_05 AC 209 ms
123,240 KB
testcase_06 AC 107 ms
93,328 KB
testcase_07 AC 91 ms
78,924 KB
testcase_08 AC 119 ms
80,848 KB
testcase_09 AC 125 ms
92,744 KB
testcase_10 AC 161 ms
96,404 KB
testcase_11 AC 108 ms
91,968 KB
testcase_12 AC 97 ms
79,368 KB
testcase_13 AC 92 ms
86,380 KB
testcase_14 AC 109 ms
93,444 KB
testcase_15 AC 63 ms
73,188 KB
testcase_16 AC 63 ms
70,788 KB
testcase_17 AC 101 ms
88,856 KB
testcase_18 AC 76 ms
74,748 KB
testcase_19 AC 110 ms
91,356 KB
testcase_20 AC 95 ms
88,236 KB
testcase_21 AC 48 ms
62,100 KB
testcase_22 AC 67 ms
72,280 KB
testcase_23 AC 58 ms
68,776 KB
testcase_24 AC 70 ms
73,960 KB
testcase_25 AC 98 ms
90,824 KB
testcase_26 AC 69 ms
72,996 KB
testcase_27 AC 105 ms
91,484 KB
testcase_28 AC 96 ms
86,972 KB
testcase_29 AC 63 ms
70,936 KB
testcase_30 AC 52 ms
63,108 KB
testcase_31 AC 111 ms
91,708 KB
testcase_32 AC 63 ms
70,544 KB
testcase_33 AC 39 ms
52,616 KB
testcase_34 AC 67 ms
71,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
M=int(input())
A=list(map(int, input().split()))
L=int(input())
B=list(map(int, input().split()))
dp=[[-1,-1] for i in range(N+K+1)]
dp[0]=[1,-1]
A,B=set(A),set(B)
for i in range(N):
  if i+1 in A:
    if dp[i][0]==1:
      dp[i+1][1]=1
    if dp[i][1]==1:
      dp[i+1][1]=1
  elif i+1 in B:
    if dp[i][0]==1:
      dp[i+1][0]=1
    if dp[i][1]==1:
      dp[i+1][0]=1
  else:
    if dp[i][0]==1:
      dp[i+1][0]=1
    if dp[i][1]==1:
      dp[i+1][1]=1
      
  if i+K in A:
    if dp[i][0]==1:
      dp[i+K][1]=1
    if dp[i][1]==1:
      dp[i+K][1]=1
  elif i+K in B:
    if dp[i][0]==1:
      dp[i+K][0]=1
    if dp[i][1]==1:
      dp[i+K][0]=1
  else:
    if dp[i][0]==1:
      dp[i+K][0]=1
    if dp[i][1]==1:
      dp[i+K][1]=1

if dp[N][0]==1:
  print('Yes')
else:
  print('No')
0