結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー OlderInvestorOlderInvestor
提出日時 2017-10-24 17:04:05
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 853 bytes
コンパイル時間 4,057 ms
コンパイル使用メモリ 75,364 KB
実行使用メモリ 64,936 KB
最終ジャッジ日時 2024-05-01 13:09:50
合計ジャッジ時間 9,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,348 KB
testcase_01 AC 139 ms
54,088 KB
testcase_02 AC 138 ms
54,108 KB
testcase_03 AC 139 ms
54,056 KB
testcase_04 AC 141 ms
54,112 KB
testcase_05 AC 138 ms
54,028 KB
testcase_06 AC 139 ms
54,144 KB
testcase_07 AC 139 ms
54,392 KB
testcase_08 AC 183 ms
56,900 KB
testcase_09 AC 342 ms
57,120 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class No526 {
    private int n;
    private BigInteger m;
    private BigInteger fib1, fib2, fib3;

    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());

        fib1 = new BigInteger("0");
        fib2 = new BigInteger("1");

        if(n == 1) {
            System.out.println(0);
            return;
        } else if(n == 2) {
            System.out.println(1);
            return;
        }
        for(int i = 0; i < n - 2; i++) {
            fib3 = fib1.add(fib2);
            fib1 = fib2;
            fib2 = fib3;
        }
        System.out.println(fib3.mod(m));
    }
}
0