結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー ducktailducktail
提出日時 2017-12-28 21:01:15
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-12-21 09:25:37
合計ジャッジ時間 2,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,000 KB
testcase_01 AC 28 ms
16,128 KB
testcase_02 AC 25 ms
15,872 KB
testcase_03 AC 26 ms
16,000 KB
testcase_04 AC 29 ms
15,744 KB
testcase_05 AC 26 ms
15,744 KB
testcase_06 AC 27 ms
16,000 KB
testcase_07 AC 26 ms
15,872 KB
testcase_08 AC 28 ms
16,128 KB
testcase_09 AC 34 ms
15,872 KB
testcase_10 AC 91 ms
15,872 KB
testcase_11 AC 347 ms
15,872 KB
testcase_12 AC 352 ms
15,872 KB
testcase_13 AC 343 ms
15,872 KB
testcase_14 AC 352 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (fib n m)
  (let loop ([x n]
             [a 0]
             [b 1])
    (if (= x 1)
        a
        (loop (- x 1) b (remainder (+ a b) m)))))

(define (main args)
  (let* ([n (read)]
         [m (read)])
    (print (fib n m)))
  0)
0