結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー CrystalCrystal
提出日時 2024-10-05 00:08:13
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 394 bytes
コンパイル時間 10,095 ms
コンパイル使用メモリ 295,500 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-05 00:08:26
合計ジャッジ時間 10,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def fib_rec(a, b, p, q, count, m)
  if count == 0
    return b % m
  elsif count.even?
    fib_rec(a, b, (p * p + q * q) % m, (2 * p * q + q * q) % m, count // 2, m)
  else
    fib_rec((b * q + a * q + a * p) % m, (b * p + a * q) % m, p, q, count - 1, m)
  end
end

def fib(n, m)
  fib_rec(1, 0, 0, 1, n, m)
end

def main
  n, m = read_line.split.map(&.to_u128)
  puts fib(n - 1, m)
end

main

0