結果

問題 No.793 うし数列 2
ユーザー YamaKasaYamaKasa
提出日時 2019-02-23 18:47:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 77,100 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-05-08 04:07:22
合計ジャッジ時間 5,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
39,892 KB
testcase_01 AC 128 ms
41,032 KB
testcase_02 AC 131 ms
41,568 KB
testcase_03 AC 117 ms
40,064 KB
testcase_04 AC 127 ms
41,176 KB
testcase_05 AC 116 ms
39,956 KB
testcase_06 AC 117 ms
40,288 KB
testcase_07 AC 128 ms
41,048 KB
testcase_08 AC 129 ms
41,332 KB
testcase_09 AC 128 ms
41,192 KB
testcase_10 AC 132 ms
41,444 KB
testcase_11 AC 116 ms
40,064 KB
testcase_12 AC 133 ms
41,172 KB
testcase_13 AC 130 ms
41,188 KB
testcase_14 AC 131 ms
41,208 KB
testcase_15 AC 129 ms
41,264 KB
testcase_16 AC 131 ms
41,312 KB
testcase_17 AC 129 ms
41,336 KB
testcase_18 AC 128 ms
41,564 KB
testcase_19 AC 118 ms
39,840 KB
testcase_20 AC 132 ms
41,152 KB
testcase_21 AC 130 ms
41,204 KB
testcase_22 AC 131 ms
41,324 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