結果

問題 No.718 行列のできるフィボナッチ数列道場 (1)
ユーザー GrenacheGrenache
提出日時 2018-09-18 12:31:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,498 bytes
コンパイル時間 3,343 ms
コンパイル使用メモリ 77,492 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-07-18 07:55:38
合計ジャッジ時間 6,579 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,220 KB
testcase_01 AC 109 ms
53,724 KB
testcase_02 AC 115 ms
54,120 KB
testcase_03 AC 101 ms
53,416 KB
testcase_04 AC 95 ms
52,760 KB
testcase_05 AC 99 ms
52,680 KB
testcase_06 AC 111 ms
54,096 KB
testcase_07 AC 108 ms
53,716 KB
testcase_08 AC 99 ms
53,060 KB
testcase_09 AC 115 ms
53,748 KB
testcase_10 AC 114 ms
54,088 KB
testcase_11 AC 111 ms
54,000 KB
testcase_12 AC 99 ms
52,912 KB
testcase_13 AC 109 ms
54,084 KB
testcase_14 AC 109 ms
53,968 KB
testcase_15 AC 106 ms
52,896 KB
testcase_16 AC 119 ms
53,928 KB
testcase_17 AC 111 ms
53,708 KB
testcase_18 AC 111 ms
53,960 KB
testcase_19 AC 102 ms
53,616 KB
testcase_20 AC 114 ms
53,916 KB
testcase_21 AC 99 ms
52,964 KB
testcase_22 AC 116 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder718 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final int MOD = 1_000_000_007;
		
		long n = sc.nextLong();

		long fn1 = fibonacciNumber(n + 1, MOD);
		long fn = fibonacciNumber(n, MOD);
		
		long ans = (fn1 * fn1 % MOD - fn * fn % MOD) % MOD + MOD;
		ans %= MOD;
		
		if ((n + 1) % 2 == 1) {
			ans -= 1;
		} else {
			ans -= -1;
		}

		pr.println(ans);
	}

	private static long fibonacciNumber(long n, int MOD) {
		// f(0)=0, f(1)=1, f(2)=1,...

		long[] a = {1, 1, 1, 0};
		long[] x = {1, 0};
		while(n > 0) {
			if (n % 2 != 0) {
				long tmp0 = (x[0] * a[0] + x[1] * a[1]) % MOD;
				long tmp1 = (x[0] * a[2] + x[1] * a[3]) % MOD;
				x[0] = tmp0;
				x[1] = tmp1;
			}
			long tmp0 = (a[0] * a[0] + a[1] * a[2]) % MOD;
			long tmp1 = a[1] * (a[0] + a[3]) % MOD;
			long tmp2 = a[2] * (a[0] + a[3]) % MOD;
			long tmp3 = (a[3] * a[3] + a[1] * a[2]) % MOD;
			a[0] = tmp0;
			a[1] = tmp1;
			a[2] = tmp2;
			a[3] = tmp3;
			n /= 2;
		}

		return x[1];
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0