結果

問題 No.718 行列のできるフィボナッチ数列道場 (1)
ユーザー YamaKasaYamaKasa
提出日時 2018-07-29 01:25:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 1,876 bytes
コンパイル時間 2,659 ms
コンパイル使用メモリ 81,256 KB
実行使用メモリ 56,296 KB
最終ジャッジ日時 2023-09-21 01:58:42
合計ジャッジ時間 6,755 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
56,136 KB
testcase_01 AC 124 ms
55,876 KB
testcase_02 AC 120 ms
55,672 KB
testcase_03 AC 122 ms
55,768 KB
testcase_04 AC 123 ms
55,916 KB
testcase_05 AC 122 ms
55,912 KB
testcase_06 AC 122 ms
56,108 KB
testcase_07 AC 121 ms
56,092 KB
testcase_08 AC 123 ms
56,188 KB
testcase_09 AC 124 ms
56,080 KB
testcase_10 AC 123 ms
55,756 KB
testcase_11 AC 125 ms
55,968 KB
testcase_12 AC 124 ms
56,000 KB
testcase_13 AC 124 ms
54,036 KB
testcase_14 AC 123 ms
55,992 KB
testcase_15 AC 121 ms
55,760 KB
testcase_16 AC 122 ms
55,876 KB
testcase_17 AC 120 ms
55,796 KB
testcase_18 AC 125 ms
55,848 KB
testcase_19 AC 123 ms
56,052 KB
testcase_20 AC 123 ms
56,032 KB
testcase_21 AC 121 ms
55,748 KB
testcase_22 AC 123 ms
56,296 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