結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 23:33:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 2,693 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 56,680 KB
最終ジャッジ日時 2024-12-23 01:08:27
合計ジャッジ時間 5,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,844 KB
testcase_01 AC 141 ms
53,944 KB
testcase_02 AC 134 ms
53,828 KB
testcase_03 AC 138 ms
54,032 KB
testcase_04 AC 139 ms
53,992 KB
testcase_05 AC 136 ms
53,728 KB
testcase_06 AC 138 ms
53,768 KB
testcase_07 AC 132 ms
54,036 KB
testcase_08 AC 138 ms
53,968 KB
testcase_09 AC 143 ms
56,248 KB
testcase_10 AC 174 ms
56,564 KB
testcase_11 AC 226 ms
56,680 KB
testcase_12 AC 235 ms
54,184 KB
testcase_13 AC 227 ms
56,568 KB
testcase_14 AC 215 ms
56,008 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