結果

問題 No.403 2^2^2
ユーザー ぴろずぴろず
提出日時 2016-07-22 23:14:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 77,072 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-11-06 15:16:45
合計ジャッジ時間 8,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,660 KB
testcase_01 AC 161 ms
42,208 KB
testcase_02 AC 162 ms
42,660 KB
testcase_03 AC 158 ms
42,432 KB
testcase_04 AC 158 ms
42,532 KB
testcase_05 AC 159 ms
42,432 KB
testcase_06 AC 148 ms
42,616 KB
testcase_07 AC 160 ms
42,360 KB
testcase_08 AC 157 ms
42,464 KB
testcase_09 AC 158 ms
42,616 KB
testcase_10 AC 160 ms
42,464 KB
testcase_11 AC 158 ms
42,752 KB
testcase_12 AC 147 ms
42,020 KB
testcase_13 AC 156 ms
42,524 KB
testcase_14 AC 162 ms
42,636 KB
testcase_15 AC 155 ms
42,660 KB
testcase_16 AC 156 ms
42,600 KB
testcase_17 AC 160 ms
42,596 KB
testcase_18 AC 161 ms
42,508 KB
testcase_19 AC 158 ms
42,728 KB
testcase_20 AC 161 ms
42,276 KB
testcase_21 AC 161 ms
42,464 KB
testcase_22 AC 160 ms
42,536 KB
testcase_23 AC 161 ms
42,320 KB
testcase_24 AC 163 ms
42,556 KB
testcase_25 AC 160 ms
42,748 KB
testcase_26 AC 160 ms
42,744 KB
testcase_27 AC 159 ms
42,752 KB
testcase_28 AC 158 ms
42,540 KB
testcase_29 AC 161 ms
42,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no403;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	public static BigInteger MOD = BigInteger.valueOf(1000000007);
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String[] s = sc.next().split("\\^");
		BigInteger a = new BigInteger(s[0]);
		BigInteger b = new BigInteger(s[1]);
		BigInteger c = new BigInteger(s[2]);
		BigInteger x = a.modPow(b, MOD).modPow(c, MOD);
		BigInteger y;
		if (a.mod(MOD).equals(BigInteger.ZERO)) { //0^0対策
			y = BigInteger.ZERO;
		}else{
			y = a.modPow(b.modPow(c, MOD.subtract(BigInteger.ONE)), MOD);
		}
		
		System.out.println(x + " " + y);
	}
}
0