結果

問題 No.554 recurrence formula
ユーザー ohreitetsuohreitetsu
提出日時 2017-11-13 17:38:11
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 376 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 57,904 KB
実行使用メモリ 16,712 KB
最終ジャッジ日時 2024-11-25 00:27:36
合計ジャッジ時間 34,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 2 ms
10,016 KB
testcase_02 AC 2 ms
10,016 KB
testcase_03 AC 2 ms
9,892 KB
testcase_04 AC 1 ms
13,636 KB
testcase_05 AC 1 ms
9,888 KB
testcase_06 AC 1 ms
13,636 KB
testcase_07 AC 1 ms
9,888 KB
testcase_08 AC 1 ms
13,636 KB
testcase_09 AC 1 ms
9,888 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef unsigned long long UL;
UL MOD=1000000007;
UL f(int n){
	if (n==1){
		return 1;
	}
	int i;
	UL x=0;
	int startI;
	if (n%2==0){
		startI=1;
	}else{
		startI=2;
	}
	for (i=startI;i<=n-1;i+=2){
		x+=f(i);
	}
	x*=n;
	x%=MOD;
	return x;
}
int main(int argc, char* argv[])
{
	int n;
	cin>>n;
	UL aw=f(n);
	cout<<aw<<endl;
	return 0;
}
0