結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー mosmos_21mosmos_21
提出日時 2017-06-10 20:44:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 96,108 KB
最終ジャッジ日時 2024-09-24 15:46:01
合計ジャッジ時間 4,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,976 KB
testcase_01 AC 124 ms
53,976 KB
testcase_02 AC 122 ms
54,244 KB
testcase_03 AC 120 ms
54,032 KB
testcase_04 AC 122 ms
53,888 KB
testcase_05 AC 122 ms
54,156 KB
testcase_06 AC 121 ms
53,912 KB
testcase_07 AC 121 ms
54,340 KB
testcase_08 AC 120 ms
54,124 KB
testcase_09 AC 125 ms
54,492 KB
testcase_10 AC 139 ms
60,244 KB
testcase_11 AC 208 ms
95,196 KB
testcase_12 AC 204 ms
95,068 KB
testcase_13 AC 222 ms
96,108 KB
testcase_14 AC 209 ms
95,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static Scanner in = new Scanner(System.in);
	public static void main(String[] args){
		int n = in.nextInt(), m = in.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