結果

問題 No.403 2^2^2
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 18:04:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 3,332 ms
コンパイル使用メモリ 79,060 KB
実行使用メモリ 42,720 KB
最終ジャッジ日時 2024-11-15 19:04:53
合計ジャッジ時間 8,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
42,288 KB
testcase_01 AC 141 ms
42,384 KB
testcase_02 AC 143 ms
42,444 KB
testcase_03 AC 143 ms
42,200 KB
testcase_04 AC 141 ms
42,384 KB
testcase_05 AC 141 ms
42,312 KB
testcase_06 AC 141 ms
42,304 KB
testcase_07 AC 142 ms
42,352 KB
testcase_08 AC 143 ms
42,460 KB
testcase_09 AC 129 ms
41,968 KB
testcase_10 AC 132 ms
41,840 KB
testcase_11 AC 147 ms
42,348 KB
testcase_12 AC 131 ms
42,268 KB
testcase_13 AC 144 ms
42,496 KB
testcase_14 AC 146 ms
42,472 KB
testcase_15 AC 145 ms
42,540 KB
testcase_16 AC 147 ms
42,264 KB
testcase_17 AC 146 ms
42,460 KB
testcase_18 AC 146 ms
42,324 KB
testcase_19 AC 144 ms
42,304 KB
testcase_20 AC 143 ms
42,336 KB
testcase_21 AC 142 ms
42,488 KB
testcase_22 AC 143 ms
42,444 KB
testcase_23 AC 143 ms
42,720 KB
testcase_24 AC 140 ms
42,404 KB
testcase_25 AC 144 ms
42,504 KB
testcase_26 AC 140 ms
42,396 KB
testcase_27 AC 142 ms
42,640 KB
testcase_28 AC 141 ms
42,600 KB
testcase_29 AC 135 ms
42,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String[] s = sc.nextLine().split("\\^");
		long a, b, c, tmp, x, y;
		a = Long.parseLong(s[0]) % e;
		b = Long.parseLong(s[1]);
		c = Long.parseLong(s[2]);

		tmp = ((b%(e-1))*(c%(e-1)))%(e-1);
		x = p(a, tmp, e);
		tmp = p(b%(e-1), c%(e/2-1), e-1);
		y = p(a, tmp, e);
		System.out.println(x + " " + y);
	}

	public static long e = 1000000007;
	public static long p(long a, long b, long m){
		a %= m;
		if(a == 0){
			return 0;
		} else if(b == 0){
			return 1;
		}
		if(b%2 == 0){
			return p(a*a, b/2, m)%m;
		} else {
			return (a * p(a*a, b/2, m))%m;
		}

	}
}
0