結果

問題 No.403 2^2^2
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 17:54:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 4,990 ms
コンパイル使用メモリ 89,816 KB
実行使用メモリ 56,596 KB
最終ジャッジ日時 2024-11-15 19:04:39
合計ジャッジ時間 8,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
42,356 KB
testcase_01 AC 146 ms
42,556 KB
testcase_02 AC 147 ms
42,552 KB
testcase_03 AC 140 ms
42,384 KB
testcase_04 AC 145 ms
42,536 KB
testcase_05 AC 148 ms
42,280 KB
testcase_06 AC 148 ms
42,452 KB
testcase_07 AC 146 ms
42,596 KB
testcase_08 AC 146 ms
42,356 KB
testcase_09 AC 142 ms
42,480 KB
testcase_10 AC 149 ms
42,260 KB
testcase_11 AC 146 ms
42,408 KB
testcase_12 AC 147 ms
42,552 KB
testcase_13 AC 154 ms
42,592 KB
testcase_14 AC 144 ms
42,436 KB
testcase_15 AC 142 ms
42,416 KB
testcase_16 AC 144 ms
42,208 KB
testcase_17 AC 130 ms
41,836 KB
testcase_18 WA -
testcase_19 AC 133 ms
42,076 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 139 ms
42,200 KB
testcase_23 AC 144 ms
42,512 KB
testcase_24 WA -
testcase_25 AC 145 ms
42,400 KB
testcase_26 AC 146 ms
42,588 KB
testcase_27 AC 142 ms
42,636 KB
testcase_28 AC 139 ms
42,232 KB
testcase_29 AC 144 ms
42,656 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]) % (e-1);
		c = Long.parseLong(s[2]) % (e-1);

		x = p(a, (b*c)%(e-1), e);
		tmp = p(b, c, 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){
		if(a == 0){
			return 0;
		} else if(b == 0){
			return 1;
		}
		a %= m;
		if(b%2 == 0){
			return p(a*a, b/2, m)%m;
		} else {
			return (a * p(a*a, b/2, m))%m;
		}

	}
}
0