結果

問題 No.642 Two Operations No.1
ユーザー tnodinotnodino
提出日時 2022-05-06 18:49:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 296 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 278,912 KB
最終ジャッジ日時 2024-07-05 19:54:28
合計ジャッジ時間 7,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 WA -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
setrecursionlimit(10**6)

def dfs(x):
    if x in dic:
        return dic[x]
    if N % 2 == 0:
        dic[x] = dfs(x//2) + 1
        return dic[x]
    else:
        dic[x] = dfs(x-1) + 1
        return dic[x]

N = int(input())
dic = {}
dic[1] = 0
print(dfs(N))
0