#A1006. 神秘的递归
神秘的递归
题目背景
$$f(x) = \left\{\begin{array}{l} 0 & x\le 0 \\ 1& x=1\\3f(\frac{x}{2} )-1& x>1 \space and\space x\mod 2=0\\ 3f(\frac{x+1}{2} )-1&x>1 \space and\space x\mod 2=1\\ \end{array}\right. $$题目描述
根据“题目背景”的递归公式来求出
输入
输入
输出
输出
样例
2
2
提示
相关
在以下作业中: