結果

問題 No.2260 Adic Sum
ユーザー umimelumimel
提出日時 2023-04-07 21:30:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 916 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 175,332 KB
実行使用メモリ 11,108 KB
最終ジャッジ日時 2024-10-06 07:02:50
合計ジャッジ時間 8,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 23 ms
6,272 KB
testcase_15 AC 34 ms
7,424 KB
testcase_16 AC 20 ms
5,760 KB
testcase_17 AC 38 ms
7,808 KB
testcase_18 AC 513 ms
10,304 KB
testcase_19 AC 564 ms
10,856 KB
testcase_20 AC 370 ms
10,704 KB
testcase_21 AC 376 ms
10,716 KB
testcase_22 AC 313 ms
10,576 KB
testcase_23 AC 200 ms
11,000 KB
testcase_24 AC 540 ms
10,956 KB
testcase_25 AC 62 ms
10,368 KB
testcase_26 AC 63 ms
10,240 KB
testcase_27 AC 65 ms
10,624 KB
testcase_28 AC 61 ms
10,496 KB
testcase_29 AC 62 ms
10,496 KB
testcase_30 AC 66 ms
8,220 KB
testcase_31 AC 193 ms
8,940 KB
testcase_32 AC 190 ms
8,812 KB
testcase_33 AC 73 ms
11,108 KB
testcase_34 AC 225 ms
10,992 KB
testcase_35 AC 916 ms
10,988 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