結果

問題 No.1578 A × B × C
ユーザー shotoyooshotoyoo
提出日時 2021-07-02 21:23:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 53,484 KB
最終ジャッジ日時 2024-06-29 05:12:21
合計ジャッジ時間 1,781 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,344 KB
testcase_01 AC 31 ms
52,288 KB
testcase_02 AC 35 ms
53,020 KB
testcase_03 AC 36 ms
53,480 KB
testcase_04 AC 36 ms
52,560 KB
testcase_05 AC 35 ms
52,304 KB
testcase_06 AC 35 ms
52,500 KB
testcase_07 AC 35 ms
52,616 KB
testcase_08 AC 34 ms
52,500 KB
testcase_09 AC 35 ms
52,256 KB
testcase_10 AC 34 ms
52,068 KB
testcase_11 AC 34 ms
53,484 KB
testcase_12 AC 37 ms
52,892 KB
testcase_13 AC 36 ms
52,188 KB
testcase_14 AC 35 ms
52,884 KB
testcase_15 AC 35 ms
53,144 KB
testcase_16 AC 32 ms
52,616 KB
testcase_17 AC 31 ms
51,904 KB
testcase_18 AC 32 ms
53,032 KB
testcase_19 AC 37 ms
52,240 KB
testcase_20 AC 34 ms
52,616 KB
testcase_21 AC 36 ms
52,120 KB
testcase_22 AC 35 ms
51,944 KB
testcase_23 AC 37 ms
52,496 KB
testcase_24 AC 36 ms
52,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


a,b,c = list(map(int, input().split()))
k = int(input())
M = 10**9+7
val = pow(2, k, M-1)
p = a*b*c%M
ans = pow(p, val, M)
print(ans%M)
0