結果

問題 No.2260 Adic Sum
ユーザー SSRSSSRS
提出日時 2023-04-07 21:22:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 891 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 174,356 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-10-06 06:52:08
合計ジャッジ時間 7,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 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 32 ms
5,368 KB
testcase_15 AC 46 ms
6,124 KB
testcase_16 AC 28 ms
5,248 KB
testcase_17 AC 55 ms
6,420 KB
testcase_18 AC 494 ms
7,936 KB
testcase_19 AC 527 ms
8,192 KB
testcase_20 AC 360 ms
8,064 KB
testcase_21 AC 381 ms
8,192 KB
testcase_22 AC 314 ms
8,064 KB
testcase_23 AC 207 ms
8,448 KB
testcase_24 AC 532 ms
8,320 KB
testcase_25 AC 82 ms
7,936 KB
testcase_26 AC 82 ms
7,808 KB
testcase_27 AC 83 ms
8,188 KB
testcase_28 AC 79 ms
7,936 KB
testcase_29 AC 79 ms
7,936 KB
testcase_30 AC 81 ms
6,272 KB
testcase_31 AC 201 ms
6,656 KB
testcase_32 AC 192 ms
6,656 KB
testcase_33 AC 84 ms
8,448 KB
testcase_34 AC 185 ms
8,448 KB
testcase_35 AC 891 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, P;
  cin >> N >> P;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  long long ans = 0;
  long long x = P;
  while (true){
    map<int, int> mp;
    for (int i = 0; i < N; i++){
      ans += mp[A[i] % x];
      mp[A[i] % x]++;
    }
    x *= P;
    if (x > 1000000000){
      break;
    }
  }
  cout << ans << endl;
}
0