結果

問題 No.718 行列のできるフィボナッチ数列道場 (1)
ユーザー 37zigen37zigen
提出日時 2018-07-27 23:05:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,095 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 77,376 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-07-05 04:37:54
合計ジャッジ時間 5,905 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,056 KB
testcase_01 AC 131 ms
53,964 KB
testcase_02 AC 130 ms
54,160 KB
testcase_03 AC 130 ms
54,188 KB
testcase_04 AC 130 ms
54,052 KB
testcase_05 AC 129 ms
54,180 KB
testcase_06 AC 129 ms
54,068 KB
testcase_07 AC 129 ms
54,156 KB
testcase_08 AC 130 ms
54,236 KB
testcase_09 AC 133 ms
54,220 KB
testcase_10 AC 129 ms
53,812 KB
testcase_11 AC 129 ms
54,204 KB
testcase_12 AC 132 ms
54,144 KB
testcase_13 AC 133 ms
54,032 KB
testcase_14 AC 127 ms
54,048 KB
testcase_15 AC 132 ms
53,916 KB
testcase_16 AC 128 ms
54,156 KB
testcase_17 AC 129 ms
53,820 KB
testcase_18 AC 117 ms
52,944 KB
testcase_19 AC 128 ms
54,096 KB
testcase_20 AC 116 ms
52,876 KB
testcase_21 AC 128 ms
54,188 KB
testcase_22 AC 129 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	final long MOD = 1000000007;

	void run() {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long[][] mat = { { 1, 1, 0, 0 }, { 0, 1, 1, 2 }, { 0, 1, 0, 0 }, { 0, 1, 0, 1 } };
		long[][] v = { { 0 }, { 1 }, { 0 }, { 0 } };
		mat = pow(mat, N);
		mat = mul(mat, v);
		System.out.println(mat[0][0]);
	}

	long[][] pow(long[][] a, long n) {
		long[][] ret = new long[a.length][a.length];
		for (int i = 0; i < a.length; ++i)
			ret[i][i] = 1;
		for (; n > 0; n >>= 1, a = mul(a, a)) {
			if (n % 2 == 1)
				ret = mul(a, ret);
		}
		return ret;
	}

	long[][] mul(long[][] a, long[][] b) {
		long[][] ret = new long[a.length][b[0].length];
		for (int i = 0; i < a.length; ++i) {
			for (int j = 0; j < b[i].length; ++j) {
				for (int k = 0; k < a[i].length; ++k) {
					ret[i][j] = (ret[i][j] + a[i][k] * b[k][j]) % MOD;
				}
			}
		}
		return ret;
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0