結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 2 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_u64)
  puts fib(n - 1, m)
end

main
0