結果

問題 No.1578 A × B × C
ユーザー FromBooskaFromBooska
提出日時 2023-06-18 19:47:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 53,456 KB
最終ジャッジ日時 2024-06-26 08:53:32
合計ジャッジ時間 2,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,452 KB
testcase_01 AC 39 ms
51,848 KB
testcase_02 AC 39 ms
51,616 KB
testcase_03 AC 39 ms
52,476 KB
testcase_04 AC 39 ms
52,172 KB
testcase_05 AC 37 ms
51,948 KB
testcase_06 AC 36 ms
52,072 KB
testcase_07 AC 40 ms
51,948 KB
testcase_08 AC 39 ms
53,056 KB
testcase_09 AC 37 ms
52,244 KB
testcase_10 AC 37 ms
52,000 KB
testcase_11 AC 39 ms
52,564 KB
testcase_12 AC 40 ms
52,140 KB
testcase_13 AC 39 ms
52,652 KB
testcase_14 AC 39 ms
52,848 KB
testcase_15 AC 39 ms
52,304 KB
testcase_16 AC 40 ms
53,068 KB
testcase_17 AC 39 ms
52,216 KB
testcase_18 AC 38 ms
52,700 KB
testcase_19 AC 37 ms
53,112 KB
testcase_20 AC 36 ms
52,476 KB
testcase_21 AC 37 ms
51,944 KB
testcase_22 AC 39 ms
53,456 KB
testcase_23 AC 36 ms
52,024 KB
testcase_24 AC 39 ms
52,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ABC228E
# フェルマーの小定理
# https://manabitimes.jp/math/680
# M**(K**N) mod p
# K**N = (p-1)*q + r
# r = K**N mod (p-1)
# M**(K**N) mod p = M**((p-1)*q+r) = 1*M**r mod p

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