結果
問題 | No.1578 A × B × C |
ユーザー |
|
提出日時 | 2021-07-02 21:34:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 912 bytes |
コンパイル時間 | 737 ms |
コンパイル使用メモリ | 91,496 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 11:08:01 |
合計ジャッジ時間 | 1,315 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <cmath> #include <stdio.h> #include <queue> #include <deque> #include <cstdio> #include <set> #include <map> #include <bitset> #include <stack> #include <cctype> using namespace std; long long mod = 1000000007, mod1 = 1000000006; long long m_pow(long long x, long long y) { long long ans = 1; while (y > 0) { if ((y & 1) == 1) { ans = ans * x % mod; } x = x * x % mod; y >>= 1; } return ans; } long long m_pow1(long long x, long long y) { long long ans = 1; while (y > 0) { if ((y & 1) == 1) { ans = ans * x % mod1; } x = x * x % mod1; y >>= 1; } return ans; } int main() { long long a, b, c, k; cin >> a >> b >> c >> k; long long ans = m_pow(a, m_pow1(2, k)); ans *= m_pow(b, m_pow1(2, k)); ans %= mod; ans *= m_pow(c, m_pow1(2, k)); ans %= mod; cout << ans << endl; }