結果
| 問題 |
No.1161 Many Powers
|
| ユーザー |
|
| 提出日時 | 2020-08-15 06:18:13 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 606 bytes |
| コンパイル時間 | 2,109 ms |
| コンパイル使用メモリ | 191,564 KB |
| 最終ジャッジ日時 | 2025-01-13 01:04:45 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 3 WA * 20 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
class ArbitraryMod{
public:
//Pow_Mod O(log(n))
inline static long long pow(long long x, long long n, long long mod) {
long long res = 1;
for (x %= mod; n > 0; n >>= 1, (x *= x) %= mod) if (n & 1) (res *= x) %= mod;
return res;
}
//Inv_Mod O(log(mod))
inline static long long inv(long long x, long long mod){
return pow(x,mod-2,mod);
}
};
int main() {
long long A,B,C; cin >> A >> B >> C;
long long ans = 0;
for(long long i = 1; i <= min(A,C-1); ++i) {
ans += ArbitraryMod::pow(i,B,C);
ans %= C;
}
cout << ans << endl;
return 0;
}