結果

問題 No.2260 Adic Sum
ユーザー t98slidert98slider
提出日時 2023-04-07 21:29:07
言語 C++14
(gcc 13.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

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