結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-13 21:54:02
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 388 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 61,824 KB
最終ジャッジ日時 2024-05-08 04:18:41
合計ジャッジ時間 8,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
61,184 KB
testcase_01 AC 139 ms
54,304 KB
testcase_02 AC 142 ms
54,192 KB
testcase_03 AC 135 ms
54,000 KB
testcase_04 AC 147 ms
54,140 KB
testcase_05 AC 815 ms
54,052 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 No526 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		
		System.out.println(fibonacci(N) % M);
	}
	
	public static int fibonacci(int N) {
		if(N == 1) {
			return 0;
		}else if(N == 2) {
			return 1;
		}else {
			return fibonacci(N -1) + fibonacci(N -2);
		}
	}
}
0