結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
46,888 KB
testcase_01 AC 132 ms
41,420 KB
testcase_02 AC 117 ms
41,272 KB
testcase_03 AC 127 ms
41,636 KB
testcase_04 AC 129 ms
41,520 KB
testcase_05 AC 129 ms
41,520 KB
testcase_06 AC 130 ms
41,600 KB
testcase_07 AC 131 ms
41,616 KB
testcase_08 AC 169 ms
48,616 KB
testcase_09 AC 911 ms
476,652 KB
testcase_10 MLE -
testcase_11 TLE -
testcase_12 TLE -
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