結果

問題 No.891 隣接3項間の漸化式
ユーザー tentententen
提出日時 2021-03-10 19:22:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,149 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 76,704 KB
実行使用メモリ 37,220 KB
最終ジャッジ日時 2024-10-12 09:50:33
合計ジャッジ時間 5,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,068 KB
testcase_01 AC 50 ms
36,552 KB
testcase_02 AC 52 ms
37,068 KB
testcase_03 AC 50 ms
36,788 KB
testcase_04 AC 51 ms
36,468 KB
testcase_05 AC 51 ms
36,964 KB
testcase_06 AC 51 ms
37,120 KB
testcase_07 AC 50 ms
37,120 KB
testcase_08 AC 51 ms
36,808 KB
testcase_09 AC 50 ms
36,672 KB
testcase_10 AC 50 ms
36,832 KB
testcase_11 AC 50 ms
36,652 KB
testcase_12 AC 51 ms
36,928 KB
testcase_13 AC 53 ms
36,924 KB
testcase_14 AC 51 ms
37,016 KB
testcase_15 AC 51 ms
36,880 KB
testcase_16 AC 52 ms
36,876 KB
testcase_17 AC 50 ms
36,840 KB
testcase_18 AC 50 ms
36,540 KB
testcase_19 AC 52 ms
36,944 KB
testcase_20 AC 50 ms
36,568 KB
testcase_21 AC 52 ms
36,564 KB
testcase_22 AC 51 ms
37,016 KB
testcase_23 AC 50 ms
37,076 KB
testcase_24 AC 50 ms
37,124 KB
testcase_25 AC 50 ms
37,188 KB
testcase_26 AC 53 ms
37,120 KB
testcase_27 AC 51 ms
36,852 KB
testcase_28 AC 51 ms
37,096 KB
testcase_29 AC 51 ms
36,848 KB
testcase_30 AC 50 ms
37,120 KB
testcase_31 AC 52 ms
36,812 KB
testcase_32 AC 52 ms
36,944 KB
testcase_33 AC 51 ms
36,672 KB
testcase_34 AC 51 ms
36,808 KB
testcase_35 AC 50 ms
36,836 KB
testcase_36 AC 51 ms
37,220 KB
testcase_37 AC 52 ms
36,568 KB
testcase_38 AC 51 ms
37,020 KB
testcase_39 AC 51 ms
37,072 KB
testcase_40 AC 51 ms
36,896 KB
testcase_41 AC 50 ms
36,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) throws Exception{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ", 3);
		int a = Integer.parseInt(first[0]);
		int b = Integer.parseInt(first[1]);
		int n = Integer.parseInt(first[2]);
		long[][] xy = new long[31][4];
		xy[0] = new long[]{a, b, 1, 0};
		for (int i = 1; i < 31; i++) {
		    xy[i][0] = (xy[i - 1][0] * xy[i - 1][0] + xy[i - 1][1] * xy[i - 1][2]) % MOD;
		    xy[i][1] = (xy[i - 1][0] * xy[i - 1][1] + xy[i - 1][1] * xy[i - 1][3]) % MOD;
		    xy[i][2] = (xy[i - 1][2] * xy[i - 1][0] + xy[i - 1][3] * xy[i - 1][2]) % MOD;
		    xy[i][3] = (xy[i - 1][2] * xy[i - 1][1] + xy[i - 1][3] * xy[i - 1][3]) % MOD;
		}
		long x = 1;
		long y = 0;
		for (int i = 30; i >= 0 && n > 0; i--) {
		    if (n >= (1 << i)) {
		        n -= (1 << i);
		        long xx = (x * xy[i][0] + y * xy[i][1]) % MOD;
		        long yy = (x * xy[i][2] + y * xy[i][3]) % MOD;
		        x = xx;
		        y = yy;
		    }
		}
		System.out.println(y);
	}
}
0