結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー keidenkeiden
提出日時 2024-09-26 15:38:07
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 279 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 260,636 KB
最終ジャッジ日時 2024-09-26 15:38:12
合計ジャッジ時間 4,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
26,112 KB
testcase_01 AC 258 ms
40,832 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

(use util.stream)

(define (fib-mod m)
  (stream-cons 0
    (stream-cons 1
      (stream-map (lambda (x y) (modulo (+ x y) m))
        (fib-mod m)
        (stream-cdr (fib-mod m))))))

(define yuki526
  (let* ((n (read)) (m (read)))
    (print (stream-ref (fib-mod m) (- n 1)))))
0