結果
問題 | No.1161 Many Powers |
ユーザー | msm1993 |
提出日時 | 2020-09-11 16:14:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 75 ms / 2,000 ms |
コード長 | 986 bytes |
コンパイル時間 | 1,705 ms |
コンパイル使用メモリ | 166,920 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 18:57:01 |
合計ジャッジ時間 | 3,398 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 32 ms
5,376 KB |
testcase_09 | AC | 36 ms
5,376 KB |
testcase_10 | AC | 14 ms
5,376 KB |
testcase_11 | AC | 26 ms
5,376 KB |
testcase_12 | AC | 13 ms
5,376 KB |
testcase_13 | AC | 41 ms
5,376 KB |
testcase_14 | AC | 63 ms
5,376 KB |
testcase_15 | AC | 54 ms
5,376 KB |
testcase_16 | AC | 70 ms
5,376 KB |
testcase_17 | AC | 46 ms
5,376 KB |
testcase_18 | AC | 33 ms
5,376 KB |
testcase_19 | AC | 21 ms
5,376 KB |
testcase_20 | AC | 74 ms
5,376 KB |
testcase_21 | AC | 19 ms
5,376 KB |
testcase_22 | AC | 75 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for (int i = 0; i < (int)(n); i ++) #define irep(i,n) for (int i = (int)(n) - 1;i >= 0;--i) using namespace std; using ll = long long; using PL = pair<ll,ll>; using P = pair<int,int>; constexpr int INF = 1000000000; constexpr long long HINF = 1000000000000000; constexpr long long MOD = 1000000007;// = 998244353; constexpr double EPS = 1e-4; constexpr double PI = 3.14159265358979; long long modpow(long long N,long long K,long long mod = MOD) { long long ret = 1; while (K > 0) { if (K&1) { ret *= N; ret %= mod; } K >>= 1; N *= N; N %= mod; } return ret; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); ll a,b,c; cin >> a >> b >> c; ll ans = 0; ll t = a/c; rep(i,c) { ll x = t; if (a - t*c >= i) ++x; ans += modpow(i,b,c) * x % c; ans %= c; } cout << ans << '\n'; return 0; }