提交时间:2023-11-25 08:08:34

运行 ID: 111792

# include <iostream> using namespace std ; long long cf ( int x ) { if ( x < 6 ) { return x ; } return cf ( x - 3 ) * 3 ; } int main ( ) { long long n ; cin >> n ; cout << cf ( n ) ; return 0 ; }