結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー schwarzahlschwarzahl
提出日時 2017-06-09 23:14:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 74,208 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-09-22 18:17:50
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,292 KB
testcase_01 AC 131 ms
54,152 KB
testcase_02 AC 130 ms
54,160 KB
testcase_03 AC 131 ms
54,268 KB
testcase_04 AC 130 ms
54,376 KB
testcase_05 AC 130 ms
54,028 KB
testcase_06 AC 132 ms
54,156 KB
testcase_07 AC 132 ms
54,316 KB
testcase_08 AC 131 ms
54,260 KB
testcase_09 AC 135 ms
53,916 KB
testcase_10 AC 153 ms
54,340 KB
testcase_11 AC 216 ms
54,472 KB
testcase_12 AC 214 ms
54,228 KB
testcase_13 AC 214 ms
53,908 KB
testcase_14 AC 212 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args){
		Main main = new Main();
		main.solveB();
	}

	private void solveB() {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long M = sc.nextLong();

		long pp = 0;
		long p = 1;
		for (int n = 3; n <= N; n++) {
			long now = (pp + p) % M;
			pp = p;
			p = now;
		}
		System.out.println(p);
	}
}
0