結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー yuya178yuya178
提出日時 2017-06-09 22:35:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 3,249 ms
コンパイル使用メモリ 73,860 KB
実行使用メモリ 96,156 KB
最終ジャッジ日時 2024-09-22 15:23:07
合計ジャッジ時間 5,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,788 KB
testcase_01 AC 129 ms
54,248 KB
testcase_02 AC 129 ms
53,880 KB
testcase_03 AC 114 ms
52,932 KB
testcase_04 AC 115 ms
52,996 KB
testcase_05 AC 126 ms
54,016 KB
testcase_06 AC 127 ms
54,124 KB
testcase_07 AC 130 ms
54,096 KB
testcase_08 AC 130 ms
54,104 KB
testcase_09 AC 135 ms
54,236 KB
testcase_10 AC 144 ms
59,420 KB
testcase_11 AC 234 ms
95,988 KB
testcase_12 AC 231 ms
96,156 KB
testcase_13 AC 233 ms
96,156 KB
testcase_14 AC 235 ms
96,104 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.nextLong();

        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];
            F[i] = F[i]%M;
        }
        System.out.println(F[N]);

       


	}
}
0