結果

問題 No.403 2^2^2
ユーザー 37zigen37zigen
提出日時 2016-07-23 13:11:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 3,885 ms
コンパイル使用メモリ 79,612 KB
実行使用メモリ 42,592 KB
最終ジャッジ日時 2024-11-06 15:35:43
合計ジャッジ時間 8,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,228 KB
testcase_01 AC 144 ms
41,772 KB
testcase_02 AC 157 ms
42,476 KB
testcase_03 AC 159 ms
42,424 KB
testcase_04 AC 157 ms
42,412 KB
testcase_05 AC 157 ms
42,312 KB
testcase_06 AC 157 ms
42,436 KB
testcase_07 AC 159 ms
42,424 KB
testcase_08 AC 159 ms
42,452 KB
testcase_09 AC 158 ms
42,424 KB
testcase_10 AC 159 ms
42,220 KB
testcase_11 AC 159 ms
42,284 KB
testcase_12 AC 153 ms
42,400 KB
testcase_13 AC 132 ms
41,704 KB
testcase_14 AC 157 ms
42,504 KB
testcase_15 AC 113 ms
40,388 KB
testcase_16 AC 117 ms
40,144 KB
testcase_17 AC 154 ms
42,164 KB
testcase_18 AC 158 ms
42,572 KB
testcase_19 AC 149 ms
42,476 KB
testcase_20 AC 157 ms
42,416 KB
testcase_21 AC 142 ms
41,896 KB
testcase_22 AC 156 ms
42,292 KB
testcase_23 AC 155 ms
42,592 KB
testcase_24 AC 156 ms
42,204 KB
testcase_25 AC 132 ms
41,132 KB
testcase_26 AC 141 ms
42,052 KB
testcase_27 AC 140 ms
42,004 KB
testcase_28 AC 154 ms
42,240 KB
testcase_29 AC 128 ms
40,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.util.Arrays;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		solver();
	}

	static long MOD = 1_000_000_000 + 7;

	static void solver() {
		Scanner sc = new Scanner(System.in);
		String[] s = sc.next().split("\\^");

		long a = Long.parseLong(s[0]);
		long b = Long.parseLong(s[1]);
		long c = Long.parseLong(s[2]);

		if (a % MOD == 0) {
			System.out.println(0 + " " + 0);
			return;
		}
		System.out.println(
				pow(a, (b % (MOD - 1)) * (c % (MOD - 1)) % (MOD - 1), MOD) + " " + pow(a, pow(b, c, MOD - 1), MOD));
	}

	static long pow(long a, long n, long mod) {
		long A = a % mod;
		long ans = 1;
		for (; n >= 1; n >>= 1, A *= A, A %= mod) {
			if ((n & 1) == 1) {
				ans *= A;
				ans %= mod;
			}
		}
		return ans;
	}

	static void tr(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}
}
0