#abc273a. A - A Recursive Function
A - A Recursive Function
Score : points
问题描述
一个函数 定义在非负整数 上,满足以下条件:
- ;
- 对于所有正整数 ,有 。
求 的值。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
A function defined for non-negative integer satisfies the following conditions:
- ;
- for all positive integers .
Find .
Constraints
- is an integer such that .
Input
The input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1
2
Sample Output 1
2
We have $f(2) = 2 \times f(1) = 2 \times 1 \times f(0) = 2 \times 1 \times 1 = 2$.
Sample Input 2
3
Sample Output 2
6
We have .
Sample Input 3
0
Sample Output 3
1
Sample Input 4
10
Sample Output 4
3628800
update @ 2024/3/10 11:29:27