結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,212 KB
testcase_01 AC 38 ms
52,284 KB
testcase_02 AC 38 ms
52,992 KB
testcase_03 AC 108 ms
92,860 KB
testcase_04 AC 61 ms
69,720 KB
testcase_05 AC 167 ms
97,756 KB
testcase_06 AC 83 ms
84,912 KB
testcase_07 AC 61 ms
71,156 KB
testcase_08 AC 66 ms
74,380 KB
testcase_09 AC 90 ms
85,944 KB
testcase_10 AC 116 ms
91,220 KB
testcase_11 AC 65 ms
79,380 KB
testcase_12 AC 55 ms
70,824 KB
testcase_13 AC 77 ms
86,128 KB
testcase_14 AC 92 ms
93,264 KB
testcase_15 AC 76 ms
85,924 KB
testcase_16 AC 51 ms
68,084 KB
testcase_17 AC 82 ms
89,092 KB
testcase_18 AC 73 ms
85,292 KB
testcase_19 AC 86 ms
91,100 KB
testcase_20 AC 81 ms
88,700 KB
testcase_21 AC 47 ms
61,860 KB
testcase_22 AC 53 ms
73,348 KB
testcase_23 AC 53 ms
70,784 KB
testcase_24 AC 53 ms
71,488 KB
testcase_25 AC 84 ms
90,480 KB
testcase_26 AC 53 ms
71,792 KB
testcase_27 AC 85 ms
91,856 KB
testcase_28 AC 77 ms
86,608 KB
testcase_29 AC 55 ms
72,384 KB
testcase_30 AC 49 ms
63,892 KB
testcase_31 AC 87 ms
91,808 KB
testcase_32 AC 52 ms
70,452 KB
testcase_33 AC 38 ms
53,556 KB
testcase_34 AC 52 ms
69,744 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