結果

問題 No.1275 綺麗な式
ユーザー 遭難者遭難者
提出日時 2020-10-18 20:00:51
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,009 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 78,112 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-07-21 07:56:50
合計ジャッジ時間 11,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,192 KB
testcase_01 AC 129 ms
41,264 KB
testcase_02 AC 113 ms
40,148 KB
testcase_03 AC 128 ms
41,080 KB
testcase_04 AC 132 ms
41,276 KB
testcase_05 AC 130 ms
41,008 KB
testcase_06 AC 128 ms
41,104 KB
testcase_07 AC 131 ms
41,276 KB
testcase_08 AC 130 ms
41,120 KB
testcase_09 AC 126 ms
41,232 KB
testcase_10 AC 127 ms
40,960 KB
testcase_11 AC 129 ms
41,048 KB
testcase_12 AC 127 ms
41,136 KB
testcase_13 AC 114 ms
40,000 KB
testcase_14 AC 123 ms
41,020 KB
testcase_15 AC 130 ms
41,192 KB
testcase_16 AC 113 ms
40,084 KB
testcase_17 AC 114 ms
40,304 KB
testcase_18 AC 128 ms
41,324 KB
testcase_19 AC 127 ms
41,068 KB
testcase_20 AC 130 ms
41,320 KB
testcase_21 AC 131 ms
41,284 KB
testcase_22 AC 128 ms
41,132 KB
testcase_23 AC 128 ms
41,040 KB
testcase_24 AC 127 ms
41,324 KB
testcase_25 AC 129 ms
41,324 KB
testcase_26 AC 127 ms
41,464 KB
testcase_27 AC 131 ms
41,248 KB
testcase_28 AC 130 ms
41,144 KB
testcase_29 AC 127 ms
41,372 KB
testcase_30 AC 126 ms
41,112 KB
testcase_31 AC 126 ms
41,336 KB
testcase_32 AC 125 ms
41,096 KB
testcase_33 AC 116 ms
39,880 KB
testcase_34 AC 127 ms
41,216 KB
testcase_35 AC 129 ms
41,244 KB
testcase_36 AC 126 ms
41,204 KB
testcase_37 AC 125 ms
41,180 KB
testcase_38 AC 127 ms
41,248 KB
testcase_39 AC 125 ms
41,244 KB
testcase_40 AC 127 ms
41,056 KB
testcase_41 AC 121 ms
40,152 KB
testcase_42 AC 130 ms
40,904 KB
testcase_43 AC 126 ms
41,104 KB
testcase_44 AC 124 ms
41,332 KB
testcase_45 WA -
testcase_46 AC 124 ms
41,380 KB
testcase_47 AC 123 ms
41,196 KB
testcase_48 AC 128 ms
41,236 KB
testcase_49 AC 128 ms
41,364 KB
testcase_50 AC 126 ms
41,048 KB
testcase_51 AC 128 ms
41,296 KB
testcase_52 AC 129 ms
41,112 KB
testcase_53 AC 128 ms
41,168 KB
testcase_54 AC 130 ms
41,208 KB
testcase_55 AC 132 ms
41,368 KB
testcase_56 AC 132 ms
41,060 KB
testcase_57 AC 134 ms
41,036 KB
testcase_58 AC 132 ms
41,508 KB
testcase_59 AC 131 ms
41,008 KB
testcase_60 AC 130 ms
41,032 KB
testcase_61 AC 134 ms
41,120 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);
		int a = Integer.parseInt(sc.next());
		int b = Integer.parseInt(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;			
			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