結果

問題 No.403 2^2^2
ユーザー 37zigen37zigen
提出日時 2016-07-23 12:53:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 866 bytes
コンパイル時間 2,428 ms
コンパイル使用メモリ 79,852 KB
実行使用メモリ 55,160 KB
最終ジャッジ日時 2024-11-06 14:57:59
合計ジャッジ時間 8,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,448 KB
testcase_01 AC 154 ms
42,200 KB
testcase_02 AC 158 ms
42,248 KB
testcase_03 AC 158 ms
42,208 KB
testcase_04 AC 154 ms
42,308 KB
testcase_05 AC 153 ms
42,212 KB
testcase_06 AC 144 ms
42,156 KB
testcase_07 AC 156 ms
42,624 KB
testcase_08 AC 159 ms
42,000 KB
testcase_09 AC 142 ms
42,016 KB
testcase_10 AC 155 ms
42,532 KB
testcase_11 AC 158 ms
42,600 KB
testcase_12 AC 156 ms
42,432 KB
testcase_13 AC 129 ms
41,680 KB
testcase_14 AC 157 ms
42,660 KB
testcase_15 AC 129 ms
41,364 KB
testcase_16 AC 115 ms
40,440 KB
testcase_17 AC 154 ms
42,292 KB
testcase_18 WA -
testcase_19 AC 156 ms
44,268 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 152 ms
42,268 KB
testcase_23 AC 150 ms
42,408 KB
testcase_24 WA -
testcase_25 AC 131 ms
41,016 KB
testcase_26 AC 156 ms
42,348 KB
testcase_27 AC 155 ms
42,268 KB
testcase_28 AC 154 ms
42,168 KB
testcase_29 AC 127 ms
41,452 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) + " " + 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