結果

問題 No.1275 綺麗な式
ユーザー 遭難者遭難者
提出日時 2020-10-18 20:50:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 2,052 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 78,584 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-07-21 07:54:00
合計ジャッジ時間 9,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,280 KB
testcase_01 AC 106 ms
41,204 KB
testcase_02 AC 98 ms
39,896 KB
testcase_03 AC 104 ms
41,264 KB
testcase_04 AC 105 ms
41,016 KB
testcase_05 AC 103 ms
40,676 KB
testcase_06 AC 102 ms
40,828 KB
testcase_07 AC 104 ms
40,220 KB
testcase_08 AC 115 ms
41,040 KB
testcase_09 AC 99 ms
40,052 KB
testcase_10 AC 128 ms
41,256 KB
testcase_11 AC 103 ms
41,060 KB
testcase_12 AC 105 ms
41,116 KB
testcase_13 AC 91 ms
39,928 KB
testcase_14 AC 103 ms
41,196 KB
testcase_15 AC 106 ms
40,972 KB
testcase_16 AC 110 ms
40,864 KB
testcase_17 AC 116 ms
40,836 KB
testcase_18 AC 118 ms
41,300 KB
testcase_19 AC 115 ms
40,564 KB
testcase_20 AC 104 ms
40,984 KB
testcase_21 AC 108 ms
40,984 KB
testcase_22 AC 98 ms
39,700 KB
testcase_23 AC 104 ms
41,024 KB
testcase_24 AC 107 ms
40,848 KB
testcase_25 AC 103 ms
40,856 KB
testcase_26 AC 97 ms
40,344 KB
testcase_27 AC 107 ms
40,800 KB
testcase_28 AC 105 ms
40,880 KB
testcase_29 AC 97 ms
40,048 KB
testcase_30 AC 104 ms
40,152 KB
testcase_31 AC 103 ms
41,072 KB
testcase_32 AC 100 ms
40,920 KB
testcase_33 AC 92 ms
40,012 KB
testcase_34 AC 101 ms
40,788 KB
testcase_35 AC 103 ms
40,908 KB
testcase_36 AC 96 ms
39,868 KB
testcase_37 AC 103 ms
40,796 KB
testcase_38 AC 115 ms
41,084 KB
testcase_39 AC 94 ms
39,924 KB
testcase_40 AC 95 ms
39,872 KB
testcase_41 AC 106 ms
41,068 KB
testcase_42 AC 114 ms
40,992 KB
testcase_43 AC 95 ms
39,664 KB
testcase_44 AC 101 ms
40,716 KB
testcase_45 AC 97 ms
39,844 KB
testcase_46 AC 116 ms
41,248 KB
testcase_47 AC 106 ms
41,140 KB
testcase_48 AC 93 ms
39,836 KB
testcase_49 AC 102 ms
41,036 KB
testcase_50 AC 96 ms
39,904 KB
testcase_51 AC 110 ms
41,084 KB
testcase_52 AC 106 ms
41,012 KB
testcase_53 AC 104 ms
41,264 KB
testcase_54 AC 90 ms
39,456 KB
testcase_55 AC 95 ms
39,924 KB
testcase_56 AC 104 ms
40,896 KB
testcase_57 AC 94 ms
40,028 KB
testcase_58 AC 90 ms
39,564 KB
testcase_59 AC 95 ms
39,856 KB
testcase_60 AC 105 ms
40,872 KB
testcase_61 AC 106 ms
40,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		long a = Long.parseLong(sc.next());
		long b = Long.parseLong(sc.next());
		long n = Long.parseLong(sc.next());
		if(n == 0) ou.println(2);
		else{
			long x = 1;
			long y = 0;
			long z = 0;
			long w = 1;
			long p = 2 * a;
			p %= (long)(Math.pow(10 , 9) + 7);
			long q = b - (a * (long)a) % ((int)Math.pow(10 , 9) + 7);
			q %= Math.pow(10 , 9) + 7;
			while(q < 0) q += (int)Math.pow(10 , 9) + 7;
			long r = 1;
			long s = 0;
			n--;
			while(n != 0){
				if((n & 1) == 1){
					long xx = (x * p) % ((int)Math.pow(10 , 9) + 7) + (y * r) % ((int)Math.pow(10 , 9) + 7);
					xx %= Math.pow(10 , 9) + 7;
					long yy = (x * q) % ((int)Math.pow(10 , 9) + 7) + (y * s) % ((int)Math.pow(10 , 9) + 7);
					yy %= Math.pow(10 , 9) + 7;
					long zz = (z * p) % ((int)Math.pow(10 , 9) + 7) + (w * r) % ((int)Math.pow(10 , 9) + 7);
					zz %= Math.pow(10 , 9) + 7;
					long ww = (z * q) % ((int)Math.pow(10 , 9) + 7) + (w * s) % ((int)Math.pow(10 , 9) + 7);
					ww %= Math.pow(10 , 9) + 7;
					x = xx;
					y = yy;
					z = zz;
					w = ww;
				}
				long pp = (p * p) % ((int)Math.pow(10 , 9) + 7) + (q * r) % ((int)Math.pow(10 , 9) + 7);
				pp %= Math.pow(10 , 9) + 7;
				long qq = (p * q) % ((int)Math.pow(10 , 9) + 7) + (q * s) % ((int)Math.pow(10 , 9) + 7);
				qq %= Math.pow(10 , 9) + 7;
				long rr = (p * r) % ((int)Math.pow(10 , 9) + 7) + (r * s) % ((int)Math.pow(10 , 9) + 7);
				rr %= Math.pow(10 , 9) + 7;
				long ss = (r * q) % ((int)Math.pow(10 , 9) + 7) + (s * s) % ((int)Math.pow(10 , 9) + 7);
				ss %= Math.pow(10 , 9) + 7;
				p = pp;
				q = qq;
				r = rr;
				s = ss;
				n >>= 1;
			}
			x = (2 * (a * x) % ((int)Math.pow(10 , 9) + 7)) % ((int)Math.pow(10 , 9) + 7) + (2 * y) % ((int)Math.pow(10 , 9) + 7);
			x %= Math.pow(10 , 9) + 7;
			while(x < 0) x += Math.pow(10 , 9) + 7;
			ou.println(x);
		}
		ou.flush();
		sc.close();
	}
}
0