結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー samplelpmas
提出日時 2017-06-10 11:23:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 2,250 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 96,316 KB
最終ジャッジ日時 2024-09-24 15:29:43
合計ジャッジ時間 5,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();
        int M = sc.nextInt();

        long F[] = new long[N + 1];

        F[1] = 0;
        F[2] = 1;

        for (int i = 3; i < N + 1; i++) {
            F[i] = (F[i - 2] + F[i - 1]) % M;
        }

        System.out.println(F[N]);

    }

}
0