結果

問題 No.403 2^2^2
ユーザー uafr_csuafr_cs
提出日時 2016-07-22 23:35:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 961 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 84,864 KB
実行使用メモリ 56,996 KB
最終ジャッジ日時 2024-11-06 09:28:31
合計ジャッジ時間 8,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
54,828 KB
testcase_01 AC 155 ms
54,948 KB
testcase_02 AC 157 ms
54,916 KB
testcase_03 AC 156 ms
54,776 KB
testcase_04 AC 155 ms
55,180 KB
testcase_05 AC 157 ms
54,848 KB
testcase_06 AC 157 ms
54,876 KB
testcase_07 AC 154 ms
55,036 KB
testcase_08 AC 155 ms
54,732 KB
testcase_09 AC 156 ms
55,136 KB
testcase_10 AC 154 ms
54,944 KB
testcase_11 AC 154 ms
54,860 KB
testcase_12 AC 158 ms
54,860 KB
testcase_13 AC 156 ms
55,044 KB
testcase_14 AC 157 ms
54,916 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 155 ms
54,608 KB
testcase_18 AC 161 ms
54,816 KB
testcase_19 AC 160 ms
55,024 KB
testcase_20 AC 156 ms
54,936 KB
testcase_21 AC 162 ms
54,972 KB
testcase_22 AC 163 ms
54,672 KB
testcase_23 AC 155 ms
55,216 KB
testcase_24 AC 157 ms
54,980 KB
testcase_25 WA -
testcase_26 AC 156 ms
54,992 KB
testcase_27 AC 156 ms
54,984 KB
testcase_28 AC 158 ms
54,756 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static final long MOD = 1000000007L;
	
	public static long mod_pow(long a, long p, long MOD){
		if(p == 0){
			return 1;
		}else if(p == 1){
			return a % MOD;
		}else if(p % 2 != 0){
			return ((a % MOD) * mod_pow(a, p - 1, MOD)) % MOD;
		}else{
			final long ret = mod_pow(a, p / 2, MOD);
			
			return (ret * ret) % MOD;
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		final String[] inputs = sc.next().split("[^0-9]");
		
		
		final long A = Long.parseLong(inputs[0]);
		final long B = Long.parseLong(inputs[1]);
		final long C = Long.parseLong(inputs[2]);
		//System.out.println("out");
		
		final long fst = mod_pow(mod_pow(A, B, MOD), C, MOD);
		final long snd = mod_pow(A, mod_pow(B, C, MOD - 1), MOD);
		System.out.println(fst + " " + snd);
		
	}

}
0