結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-13 22:12:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 3,537 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-12-14 07:27:49
合計ジャッジ時間 6,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,852 KB
testcase_01 AC 130 ms
54,272 KB
testcase_02 AC 124 ms
53,128 KB
testcase_03 AC 129 ms
53,956 KB
testcase_04 AC 131 ms
54,276 KB
testcase_05 AC 133 ms
54,100 KB
testcase_06 AC 137 ms
54,044 KB
testcase_07 AC 127 ms
54,080 KB
testcase_08 AC 131 ms
54,380 KB
testcase_09 AC 140 ms
54,152 KB
testcase_10 AC 176 ms
53,996 KB
testcase_11 AC 298 ms
53,020 KB
testcase_12 AC 301 ms
54,108 KB
testcase_13 AC 299 ms
53,984 KB
testcase_14 AC 308 ms
53,892 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