結果

問題 No.2402 Dirty Stairs and Shoes
ユーザー irohasu19_irohasu19_
提出日時 2023-08-09 03:59:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 97,920 KB
最終ジャッジ日時 2024-05-10 07:27:46
合計ジャッジ時間 3,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 96 ms
92,684 KB
testcase_04 AC 52 ms
68,844 KB
testcase_05 AC 141 ms
97,920 KB
testcase_06 AC 68 ms
84,728 KB
testcase_07 AC 52 ms
70,912 KB
testcase_08 AC 59 ms
74,240 KB
testcase_09 AC 78 ms
86,016 KB
testcase_10 AC 93 ms
91,640 KB
testcase_11 AC 56 ms
79,360 KB
testcase_12 AC 49 ms
68,992 KB
testcase_13 AC 67 ms
86,400 KB
testcase_14 AC 81 ms
93,436 KB
testcase_15 AC 66 ms
86,016 KB
testcase_16 AC 47 ms
68,140 KB
testcase_17 AC 72 ms
89,228 KB
testcase_18 AC 66 ms
85,184 KB
testcase_19 AC 76 ms
91,416 KB
testcase_20 AC 72 ms
88,652 KB
testcase_21 AC 42 ms
61,492 KB
testcase_22 AC 47 ms
71,936 KB
testcase_23 AC 46 ms
70,784 KB
testcase_24 AC 47 ms
71,936 KB
testcase_25 AC 75 ms
90,624 KB
testcase_26 AC 48 ms
71,936 KB
testcase_27 AC 79 ms
91,392 KB
testcase_28 AC 67 ms
86,912 KB
testcase_29 AC 46 ms
71,680 KB
testcase_30 AC 43 ms
62,080 KB
testcase_31 AC 76 ms
91,776 KB
testcase_32 AC 46 ms
70,144 KB
testcase_33 AC 35 ms
52,224 KB
testcase_34 AC 45 ms
68,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
m_1 = int(input())
A = list(map(int, input().split()))
m_2 = int(input())
B = list(map(int, input().split()))
dp = [[0] * 2 for _ in range(n+1)]
dp[0][0] = True; dp[0][1] = False;
for a in A:
  dp[a][0] = False; dp[a][1] = True
for b in B:
  dp[b][0] = True; dp[b][1] = False;

for i in range(n+1):
  if type(dp[i][0]) == bool:
    continue
  else:
    if i-k >= 0:
      if dp[i-k][0]==True or dp[i-1][0]==True:
        dp[i][0] = True; dp[i][1] = False
      else: 
        dp[i][0] = False; dp[i][1] = True
    else:
      if dp[i-1][0] == True:
        dp[i][0] = True; dp[i][1] = False
      else:
        dp[i][0] = False; dp[i][1] = True


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