結果

問題 No.1578 A × B × C
ユーザー titan23titan23
提出日時 2022-06-11 00:37:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-09-21 07:49:23
合計ジャッジ時間 2,118 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,216 KB
testcase_01 AC 39 ms
52,144 KB
testcase_02 AC 42 ms
53,360 KB
testcase_03 AC 39 ms
52,756 KB
testcase_04 AC 39 ms
52,236 KB
testcase_05 AC 39 ms
53,208 KB
testcase_06 AC 39 ms
53,560 KB
testcase_07 AC 38 ms
52,992 KB
testcase_08 AC 38 ms
52,752 KB
testcase_09 AC 38 ms
51,880 KB
testcase_10 AC 38 ms
52,092 KB
testcase_11 AC 43 ms
54,304 KB
testcase_12 AC 42 ms
52,556 KB
testcase_13 AC 43 ms
52,168 KB
testcase_14 AC 43 ms
52,348 KB
testcase_15 AC 41 ms
53,160 KB
testcase_16 AC 41 ms
53,220 KB
testcase_17 AC 42 ms
52,744 KB
testcase_18 AC 43 ms
52,084 KB
testcase_19 AC 42 ms
52,000 KB
testcase_20 AC 41 ms
53,288 KB
testcase_21 AC 42 ms
52,268 KB
testcase_22 AC 41 ms
52,556 KB
testcase_23 AC 42 ms
53,088 KB
testcase_24 AC 40 ms
52,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
mod = 1000000007

##################

def large_pow(a, b, c, mod):
  "return (a^(b^c)) % mod. p:prime."
  r = pow(b, c, mod-1)
  return pow(a, r, mod)

a, b, c = map(int, input().split())
k = int(input())

ans = large_pow((a*b*c)%mod, 2, k, mod)

print(ans)
0