結果

問題 No.2260 Adic Sum
ユーザー karinohitokarinohito
提出日時 2023-03-15 00:32:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 935 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 2,166 ms
コンパイル使用メモリ 209,616 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-10-06 06:51:26
合計ジャッジ時間 8,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 4 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 4 ms
5,248 KB
testcase_14 AC 35 ms
6,016 KB
testcase_15 AC 46 ms
7,000 KB
testcase_16 AC 28 ms
5,632 KB
testcase_17 AC 53 ms
7,296 KB
testcase_18 AC 522 ms
9,344 KB
testcase_19 AC 560 ms
9,728 KB
testcase_20 AC 377 ms
9,600 KB
testcase_21 AC 391 ms
9,600 KB
testcase_22 AC 343 ms
9,472 KB
testcase_23 AC 225 ms
9,856 KB
testcase_24 AC 521 ms
9,856 KB
testcase_25 AC 81 ms
9,344 KB
testcase_26 AC 85 ms
9,344 KB
testcase_27 AC 91 ms
9,600 KB
testcase_28 AC 83 ms
9,344 KB
testcase_29 AC 84 ms
9,472 KB
testcase_30 AC 83 ms
7,168 KB
testcase_31 AC 207 ms
7,808 KB
testcase_32 AC 208 ms
7,808 KB
testcase_33 AC 93 ms
9,984 KB
testcase_34 AC 222 ms
9,908 KB
testcase_35 AC 935 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ll N,P;
    cin>>N>>P;
    vector<int> A(N);
    for(int i=0;i<N;i++)cin>>A[i];

    ll an=0;
    ll p=P;
    while(p<1e9+3){
        map<ll,ll> M;
        for(int i=0;i<N;i++){
            an+=M[A[i]%p];
            M[A[i]%p]++;
        }
        p*=P;
    }
    cout<<an<<endl;
    
}
0