結果

問題 No.2260 Adic Sum
ユーザー RedstoneGamer22RedstoneGamer22
提出日時 2023-04-10 21:50:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 207,704 KB
実行使用メモリ 8,916 KB
最終ジャッジ日時 2024-10-06 08:43:51
合計ジャッジ時間 6,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 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 3 ms
5,248 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 24 ms
5,248 KB
testcase_15 AC 36 ms
5,860 KB
testcase_16 AC 22 ms
5,248 KB
testcase_17 AC 40 ms
6,016 KB
testcase_18 AC 228 ms
8,884 KB
testcase_19 AC 246 ms
8,912 KB
testcase_20 AC 172 ms
8,900 KB
testcase_21 AC 174 ms
8,904 KB
testcase_22 AC 156 ms
8,896 KB
testcase_23 AC 105 ms
8,324 KB
testcase_24 AC 226 ms
8,916 KB
testcase_25 AC 63 ms
8,176 KB
testcase_26 AC 62 ms
8,304 KB
testcase_27 AC 65 ms
8,324 KB
testcase_28 AC 64 ms
8,308 KB
testcase_29 AC 62 ms
8,440 KB
testcase_30 AC 53 ms
6,032 KB
testcase_31 AC 112 ms
6,352 KB
testcase_32 AC 112 ms
6,352 KB
testcase_33 AC 54 ms
8,336 KB
testcase_34 AC 98 ms
8,456 KB
testcase_35 AC 361 ms
8,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main()
{
    int n, p; cin >> n >> p;
    vector<int> a(n); for(auto &e : a) cin >> e;

    int64_t ans = 0;
    for(int64_t pow = p; pow <= 1e9 + 1; pow *= p) {
        unordered_map<int, int> hm;
        for(auto e : a) hm[e % pow] += 1;

        for(auto e : hm) {
            ans += 1LL * e.second * (e.second - 1) / 2;
        }
    }

    cout << ans << endl;

    return 0;
}
0