結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー keidenkeiden
提出日時 2024-09-27 13:36:31
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-09-27 13:36:46
合計ジャッジ時間 2,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
22,272 KB
testcase_01 AC 58 ms
22,144 KB
testcase_02 AC 60 ms
22,272 KB
testcase_03 AC 60 ms
22,144 KB
testcase_04 AC 59 ms
22,144 KB
testcase_05 AC 59 ms
22,272 KB
testcase_06 AC 60 ms
22,144 KB
testcase_07 AC 59 ms
22,144 KB
testcase_08 AC 61 ms
22,272 KB
testcase_09 AC 74 ms
22,272 KB
testcase_10 AC 59 ms
22,144 KB
testcase_11 AC 59 ms
22,272 KB
testcase_12 AC 60 ms
22,144 KB
testcase_13 AC 63 ms
22,272 KB
testcase_14 AC 62 ms
22,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use srfi.60)

(define (fast-fibo i m)
  (define (helper ls a b)
    (if (null? ls)
      a
      (if (car ls)
        (helper (cdr ls)
          (modulo (+ (* a a) (* b b)) m)
          (modulo (* b (+ a a b)) m))
        (helper (cdr ls)
          (modulo (* a (- (+ b b) a)) m)
          (modulo (+ (* a a) (* b b)) m)))))
  (helper (integer->list i) 0 1))

(define yuki526 (display (fast-fibo (- (read) 1) (read))))
0