結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー tsunabittsunabit
提出日時 2019-06-14 21:57:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 3,398 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 96,356 KB
最終ジャッジ日時 2024-11-14 05:40:59
合計ジャッジ時間 6,353 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,148 KB
testcase_01 AC 132 ms
54,440 KB
testcase_02 AC 116 ms
53,116 KB
testcase_03 AC 129 ms
54,104 KB
testcase_04 AC 129 ms
54,132 KB
testcase_05 AC 128 ms
54,108 KB
testcase_06 AC 130 ms
53,868 KB
testcase_07 AC 131 ms
54,132 KB
testcase_08 AC 133 ms
54,004 KB
testcase_09 AC 138 ms
54,092 KB
testcase_10 AC 155 ms
60,124 KB
testcase_11 AC 233 ms
96,060 KB
testcase_12 AC 234 ms
96,356 KB
testcase_13 AC 235 ms
96,196 KB
testcase_14 AC 222 ms
95,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No526 {
    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];
    	
		f[0] = 0; f[1] = 1;
		
		for(int i = 2; i < n; i++){
			f[i] = (f[i - 1] + f[i - 2]) % m;
		}
		System.out.println(f[n - 1]);
    }
}
0