結果

問題 No.2260 Adic Sum
ユーザー ruthenruthen
提出日時 2023-04-14 23:50:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 907 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 212,920 KB
実行使用メモリ 63,604 KB
最終ジャッジ日時 2024-10-10 14:51:52
合計ジャッジ時間 7,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 14 ms
6,816 KB
testcase_15 AC 19 ms
6,820 KB
testcase_16 AC 12 ms
6,816 KB
testcase_17 AC 21 ms
6,820 KB
testcase_18 AC 431 ms
38,648 KB
testcase_19 AC 521 ms
41,052 KB
testcase_20 AC 291 ms
27,808 KB
testcase_21 AC 294 ms
29,108 KB
testcase_22 AC 236 ms
24,628 KB
testcase_23 AC 122 ms
15,592 KB
testcase_24 AC 447 ms
37,784 KB
testcase_25 AC 34 ms
8,568 KB
testcase_26 AC 33 ms
8,552 KB
testcase_27 AC 35 ms
8,596 KB
testcase_28 AC 33 ms
8,560 KB
testcase_29 AC 32 ms
8,572 KB
testcase_30 AC 34 ms
6,820 KB
testcase_31 AC 163 ms
9,420 KB
testcase_32 AC 165 ms
9,288 KB
testcase_33 AC 32 ms
8,892 KB
testcase_34 AC 101 ms
23,140 KB
testcase_35 AC 907 ms
63,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef _RUTHEN
#include <debug.hpp>
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
template <class T> using V = vector<T>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    long long N, P;
    cin >> N >> P;
    V<long long> A(N);
    rep(i, N) cin >> A[i];
    V<long long> B;
    long long c = 1;
    while (c <= 1000000000LL / P) {
        B.push_back(c * P);
        c *= P;
    }
    show(B);
    int K = B.size();
    long long ans = 0;
    V<unordered_map<long long, int>> r(K);
    rep(i, N) {
        rep(j, K) {
            ans += r[j][A[i] % B[j]];
            r[j][A[i] % B[j]]++;
        }
    }
    cout << ans << '\n';
    return 0;
}
0