結果

問題 No.1465 Archaea
ユーザー qibqib
提出日時 2022-10-22 17:58:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 403 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,600 KB
最終ジャッジ日時 2024-07-01 19:05:00
合計ジャッジ時間 2,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 46 ms
53,248 KB
testcase_04 AC 45 ms
53,376 KB
testcase_05 AC 45 ms
53,248 KB
testcase_06 RE -
testcase_07 AC 69 ms
70,528 KB
testcase_08 AC 46 ms
53,248 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 73 ms
73,216 KB
testcase_12 AC 53 ms
60,800 KB
testcase_13 AC 94 ms
84,480 KB
testcase_14 RE -
testcase_15 AC 47 ms
54,016 KB
testcase_16 AC 53 ms
61,440 KB
testcase_17 AC 96 ms
84,864 KB
testcase_18 RE -
testcase_19 AC 75 ms
75,008 KB
testcase_20 RE -
testcase_21 AC 100 ms
85,600 KB
testcase_22 AC 99 ms
85,504 KB
testcase_23 AC 45 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, k = map(int, input().split())

dp = {}
dq = deque()
dq.append(n)
dp[n] = 0
while len(dq) > 0:
  cur = dq.pop()

  nxts = []
  if cur - 3 >= 1:
    nxts.append(cur - 3)
  if cur % 2 == 0:
    nxts.append(cur // 2)

  for nxt in nxts:
    if dp.get(nxt, None) is None:
      dp[nxt] = dp[cur] + 1
      dq.appendleft(nxt)

if dp[1] <= k:
  print("YES")
else:
	print("NO")
0