結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-24 16:41:00
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 728 bytes
コンパイル時間 3,551 ms
コンパイル使用メモリ 75,336 KB
実行使用メモリ 764,124 KB
最終ジャッジ日時 2024-11-21 17:40:10
合計ジャッジ時間 15,343 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,668 KB
testcase_01 AC 125 ms
53,816 KB
testcase_02 AC 126 ms
54,172 KB
testcase_03 AC 125 ms
53,808 KB
testcase_04 AC 125 ms
53,676 KB
testcase_05 AC 121 ms
52,920 KB
testcase_06 AC 126 ms
53,776 KB
testcase_07 AC 127 ms
54,068 KB
testcase_08 AC 165 ms
59,296 KB
testcase_09 AC 706 ms
486,172 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.math.BigInteger;
import java.util.Scanner;

public class No526 {
    private int n;
    private BigInteger m;
    private BigInteger[] fibonacci;

    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 = new BigInteger(sc.next());

        fibonacci = new BigInteger[n + 2];
        fibonacci[1] = new BigInteger("0");
        fibonacci[2] = new BigInteger("1");
        for(int i = 3; i < n + 1; i++) {
            fibonacci[i] = fibonacci[i - 1].add(fibonacci[i - 2]);
        }

        System.out.println(fibonacci[n].mod(m));
    }
}
0