結果

問題 No.1465 Archaea
ユーザー wolgnikwolgnik
提出日時 2020-07-28 13:41:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 90,688 KB
最終ジャッジ日時 2024-06-06 10:23:52
合計ジャッジ時間 2,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,248 KB
testcase_01 AC 45 ms
53,248 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 41 ms
53,376 KB
testcase_04 AC 40 ms
53,376 KB
testcase_05 AC 41 ms
53,356 KB
testcase_06 AC 41 ms
53,760 KB
testcase_07 AC 73 ms
74,240 KB
testcase_08 AC 41 ms
53,248 KB
testcase_09 AC 80 ms
78,976 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 75 ms
76,288 KB
testcase_12 AC 47 ms
60,032 KB
testcase_13 AC 107 ms
89,344 KB
testcase_14 AC 82 ms
77,056 KB
testcase_15 AC 44 ms
53,888 KB
testcase_16 AC 47 ms
60,160 KB
testcase_17 AC 104 ms
90,368 KB
testcase_18 AC 60 ms
66,816 KB
testcase_19 AC 80 ms
79,360 KB
testcase_20 AC 100 ms
87,544 KB
testcase_21 AC 112 ms
90,260 KB
testcase_22 AC 114 ms
90,688 KB
testcase_23 AC 41 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque as dq
from collections import defaultdict as dd
input = sys.stdin.readline
N, K  = map(int, input().split())
Q = dq([1])
d = dd(lambda: 10 ** 10)
d[1] = 0
while len(Q):
  x = Q.popleft()
  if x + 3 <= N and (d[x + 3] > d[x] + 1):
    d[x + 3] = d[x] + 1
    Q.append(x + 3)
  if x * 2 <= N and (d[x * 2] > d[x] + 1):
    d[x * 2] = d[x] + 1
    Q.append(x * 2)
if d[N] <= K: print("YES")
else: print("NO")
0