結果

問題 No.2260 Adic Sum
ユーザー t98slidert98slider
提出日時 2023-04-07 21:29:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,422 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 174,772 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-10-06 07:02:09
合計ジャッジ時間 11,260 ms
ジャッジサーバーID
(参考情報)
judge2 / 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,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 20 ms
5,888 KB
testcase_15 AC 29 ms
7,040 KB
testcase_16 AC 17 ms
5,516 KB
testcase_17 AC 56 ms
7,680 KB
testcase_18 AC 895 ms
9,600 KB
testcase_19 AC 1,002 ms
10,240 KB
testcase_20 AC 630 ms
9,856 KB
testcase_21 AC 661 ms
10,112 KB
testcase_22 AC 511 ms
9,728 KB
testcase_23 AC 304 ms
10,240 KB
testcase_24 AC 927 ms
10,240 KB
testcase_25 AC 52 ms
9,728 KB
testcase_26 AC 49 ms
9,472 KB
testcase_27 AC 53 ms
9,984 KB
testcase_28 AC 51 ms
9,600 KB
testcase_29 AC 50 ms
9,728 KB
testcase_30 AC 89 ms
10,240 KB
testcase_31 AC 480 ms
10,240 KB
testcase_32 AC 479 ms
10,112 KB
testcase_33 AC 73 ms
10,112 KB
testcase_34 AC 217 ms
10,240 KB
testcase_35 AC 1,422 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<typename T>
T MUL(T a, T b){
    T res;
    return __builtin_mul_overflow(a, b, &res)? std::numeric_limits<T>::max() : res;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll N, P;
    cin >> N >> P;
    vector<ll> a(N);
    for(auto &&v : a) cin >> v;
    ll d = 1, ans = 0;
    while(MUL(d, P) <= 1'000'000'000'000'00){
        d *= P;
        map<ll, ll> mp;
        for(int i = 0; i < N; i++){
            ll c = a[i] % d;
            ans += mp[c]++;
        }
    }
    cout << ans << '\n';
}
0