結果

問題 No.53 悪の漸化式
ユーザー HiroakiSoftwareHiroakiSoftware
提出日時 2014-10-30 23:29:46
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 25,096 KB
実行使用メモリ 7,172 KB
最終ジャッジ日時 2023-08-28 23:30:28
合計ジャッジ時間 7,776 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/*
yukicoder No.53
作成者:ヒロソフ
*/
#include <stdio.h>
double Calc(int k);
int main(void) {
	int N;
	scanf("%d", &N);
	printf("%.8f\n", Calc(N));
	return 0;
}
double Calc(int k) {
	if (k == 0) return 4;
	else if (k == 1) return 3;
	else return (19.0 * Calc(k - 1) - 12.0 * Calc(k - 2)) / 4.0;
}
0