結果

問題 No.53 悪の漸化式
ユーザー %20%20
提出日時 2016-12-26 03:45:19
言語 Perl
(5.38.2)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 84 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 14,112 KB
実行使用メモリ 14,484 KB
最終ジャッジ日時 2023-08-21 09:04:37
合計ジャッジ時間 3,363 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
14,428 KB
testcase_01 AC 76 ms
14,364 KB
testcase_02 AC 76 ms
14,316 KB
testcase_03 AC 76 ms
14,276 KB
testcase_04 AC 76 ms
14,288 KB
testcase_05 AC 75 ms
14,276 KB
testcase_06 AC 75 ms
14,320 KB
testcase_07 AC 76 ms
14,268 KB
testcase_08 AC 76 ms
14,204 KB
testcase_09 AC 76 ms
14,264 KB
testcase_10 AC 77 ms
14,340 KB
testcase_11 AC 76 ms
14,304 KB
testcase_12 AC 76 ms
14,484 KB
testcase_13 AC 76 ms
14,268 KB
testcase_14 AC 77 ms
14,300 KB
testcase_15 AC 76 ms
14,172 KB
testcase_16 AC 76 ms
14,456 KB
testcase_17 AC 77 ms
14,432 KB
testcase_18 AC 76 ms
14,296 KB
testcase_19 AC 76 ms
14,204 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use bignum;
@A=(4,3);$A[$_]=4.75*$A[$_-1]-3*$A[$_-2]for 2..100;
printf'%.14f',$A[<>]
0