結果

問題 No.1275 綺麗な式
ユーザー 57tggx57tggx
提出日時 2020-10-18 18:07:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 1,437 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 41,180 KB
最終ジャッジ日時 2024-07-21 07:56:37
合計ジャッジ時間 12,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
40,508 KB
testcase_01 AC 146 ms
40,824 KB
testcase_02 AC 144 ms
40,564 KB
testcase_03 AC 144 ms
40,688 KB
testcase_04 AC 149 ms
40,872 KB
testcase_05 AC 136 ms
40,504 KB
testcase_06 AC 139 ms
40,804 KB
testcase_07 AC 133 ms
40,796 KB
testcase_08 AC 128 ms
41,180 KB
testcase_09 AC 136 ms
40,604 KB
testcase_10 AC 132 ms
41,064 KB
testcase_11 AC 139 ms
40,828 KB
testcase_12 AC 142 ms
40,880 KB
testcase_13 AC 142 ms
40,980 KB
testcase_14 AC 146 ms
40,904 KB
testcase_15 AC 149 ms
41,048 KB
testcase_16 AC 149 ms
40,788 KB
testcase_17 AC 146 ms
40,604 KB
testcase_18 AC 142 ms
41,140 KB
testcase_19 AC 145 ms
40,652 KB
testcase_20 AC 146 ms
40,936 KB
testcase_21 AC 142 ms
40,892 KB
testcase_22 AC 142 ms
40,920 KB
testcase_23 AC 144 ms
40,992 KB
testcase_24 AC 138 ms
40,748 KB
testcase_25 AC 136 ms
40,944 KB
testcase_26 AC 130 ms
40,912 KB
testcase_27 AC 127 ms
40,756 KB
testcase_28 AC 131 ms
40,828 KB
testcase_29 AC 130 ms
40,748 KB
testcase_30 AC 137 ms
40,804 KB
testcase_31 AC 146 ms
40,876 KB
testcase_32 AC 146 ms
40,952 KB
testcase_33 AC 146 ms
40,796 KB
testcase_34 AC 144 ms
40,772 KB
testcase_35 AC 144 ms
40,528 KB
testcase_36 AC 146 ms
40,556 KB
testcase_37 AC 144 ms
40,876 KB
testcase_38 AC 143 ms
40,948 KB
testcase_39 AC 148 ms
41,008 KB
testcase_40 AC 147 ms
40,856 KB
testcase_41 AC 147 ms
40,928 KB
testcase_42 AC 145 ms
40,660 KB
testcase_43 AC 136 ms
40,852 KB
testcase_44 AC 137 ms
40,972 KB
testcase_45 AC 131 ms
40,932 KB
testcase_46 AC 128 ms
40,544 KB
testcase_47 AC 129 ms
41,040 KB
testcase_48 AC 129 ms
40,788 KB
testcase_49 AC 130 ms
40,828 KB
testcase_50 AC 147 ms
41,012 KB
testcase_51 AC 141 ms
40,960 KB
testcase_52 AC 147 ms
40,792 KB
testcase_53 AC 147 ms
41,008 KB
testcase_54 AC 141 ms
40,684 KB
testcase_55 AC 141 ms
40,436 KB
testcase_56 AC 139 ms
40,596 KB
testcase_57 AC 134 ms
40,876 KB
testcase_58 AC 138 ms
40,852 KB
testcase_59 AC 130 ms
41,056 KB
testcase_60 AC 131 ms
40,536 KB
testcase_61 AC 142 ms
40,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main{
	public static void main(String[] args){
		java.util.Scanner sc = new java.util.Scanner(System.in);
		long a = Long.parseLong(sc.next());
		long b = Long.parseLong(sc.next());
		long n = Long.parseLong(sc.next());
		if(n == 0){
			System.out.println(2);
			return;
		}
		Matrix x = new Matrix(1, 0, 0, 1);
		long tmp = (b - a * a % 1000000007) % 1000000007;
		if(tmp < 0) tmp += 1000000007;
		Matrix y = new Matrix(a * 2 % 1000000007, tmp, 1, 0);
		--n;
		while(n != 0){
			if((n & 1) == 1){
				x.mul(y);
			}
			y.mul(y);
			n >>= 1;
		}

		// System.out.println(x.x00 + " " + x.x01);
		// System.out.println(x.x10 + " " + x.x11);
		System.out.println((x.x00 * a * 2 % 1000000007 + x.x01 * 2 % 1000000007) % 1000000007);
	}
}

class Matrix{
	long x00, x01, x10, x11;
	public Matrix(long x00, long x01, long x10, long x11){
		this.x00 = x00;
		this.x01 = x01;
		this.x10 = x10;
		this.x11 = x11;
	}
	public void mul(Matrix a){
		long tmp00 = x00;
		long tmp01 = x01;
		long tmp10 = x10;
		long tmp11 = x11;
		long a00 = a.x00;
		long a01 = a.x01;
		long a10 = a.x10;
		long a11 = a.x11;
		this.x00 = (tmp00 * a00 % 1000000007 + tmp01 * a10 % 1000000007) % 1000000007;
		this.x01 = (tmp00 * a01 % 1000000007 + tmp01 * a11 % 1000000007) % 1000000007;
		this.x10 = (tmp10 * a00 % 1000000007 + tmp11 * a10 % 1000000007) % 1000000007;
		this.x11 = (tmp10 * a01 % 1000000007 + tmp11 * a11 % 1000000007) % 1000000007;
	}
}

0