結果

問題 No.718 行列のできるフィボナッチ数列道場 (1)
ユーザー YamaKasaYamaKasa
提出日時 2018-07-29 01:25:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,876 bytes
コンパイル時間 3,864 ms
コンパイル使用メモリ 79,464 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-07-06 20:42:16
合計ジャッジ時間 7,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,116 KB
testcase_01 AC 121 ms
54,312 KB
testcase_02 AC 124 ms
54,104 KB
testcase_03 AC 123 ms
54,160 KB
testcase_04 AC 120 ms
54,132 KB
testcase_05 AC 121 ms
53,892 KB
testcase_06 AC 121 ms
54,064 KB
testcase_07 AC 124 ms
54,068 KB
testcase_08 AC 121 ms
54,276 KB
testcase_09 AC 110 ms
52,772 KB
testcase_10 AC 124 ms
54,132 KB
testcase_11 AC 124 ms
54,044 KB
testcase_12 AC 112 ms
53,160 KB
testcase_13 AC 113 ms
53,008 KB
testcase_14 AC 125 ms
54,336 KB
testcase_15 AC 130 ms
54,148 KB
testcase_16 AC 127 ms
53,896 KB
testcase_17 AC 126 ms
54,364 KB
testcase_18 AC 125 ms
54,064 KB
testcase_19 AC 123 ms
54,128 KB
testcase_20 AC 125 ms
54,080 KB
testcase_21 AC 125 ms
54,136 KB
testcase_22 AC 125 ms
54,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static long d = 1000000000 + 7;

	public static void main(String[] args) {

		Scanner scan = new Scanner(System.in);
		long N = scan.nextLong();
		scan.close();
		long m;
		if(N % 2 == 1) {
			m = N / 2 + 1;
		}else {
			m = N / 2;
		}
		long [][][]A = new long[40][2][2];
		A[0][0][0] = 1;
		A[0][0][1] = 1;
		A[0][1][0] = 1;
		A[0][1][1] = 0;
		for(int i = 1; i < 40; i++) {
			long a00 = A[i -1][0][0] % d;
			long a01 = A[i -1][0][1] % d;
			long a10 = A[i -1][1][0] % d;
			long a11 = A[i -1][1][1] % d;
			A[i][0][0] = ((a00 * a00) % d + (a01 * a10) % d) % d;
			A[i][0][1] = ((a00 * a01) % d + (a01 * a11) % d) % d;
			A[i][1][0] = ((a10 * a00) % d + (a11 * a01) % d) % d;
			A[i][1][1] = ((a10 * a01) % d + (a11 * a11) % d) % d;
		}

		String num = Long.toBinaryString(N);
		long [][]Am = new long[2][2];
		Am[0][0] = 1;
		Am[1][1] = 1;
		//System.out.println(num.length());
		for(int i = 0; i < num.length(); i++) {
			char c = num.charAt(num.length() - i - 1);
			//char c = num.charAt(i);
			if(c == '1') {
				long [][]At = new long[2][2];
				At = square(Am, A[i]);
				for(int j = 0; j < 2; j++) {
					for(int k = 0; k < 2; k++) {
						Am[j][k] = At[j][k];
					}
				}
				for(int j = 0; j < 2; j++) {
					for(int k = 0; k < 2; k++) {
						Am[j][k] = Am[j][k] % d;
					}
				}
			}
		}

		long a = Am[0][0] % d;
		long b = Am[0][1] % d;
		System.out.println(a * b % d);
	}
	static long[][] square(long[][]A1, long[][]A2) {
		long[][]A = new long[2][2];
		for(int i = 0; i < 2; i++) {

			for(int j = 0; j < 2; j++) {
				long t = 0;
				for(int k = 0; k < 2; k++) {
					t += (A1[i][k] * A2[k][j]) % d;
				}
				t = t % d;
				A[i][j] = t;
			}
		}
		return A;
	}
	static void disp(long [][]A) {
		for(int i = 0; i < 2; i++) {
			System.out.println(A[i][0] + " " + A[i][1]);
		}
		System.out.println();
	}
}
0