結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-24 16:15:41
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 526 bytes
コンパイル時間 3,786 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 47,212 KB
最終ジャッジ日時 2024-05-01 13:07:23
合計ジャッジ時間 8,819 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
46,640 KB
testcase_01 AC 134 ms
41,456 KB
testcase_02 AC 136 ms
41,160 KB
testcase_03 AC 132 ms
41,128 KB
testcase_04 AC 145 ms
41,392 KB
testcase_05 AC 883 ms
41,700 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No526 {
    private int n, m;

    public static void main(String[] args) {
        No526 main = new No526();
        main.run();
    }

    private void run() {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        m = sc.nextInt();

        System.out.println(fibonacci(n) % m);
    }

    private int fibonacci(int n) {
        if(n == 1) return 0;
        if(n == 2) return 1;
        return fibonacci(n - 1) + fibonacci(n - 2);
    }
}
0