結果

問題 No.1161 Many Powers
ユーザー msm1993msm1993
提出日時 2020-09-11 16:14:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 1,463 ms
コンパイル使用メモリ 163,356 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-26 23:33:50
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 4 ms
4,380 KB
testcase_06 AC 5 ms
4,384 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 30 ms
4,384 KB
testcase_09 AC 35 ms
4,384 KB
testcase_10 AC 13 ms
4,380 KB
testcase_11 AC 25 ms
4,380 KB
testcase_12 AC 12 ms
4,380 KB
testcase_13 AC 40 ms
4,384 KB
testcase_14 AC 61 ms
4,384 KB
testcase_15 AC 52 ms
4,384 KB
testcase_16 AC 69 ms
4,380 KB
testcase_17 AC 42 ms
4,380 KB
testcase_18 AC 32 ms
4,380 KB
testcase_19 AC 19 ms
4,384 KB
testcase_20 AC 70 ms
4,384 KB
testcase_21 AC 18 ms
4,380 KB
testcase_22 AC 74 ms
4,380 KB
testcase_23 AC 1 ms
4,384 KB
testcase_24 AC 2 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0