結果
問題 | No.403 2^2^2 |
ユーザー | tenten |
提出日時 | 2021-01-25 15:57:54 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 144 ms / 2,000 ms |
コード長 | 1,236 bytes |
コンパイル時間 | 2,223 ms |
コンパイル使用メモリ | 90,176 KB |
実行使用メモリ | 55,208 KB |
最終ジャッジ日時 | 2024-06-22 07:01:30 |
合計ジャッジ時間 | 7,142 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
55,012 KB |
testcase_01 | AC | 129 ms
54,664 KB |
testcase_02 | AC | 132 ms
54,788 KB |
testcase_03 | AC | 127 ms
54,604 KB |
testcase_04 | AC | 121 ms
54,476 KB |
testcase_05 | AC | 133 ms
54,936 KB |
testcase_06 | AC | 133 ms
54,732 KB |
testcase_07 | AC | 134 ms
54,932 KB |
testcase_08 | AC | 140 ms
54,876 KB |
testcase_09 | AC | 134 ms
55,208 KB |
testcase_10 | AC | 126 ms
54,652 KB |
testcase_11 | AC | 133 ms
54,700 KB |
testcase_12 | AC | 124 ms
54,568 KB |
testcase_13 | AC | 123 ms
54,928 KB |
testcase_14 | AC | 124 ms
54,544 KB |
testcase_15 | AC | 124 ms
54,944 KB |
testcase_16 | AC | 132 ms
54,296 KB |
testcase_17 | AC | 122 ms
54,248 KB |
testcase_18 | AC | 132 ms
54,680 KB |
testcase_19 | AC | 136 ms
54,936 KB |
testcase_20 | AC | 138 ms
54,796 KB |
testcase_21 | AC | 138 ms
54,832 KB |
testcase_22 | AC | 144 ms
54,940 KB |
testcase_23 | AC | 133 ms
54,512 KB |
testcase_24 | AC | 142 ms
55,004 KB |
testcase_25 | AC | 136 ms
54,864 KB |
testcase_26 | AC | 135 ms
55,132 KB |
testcase_27 | AC | 141 ms
54,512 KB |
testcase_28 | AC | 134 ms
54,860 KB |
testcase_29 | AC | 138 ms
54,732 KB |
ソースコード
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 m = powmod(b % MODN, c); if (m == 0) { m = MODN; } long y = pow(a, m); 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; } } }