結果

問題 No.2260 Adic Sum
ユーザー umimelumimel
提出日時 2023-04-07 21:30:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,107 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 1,830 ms
コンパイル使用メモリ 172,756 KB
実行使用メモリ 11,120 KB
最終ジャッジ日時 2024-04-15 23:43:40
合計ジャッジ時間 8,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 24 ms
6,944 KB
testcase_15 AC 35 ms
7,552 KB
testcase_16 AC 19 ms
6,940 KB
testcase_17 AC 39 ms
7,808 KB
testcase_18 AC 499 ms
10,428 KB
testcase_19 AC 545 ms
10,980 KB
testcase_20 AC 358 ms
10,828 KB
testcase_21 AC 370 ms
10,836 KB
testcase_22 AC 311 ms
10,576 KB
testcase_23 AC 199 ms
11,120 KB
testcase_24 AC 515 ms
10,952 KB
testcase_25 AC 59 ms
10,496 KB
testcase_26 AC 60 ms
10,368 KB
testcase_27 AC 63 ms
10,752 KB
testcase_28 AC 65 ms
10,496 KB
testcase_29 AC 62 ms
10,496 KB
testcase_30 AC 70 ms
8,344 KB
testcase_31 AC 197 ms
8,948 KB
testcase_32 AC 200 ms
8,940 KB
testcase_33 AC 74 ms
11,100 KB
testcase_34 AC 215 ms
10,992 KB
testcase_35 AC 1,107 ms
10,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

const ll MOD = 1000000007;
const ll MOD2 = 998244353;
const ll INF = 1LL << 60;
const ll MAX_N = 2e5;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    ll N, P; cin >> N >> P;
    vector<ll> A(N); rep(i, N) cin >> A[i];

    ll ans = 0;
    ll PP = P;
    while(PP <= 1e9){
        vector<ll> B(N); rep(i, N) B[i] = A[i]%PP;

        ll cnt = 0;
        map<ll, ll> mp;
        rep(i, N){
            cnt += mp[B[i]];
            mp[B[i]]++;
        }

        ans += cnt;
        PP *= P;
    }

    cout << ans << endl;
}
0