結果

問題 No.403 2^2^2
ユーザー mits58mits58
提出日時 2016-07-25 19:22:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 577 bytes
コンパイル時間 4,051 ms
コンパイル使用メモリ 85,488 KB
実行使用メモリ 52,812 KB
最終ジャッジ日時 2024-11-06 16:22:21
合計ジャッジ時間 9,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
42,112 KB
testcase_01 AC 151 ms
42,136 KB
testcase_02 AC 157 ms
42,504 KB
testcase_03 AC 146 ms
42,220 KB
testcase_04 AC 153 ms
42,548 KB
testcase_05 AC 157 ms
42,420 KB
testcase_06 AC 154 ms
42,228 KB
testcase_07 AC 138 ms
41,660 KB
testcase_08 AC 154 ms
42,516 KB
testcase_09 AC 141 ms
42,360 KB
testcase_10 AC 136 ms
41,856 KB
testcase_11 AC 154 ms
42,220 KB
testcase_12 AC 140 ms
41,912 KB
testcase_13 AC 153 ms
52,812 KB
testcase_14 AC 152 ms
42,548 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 152 ms
42,352 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 150 ms
42,524 KB
testcase_23 AC 150 ms
42,624 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 152 ms
42,216 KB
testcase_27 AC 151 ms
42,476 KB
testcase_28 WA -
testcase_29 AC 153 ms
42,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	static long mod=1000000007;
	static long pow(long a,long x,long m){
		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]),b=Long.valueOf(str[1]),c=Long.valueOf(str[2]);
			long ab=pow(a,b,mod); ab=pow(ab,c,mod);
			long bc=pow(b,c,mod-1); bc=pow(a,bc,mod);
			System.out.println(ab+" "+bc);
		}
	}
}
0