結果

問題 No.1578 A × B × C
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-02 21:26:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 53,508 KB
最終ジャッジ日時 2024-06-29 05:18:13
合計ジャッジ時間 2,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,068 KB
testcase_01 AC 38 ms
51,556 KB
testcase_02 AC 37 ms
52,900 KB
testcase_03 AC 37 ms
52,564 KB
testcase_04 AC 38 ms
52,232 KB
testcase_05 AC 38 ms
52,616 KB
testcase_06 AC 38 ms
52,072 KB
testcase_07 AC 38 ms
52,436 KB
testcase_08 AC 37 ms
53,072 KB
testcase_09 AC 36 ms
52,820 KB
testcase_10 AC 38 ms
52,740 KB
testcase_11 AC 37 ms
52,556 KB
testcase_12 AC 37 ms
52,776 KB
testcase_13 AC 37 ms
52,760 KB
testcase_14 AC 38 ms
53,380 KB
testcase_15 AC 38 ms
52,424 KB
testcase_16 AC 38 ms
52,728 KB
testcase_17 AC 37 ms
52,824 KB
testcase_18 AC 38 ms
52,300 KB
testcase_19 AC 38 ms
52,052 KB
testcase_20 AC 38 ms
51,768 KB
testcase_21 AC 38 ms
52,472 KB
testcase_22 AC 37 ms
51,804 KB
testcase_23 AC 37 ms
52,312 KB
testcase_24 AC 38 ms
53,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

A,B,C
B*C,A*C,A*B

A*A*B*C,

A*B*C の 2^K 乗

"""

A,B,C = map(int,input().split())

K = int(input())

mod = 10**9+7
print ( pow(A*B*C, pow(2,K,mod-1) ,mod) )
0