結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー YamaKasaYamaKasa
提出日時 2018-06-02 19:25:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 3,076 ms
コンパイル使用メモリ 75,744 KB
実行使用メモリ 81,980 KB
最終ジャッジ日時 2024-06-30 09:04:50
合計ジャッジ時間 5,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,008 KB
testcase_01 AC 128 ms
41,356 KB
testcase_02 AC 128 ms
41,236 KB
testcase_03 AC 126 ms
41,316 KB
testcase_04 AC 129 ms
40,988 KB
testcase_05 AC 129 ms
41,524 KB
testcase_06 AC 126 ms
41,388 KB
testcase_07 AC 125 ms
41,408 KB
testcase_08 AC 112 ms
40,212 KB
testcase_09 AC 129 ms
42,204 KB
testcase_10 AC 155 ms
48,996 KB
testcase_11 AC 232 ms
81,872 KB
testcase_12 AC 235 ms
81,980 KB
testcase_13 AC 231 ms
81,748 KB
testcase_14 AC 233 ms
81,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		long M = scan.nextLong();
		scan.close();
		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