結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー mosmos_21mosmos_21
提出日時 2017-06-10 20:42:39
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 347 bytes
コンパイル時間 2,657 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 61,496 KB
最終ジャッジ日時 2024-09-24 15:45:55
合計ジャッジ時間 7,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
60,940 KB
testcase_01 AC 119 ms
54,176 KB
testcase_02 AC 113 ms
54,256 KB
testcase_03 AC 116 ms
53,964 KB
testcase_04 AC 130 ms
54,056 KB
testcase_05 AC 1,189 ms
54,248 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static Scanner in = new Scanner(System.in);
	public static void main(String[] args){
		int n = in.nextInt(), m = in.nextInt();
		System.out.println(f(n, m) % m);
	}
	
	public static int f(int n, int m){
		if(n == 1) return 0;
		if(n == 2) return 1;
		else return f(n - 1, m) + f(n - 2, m) % m;
	}
}
0