結果

問題 No.53 悪の漸化式
ユーザー diginatudiginatu
提出日時 2014-10-31 01:07:49
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 2,978 ms
コンパイル使用メモリ 149,504 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 01:28:24
合計ジャッジ時間 3,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import std.stdio, std.conv, std.math, std.string, std.range;
void main(){
  auto N = readln().strip().to!int;
  auto rec = recurrence!("(19*a[n-1] - 12*a[n-2])/4.to!real")(4.0, 3.0);
  rec.popFrontN(N);
  writefln("%1.10f", rec.front());
}
0