結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー mosmos_21mosmos_21
提出日時 2017-06-09 22:26:58
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 327 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 61,764 KB
最終ジャッジ日時 2024-09-22 15:06:52
合計ジャッジ時間 7,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
60,860 KB
testcase_01 AC 133 ms
54,032 KB
testcase_02 AC 135 ms
54,128 KB
testcase_03 AC 138 ms
54,012 KB
testcase_04 AC 141 ms
54,144 KB
testcase_05 AC 808 ms
54,304 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);
	}
	
	public static int f(int n){
		if(n == 1) return 0;
		if(n == 2) return 1;
		else return f(n - 1) + f(n - 2);
	}
}
0