結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー htensaihtensai
提出日時 2019-12-19 12:34:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 73,776 KB
実行使用メモリ 37,936 KB
最終ジャッジ日時 2024-07-07 01:06:53
合計ジャッジ時間 3,667 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,880 KB
testcase_01 AC 52 ms
37,012 KB
testcase_02 AC 52 ms
36,972 KB
testcase_03 AC 51 ms
36,928 KB
testcase_04 AC 52 ms
37,120 KB
testcase_05 AC 52 ms
36,864 KB
testcase_06 AC 50 ms
36,916 KB
testcase_07 AC 50 ms
36,872 KB
testcase_08 AC 52 ms
37,012 KB
testcase_09 AC 55 ms
37,120 KB
testcase_10 AC 75 ms
37,440 KB
testcase_11 AC 134 ms
37,640 KB
testcase_12 AC 134 ms
37,888 KB
testcase_13 AC 136 ms
37,816 KB
testcase_14 AC 133 ms
37,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        long prepre = 0;
        long pre = 1;
        for (int i = 3; i <= n; i++) {
            long now = (pre + prepre) % m;
            prepre = pre;
            pre = now;
        }
        System.out.println(pre);
    }
}
0