結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,896 KB
testcase_01 AC 154 ms
54,744 KB
testcase_02 AC 149 ms
54,988 KB
testcase_03 AC 153 ms
54,796 KB
testcase_04 AC 154 ms
54,712 KB
testcase_05 AC 157 ms
55,024 KB
testcase_06 AC 154 ms
55,000 KB
testcase_07 AC 157 ms
55,008 KB
testcase_08 AC 157 ms
54,680 KB
testcase_09 AC 156 ms
54,780 KB
testcase_10 AC 157 ms
55,064 KB
testcase_11 AC 151 ms
54,952 KB
testcase_12 AC 155 ms
54,924 KB
testcase_13 AC 152 ms
55,036 KB
testcase_14 AC 154 ms
54,712 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 152 ms
54,896 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 158 ms
54,796 KB
testcase_23 AC 155 ms
54,756 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 154 ms
54,764 KB
testcase_27 AC 154 ms
55,068 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no403;

import java.util.Scanner;

public class Main {
	public static long MOD = 1000000007;
	public static void main(String[] args) {
		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]);
		long x = pow(pow(a,b,MOD),c,MOD);
		long y = pow(a,pow(b,c,MOD-1),MOD);
		System.out.println(x + " " + y);
	}
	public static long pow(long a,long n,long mod) {
		long res = 1;
		while(n > 0) {
			if ((n & 1) > 0) {
				res = (res * a) % mod;
			}
			a = (a * a) % mod;
			n/=2;
		}
		return res;
	}
}
0