結果

問題 No.403 2^2^2
ユーザー ぴろずぴろず
提出日時 2016-07-22 23:08:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 55,144 KB
最終ジャッジ日時 2024-11-06 09:20:02
合計ジャッジ時間 8,173 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
54,980 KB
testcase_01 AC 157 ms
54,840 KB
testcase_02 AC 158 ms
54,944 KB
testcase_03 AC 158 ms
54,860 KB
testcase_04 AC 147 ms
54,552 KB
testcase_05 AC 157 ms
54,916 KB
testcase_06 AC 142 ms
54,564 KB
testcase_07 AC 156 ms
54,924 KB
testcase_08 AC 155 ms
54,964 KB
testcase_09 AC 151 ms
54,808 KB
testcase_10 AC 152 ms
55,140 KB
testcase_11 AC 161 ms
55,112 KB
testcase_12 AC 158 ms
54,896 KB
testcase_13 AC 156 ms
54,948 KB
testcase_14 AC 158 ms
54,796 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 157 ms
54,776 KB
testcase_18 AC 159 ms
55,080 KB
testcase_19 AC 158 ms
55,068 KB
testcase_20 AC 146 ms
54,464 KB
testcase_21 AC 157 ms
54,976 KB
testcase_22 AC 161 ms
54,952 KB
testcase_23 AC 159 ms
54,920 KB
testcase_24 AC 163 ms
54,904 KB
testcase_25 WA -
testcase_26 AC 156 ms
54,928 KB
testcase_27 AC 153 ms
55,048 KB
testcase_28 AC 158 ms
55,108 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = a.modPow(b.modPow(c, MOD.subtract(BigInteger.ONE)), MOD);
		System.out.println(x + " " + y);
	}
}
0