結果

問題 No.53 悪の漸化式
ユーザー neko_the_shadowneko_the_shadow
提出日時 2017-01-14 21:18:38
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 588 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-06-01 08:24:05
合計ジャッジ時間 1,786 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

(define *memo* (make-hash-table))


(define (A k)
  (if (hash-table-exists? *memo* k)
    (hash-table-get *memo* k)
    (let ((val (cond ((= k 0) 4)
                     ((= k 1) 3)
                     (else (/ (- (* 19 (A (- k 1)))
                                 (* 12 (A (- k 2))))
                               4)))))
        (hash-table-put! *memo* k val)
        val)))


(let* ((k (read))
       (float (number->string (exact->inexact (A k))))
       (index (string-scan float #\e))
       (answer (if index (substring float 0 index) float)))
    (display answer)
    (newline))
0