結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-09-08 23:12:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 5,417 ms
コンパイル使用メモリ 73,320 KB
実行使用メモリ 37,684 KB
最終ジャッジ日時 2024-11-07 06:12:40
合計ジャッジ時間 5,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,952 KB
testcase_01 AC 52 ms
36,888 KB
testcase_02 AC 51 ms
36,764 KB
testcase_03 AC 51 ms
36,872 KB
testcase_04 AC 52 ms
36,764 KB
testcase_05 AC 52 ms
36,664 KB
testcase_06 AC 52 ms
36,648 KB
testcase_07 AC 51 ms
37,036 KB
testcase_08 AC 53 ms
36,780 KB
testcase_09 AC 57 ms
37,020 KB
testcase_10 AC 78 ms
37,564 KB
testcase_11 AC 140 ms
37,556 KB
testcase_12 AC 139 ms
37,548 KB
testcase_13 AC 141 ms
37,512 KB
testcase_14 AC 137 ms
37,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class No526 {
    public static void main(String[] args) throws IOException {

        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        long N = Long.parseLong(inputs[0]);
        long M = Long.parseLong(inputs[1]);
        long fN_1 = 0;
        long fN_2 = 1;
        for (long i = 0; i < N - 2; i++) {
            long tmp = fN_2;
            fN_2 = (fN_1 + fN_2) % M;
            fN_1 = tmp;
        }

        System.out.println(fN_2 % M);

    }
}
0