結果
問題 | No.1578 A × B × C |
ユーザー | shiomusubi496 |
提出日時 | 2021-07-02 21:30:49 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 337 bytes |
コンパイル時間 | 2,086 ms |
コンパイル使用メモリ | 193,912 KB |
最終ジャッジ日時 | 2025-01-22 15:43:49 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; constexpr int mod=1000000007; int mod_pow(int a,int b,int mod){ if(!b)return 1; if(b&1)return mod_pow(a,b-1,mod)*a%mod; return mod_pow(a*a%mod,b/2,mod); } signed main(){ int A,B,C,K; cin>>A>>B>>C>>K; cout<<mod_pow(A*B%mod*C%mod,mod_pow(2,K,mod-1),mod)<<endl; }