結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー htensaihtensai
提出日時 2019-11-16 13:07:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 2,941 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 56,168 KB
最終ジャッジ日時 2024-09-24 23:19:26
合計ジャッジ時間 5,144 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,172 KB
testcase_01 AC 130 ms
53,908 KB
testcase_02 AC 125 ms
54,248 KB
testcase_03 AC 124 ms
52,888 KB
testcase_04 AC 131 ms
54,000 KB
testcase_05 AC 131 ms
53,888 KB
testcase_06 AC 134 ms
54,224 KB
testcase_07 AC 135 ms
54,020 KB
testcase_08 AC 135 ms
54,068 KB
testcase_09 AC 136 ms
54,108 KB
testcase_10 AC 146 ms
54,156 KB
testcase_11 WA -
testcase_12 AC 192 ms
53,996 KB
testcase_13 WA -
testcase_14 AC 190 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int preprev = 0;
		int prev = 1;
		for (int i = 3; i <= n; i++) {
		    int value = preprev + prev;
		    value %= m;
		    preprev = prev;
		    prev = value;
		}
		System.out.println(prev);
	}
}
0