結果

問題 No.53 悪の漸化式
ユーザー ゴリポン先生ゴリポン先生
提出日時 2024-10-02 15:50:58
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 324 bytes
コンパイル時間 4,899 ms
コンパイル使用メモリ 213,676 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-10-02 15:51:09
合計ジャッジ時間 5,556 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

module main;

import std;

real A(int x)
{
	static real[int] memo;
	if (x == 0) return 4.0;
	if (x == 1) return 3.0;
	if (x !in memo) {
		memo[x] = 19.0 / 4 * A(x - 1) - 3.0 * A(x - 2);
	}
	return memo[x];
}

void main()
{
	// 入力
	auto N = readln.chomp.to!int;
	// 答えの計算と出力
	
	writefln("%.12f", A(N));
}
0