結果

問題 No.403 2^2^2
ユーザー rlangevinrlangevin
提出日時 2023-07-27 12:31:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 149 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 53,296 KB
最終ジャッジ日時 2024-10-04 07:16:13
合計ジャッジ時間 2,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,164 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 33 ms
52,080 KB
testcase_03 AC 32 ms
51,836 KB
testcase_04 AC 31 ms
51,816 KB
testcase_05 AC 32 ms
52,680 KB
testcase_06 AC 35 ms
52,504 KB
testcase_07 AC 35 ms
51,924 KB
testcase_08 AC 36 ms
52,924 KB
testcase_09 AC 35 ms
52,240 KB
testcase_10 AC 35 ms
52,784 KB
testcase_11 AC 34 ms
52,824 KB
testcase_12 AC 39 ms
52,368 KB
testcase_13 AC 34 ms
52,884 KB
testcase_14 AC 35 ms
52,996 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 35 ms
52,184 KB
testcase_18 AC 36 ms
52,484 KB
testcase_19 AC 33 ms
52,416 KB
testcase_20 AC 35 ms
53,296 KB
testcase_21 AC 34 ms
52,136 KB
testcase_22 AC 33 ms
53,228 KB
testcase_23 AC 33 ms
53,044 KB
testcase_24 AC 33 ms
52,884 KB
testcase_25 WA -
testcase_26 AC 32 ms
52,360 KB
testcase_27 AC 32 ms
52,280 KB
testcase_28 AC 33 ms
52,940 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split("^"))
mod = 10 ** 9 + 7
ans1 = pow(A, B * C, mod)
ind = pow(B, C, mod - 1)
ans2 = pow(A, ind, mod)
print(ans1, ans2)
0