結果

問題 No.403 2^2^2
ユーザー tentententen
提出日時 2021-01-25 15:55:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,161 bytes
コンパイル時間 3,094 ms
コンパイル使用メモリ 79,864 KB
実行使用メモリ 56,792 KB
最終ジャッジ日時 2024-06-22 06:55:08
合計ジャッジ時間 7,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,652 KB
testcase_01 AC 126 ms
55,060 KB
testcase_02 AC 153 ms
54,856 KB
testcase_03 AC 138 ms
54,824 KB
testcase_04 AC 126 ms
54,512 KB
testcase_05 AC 134 ms
56,792 KB
testcase_06 AC 134 ms
54,824 KB
testcase_07 AC 133 ms
54,428 KB
testcase_08 AC 125 ms
54,448 KB
testcase_09 AC 136 ms
55,032 KB
testcase_10 AC 137 ms
54,944 KB
testcase_11 AC 133 ms
54,876 KB
testcase_12 AC 127 ms
54,568 KB
testcase_13 AC 142 ms
54,996 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 130 ms
56,496 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 125 ms
54,428 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 136 ms
54,988 KB
testcase_23 AC 124 ms
54,500 KB
testcase_24 WA -
testcase_25 AC 139 ms
54,852 KB
testcase_26 AC 135 ms
54,912 KB
testcase_27 AC 125 ms
54,464 KB
testcase_28 WA -
testcase_29 AC 142 ms
54,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    static final int MODN = MOD - 1;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String line = sc.nextLine();
        int idx = line.indexOf('^');
        long a = Long.parseLong(line.substring(0, idx)) % MOD;
        int next = line.indexOf('^', idx + 1);
        long b = Long.parseLong(line.substring(idx + 1, next));
        long c = Long.parseLong(line.substring(next + 1, line.length()));
        long x = pow(pow(a, b), c);
        long y = pow(a, powmod(b % MOD, c));
        System.out.println(x + " " + y);
    }
    
    static long pow(long x, long p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return pow(x, p - 1) * x % MOD;
        }
    }
    
    static long powmod(long x, long p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return powmod(x * x % MODN, p / 2);
        } else {
            return powmod(x, p - 1) * x % MODN;
        }
    }
    
    
}
0