結果

問題 No.793 うし数列 2
ユーザー YamaKasaYamaKasa
提出日時 2019-02-23 18:47:28
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 77,552 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-12-14 04:25:09
合計ジャッジ時間 5,903 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,092 KB
testcase_01 AC 129 ms
54,056 KB
testcase_02 AC 129 ms
54,152 KB
testcase_03 AC 127 ms
54,104 KB
testcase_04 AC 127 ms
53,908 KB
testcase_05 AC 127 ms
54,008 KB
testcase_06 AC 126 ms
54,172 KB
testcase_07 AC 127 ms
54,176 KB
testcase_08 AC 128 ms
54,252 KB
testcase_09 AC 133 ms
54,124 KB
testcase_10 AC 119 ms
53,152 KB
testcase_11 AC 136 ms
53,996 KB
testcase_12 AC 134 ms
54,252 KB
testcase_13 AC 133 ms
54,028 KB
testcase_14 AC 133 ms
54,356 KB
testcase_15 AC 134 ms
54,348 KB
testcase_16 AC 128 ms
54,092 KB
testcase_17 AC 130 ms
54,116 KB
testcase_18 AC 129 ms
53,860 KB
testcase_19 AC 130 ms
54,120 KB
testcase_20 AC 129 ms
54,064 KB
testcase_21 AC 133 ms
54,220 KB
testcase_22 AC 132 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static long mod = (long)(Math.pow(10, 9)) + 7;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		sc.close();
		long t = N - 1;
		long[][] A = {{10, 3}, {0, 1}};
		long[][] B = {{1, 0}, {0, 1}};
		while(t > 0) {
			if(t % 2 == 1) {
				B = mul(B, A);
			}
			t /= 2;
			A = mul(A, A);
			mod(A);
			mod(B);
		}
		long a = 13 * B[0][0] + B[0][1];
		System.out.println(a % mod);
	}
	static void mod(long[][] A){
		for(int i = 0; i < 2; i++) {
			for(int j = 0; j < 2; j++) {
				A[i][j] %= mod;
			}
		}
	}
	static long[][] mul(long[][] A, long[][] B){
		long[][] ret = new long[2][2];
		for(int i = 0; i < 2; i++) {
			for(int j = 0; j < 2; j++) {
				for(int k = 0; k < 2; k++) {
					ret[i][j] += A[i][k] * B[k][j];
				}
			}
		}
		return ret;
	}
}
0