結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 23:33:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 56,848 KB
最終ジャッジ日時 2024-06-02 06:46:10
合計ジャッジ時間 4,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,608 KB
testcase_01 AC 106 ms
52,992 KB
testcase_02 AC 120 ms
53,740 KB
testcase_03 AC 121 ms
54,088 KB
testcase_04 AC 122 ms
53,816 KB
testcase_05 AC 118 ms
53,636 KB
testcase_06 AC 121 ms
53,812 KB
testcase_07 AC 112 ms
53,572 KB
testcase_08 AC 108 ms
53,000 KB
testcase_09 AC 129 ms
56,116 KB
testcase_10 AC 148 ms
56,848 KB
testcase_11 AC 212 ms
56,728 KB
testcase_12 AC 222 ms
54,276 KB
testcase_13 AC 216 ms
56,244 KB
testcase_14 AC 209 ms
56,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int m = sc.nextInt();
		Long A = 0L;
		Long B = 1L;
		Long C = A+B;
		for (int i=3; i<n; i++) {
			A = B;
			B = C;
			C = (A+B)%m;
		}
		out.println(C);
	}
}
0