結果

問題 No.1465 Archaea
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-02 21:57:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 147,140 KB
最終ジャッジ日時 2024-12-24 01:18:16
合計ジャッジ時間 3,331 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**9)
input = sys.stdin.buffer.readline

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

INF = 10**18
memo = {}
def dfs(n):
    if n == 1:
        return 0
    if n in memo:
        return memo[n]
    if n <= 0:
        return INF
    if n%2 == 0:
        res = min(1+dfs(n-3), 1+dfs(n//2))
    else:
        res = 1+dfs(n-3)
    memo[n] = res
    return res
x = dfs(n)
#print(x)
if x <= k:
    print('YES')
else:
    print('NO')
0