結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー gemmarogemmaro
提出日時 2019-11-15 08:43:46
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 188 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 19,108 KB
最終ジャッジ日時 2024-09-22 20:28:09
合計ジャッジ時間 4,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
18,980 KB
testcase_01 AC 92 ms
12,032 KB
testcase_02 AC 177 ms
12,032 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 307 ms
12,288 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.chomp.split.map(&:to_i)

def fib(n)
    case n
    when 1
        return 0
    when 2
        return 1
    else
        return fib(n - 1) + fib(n - 2)
    end
end

p fib(n) % m
0