結果

問題 No.403 2^2^2
ユーザー mits58mits58
提出日時 2016-07-25 19:29:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 3,266 ms
コンパイル使用メモリ 79,140 KB
実行使用メモリ 55,140 KB
最終ジャッジ日時 2024-11-06 16:23:08
合計ジャッジ時間 9,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
54,784 KB
testcase_01 AC 154 ms
54,636 KB
testcase_02 AC 159 ms
54,568 KB
testcase_03 AC 156 ms
54,756 KB
testcase_04 AC 157 ms
55,040 KB
testcase_05 AC 156 ms
55,056 KB
testcase_06 AC 158 ms
55,108 KB
testcase_07 AC 155 ms
54,900 KB
testcase_08 AC 160 ms
54,660 KB
testcase_09 AC 157 ms
54,992 KB
testcase_10 AC 156 ms
54,868 KB
testcase_11 AC 158 ms
54,504 KB
testcase_12 AC 161 ms
54,968 KB
testcase_13 AC 162 ms
55,140 KB
testcase_14 AC 159 ms
55,064 KB
testcase_15 AC 158 ms
54,924 KB
testcase_16 AC 160 ms
54,548 KB
testcase_17 AC 142 ms
54,740 KB
testcase_18 AC 156 ms
54,864 KB
testcase_19 AC 159 ms
54,856 KB
testcase_20 AC 162 ms
54,660 KB
testcase_21 AC 160 ms
55,020 KB
testcase_22 AC 158 ms
54,660 KB
testcase_23 AC 159 ms
54,736 KB
testcase_24 AC 157 ms
54,592 KB
testcase_25 AC 159 ms
54,984 KB
testcase_26 AC 158 ms
54,672 KB
testcase_27 AC 159 ms
54,820 KB
testcase_28 AC 159 ms
54,804 KB
testcase_29 AC 158 ms
54,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	static long mod=1000000007;
	static long pow(long a,long x,long m){
		if(a==0) return 0;
		else if(x==0) return 1;
		else if(x%2==0) return pow((a*a)%m,x/2,m)%m;
		else return (a*pow((a*a)%m,x/2,m))%m;
	}
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			String[] str=(sc.next()).split("\\^");
			long a=Long.valueOf(str[0])%mod,b=Long.valueOf(str[1]),c=Long.valueOf(str[2]);
			long ab=pow(a%mod,b,mod); ab=pow(ab%mod,c,mod);
			long bc=pow(b%(mod-1),c,mod-1); bc=pow(a%mod,bc,mod);
			System.out.println(ab+" "+bc);
		}
	}
}
0