結果

問題 No.1578 A × B × C
ユーザー rlangevinrlangevin
提出日時 2023-02-15 22:44:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 53,600 KB
最終ジャッジ日時 2024-07-18 05:29:07
合計ジャッジ時間 1,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,860 KB
testcase_01 AC 32 ms
53,520 KB
testcase_02 AC 32 ms
52,396 KB
testcase_03 AC 33 ms
52,484 KB
testcase_04 AC 34 ms
52,296 KB
testcase_05 AC 35 ms
52,204 KB
testcase_06 AC 35 ms
52,512 KB
testcase_07 AC 33 ms
51,700 KB
testcase_08 AC 33 ms
52,152 KB
testcase_09 AC 32 ms
51,940 KB
testcase_10 AC 31 ms
52,824 KB
testcase_11 AC 31 ms
52,828 KB
testcase_12 AC 31 ms
53,024 KB
testcase_13 AC 32 ms
52,312 KB
testcase_14 AC 32 ms
52,840 KB
testcase_15 AC 33 ms
52,220 KB
testcase_16 AC 30 ms
52,704 KB
testcase_17 AC 31 ms
53,216 KB
testcase_18 AC 30 ms
53,568 KB
testcase_19 AC 31 ms
51,900 KB
testcase_20 AC 31 ms
51,828 KB
testcase_21 AC 32 ms
51,980 KB
testcase_22 AC 31 ms
52,940 KB
testcase_23 AC 31 ms
52,512 KB
testcase_24 AC 31 ms
53,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int, input().split())
K = int(input())
mod = 10 ** 9 + 7
two = pow(2, K, mod - 1)
print(pow(A * B * C, two, mod))
0