結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー tentententen
提出日時 2020-10-09 13:12:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 73,868 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-07-20 06:45:24
合計ジャッジ時間 5,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,260 KB
testcase_01 AC 103 ms
39,880 KB
testcase_02 AC 113 ms
41,136 KB
testcase_03 AC 117 ms
41,380 KB
testcase_04 AC 116 ms
41,048 KB
testcase_05 AC 122 ms
41,144 KB
testcase_06 AC 105 ms
40,504 KB
testcase_07 AC 106 ms
40,528 KB
testcase_08 AC 101 ms
40,108 KB
testcase_09 AC 124 ms
41,104 KB
testcase_10 AC 125 ms
40,480 KB
testcase_11 AC 178 ms
40,632 KB
testcase_12 AC 187 ms
41,120 KB
testcase_13 AC 183 ms
41,148 KB
testcase_14 AC 189 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long m = sc.nextInt();
        if (n == 1) {
            System.out.println(0);
            return;
        } else if (n == 2) {
            System.out.println(1);
            return;
        }
        long prepre = 0;
        long pre = 1;
        for (int i = 3; i <= n; i++) {
            long cur = (prepre + pre) % m;
            prepre = pre;
            pre = cur;
        }
        System.out.println(pre);
    }
}
0