結果
| 問題 |
No.673 カブトムシ
|
| コンテスト | |
| ユーザー |
koyopro
|
| 提出日時 | 2019-12-31 13:30:30 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 1,451 bytes |
| コンパイル時間 | 2,916 ms |
| コンパイル使用メモリ | 157,184 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-02 21:29:32 |
| 合計ジャッジ時間 | 2,024 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 12 WA * 2 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) printf(__VA_ARGS__)
#define MAX LONG_LONG_MAX
int dxy[] = {0, 1, 0, -1, 0};
/*================================*/
int B,C,D;
int MOD = 1000000007;
int mod_pow(int b, int e, int m) {
int result = 1;
while (e > 0) {
if ((e & 1) == 1) result = (result * b) % m;
e >>= 1;
b = (b * b) % m;
}
return result;
}
signed main()
{
#if DEBUG
std::ifstream in("input.txt");
std::cin.rdbuf(in.rdbuf());
#endif
cin>>B>>C>>D;
if (C==1) {
cout << ((B % MOD) * (D % MOD)) % MOD << endl;
return 0;
}
/*
BC * (C^D - 1) * (C - 1)^(-1)
*/
int ans = ((B % MOD) * (C % MOD)) % MOD;
int cc = mod_pow(C % MOD, D, MOD) - 1;
if (cc<0) cc+= MOD;
ans *= cc;
ans %= MOD;
int b = C % MOD - 1;
if (b<0) b+=MOD;
ans *= mod_pow(b, MOD-2, MOD);
ans %= MOD;
cout << ans << endl;
return 0;
}
koyopro