結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-13 22:12:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 2,884 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-05-08 06:03:42
合計ジャッジ時間 6,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
39,892 KB
testcase_01 AC 120 ms
41,196 KB
testcase_02 AC 120 ms
41,460 KB
testcase_03 AC 107 ms
40,272 KB
testcase_04 AC 118 ms
41,312 KB
testcase_05 AC 112 ms
40,184 KB
testcase_06 AC 110 ms
41,112 KB
testcase_07 AC 98 ms
40,080 KB
testcase_08 AC 103 ms
40,120 KB
testcase_09 AC 118 ms
40,908 KB
testcase_10 AC 155 ms
41,424 KB
testcase_11 AC 272 ms
40,848 KB
testcase_12 AC 277 ms
41,656 KB
testcase_13 AC 276 ms
41,332 KB
testcase_14 AC 278 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No526 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long M = sc.nextLong();

		System.out.println(fibonacci(N,M));
	}
	
	static long fibonacci(long N,long M) {
		if(N == 1) {
			return 0;
		}
		if(N == 2) {
			return 1;
		}
		long F,Fn1,Fn2;
		F = 1;Fn1 = 0;
		for(int i = 3;i <= N;i++) {
			Fn2 = Fn1 % M;
			Fn1 = F % M;
			F = (Fn1 + Fn2) % M;
		}
		return F;
	}
}
0