結果
問題 | No.2260 Adic Sum |
ユーザー | sui |
提出日時 | 2023-04-08 05:28:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 834 ms / 2,000 ms |
コード長 | 1,355 bytes |
コンパイル時間 | 4,095 ms |
コンパイル使用メモリ | 271,996 KB |
実行使用メモリ | 71,552 KB |
最終ジャッジ日時 | 2024-10-06 07:24:43 |
合計ジャッジ時間 | 9,897 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 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 | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 32 ms
7,296 KB |
testcase_15 | AC | 46 ms
8,832 KB |
testcase_16 | AC | 28 ms
6,784 KB |
testcase_17 | AC | 55 ms
9,040 KB |
testcase_18 | AC | 469 ms
44,544 KB |
testcase_19 | AC | 519 ms
47,232 KB |
testcase_20 | AC | 346 ms
33,408 KB |
testcase_21 | AC | 347 ms
33,920 KB |
testcase_22 | AC | 309 ms
29,568 KB |
testcase_23 | AC | 192 ms
21,120 KB |
testcase_24 | AC | 487 ms
44,032 KB |
testcase_25 | AC | 79 ms
12,288 KB |
testcase_26 | AC | 80 ms
12,052 KB |
testcase_27 | AC | 86 ms
12,800 KB |
testcase_28 | AC | 80 ms
12,172 KB |
testcase_29 | AC | 83 ms
12,416 KB |
testcase_30 | AC | 75 ms
9,216 KB |
testcase_31 | AC | 145 ms
12,928 KB |
testcase_32 | AC | 143 ms
12,800 KB |
testcase_33 | AC | 72 ms
13,184 KB |
testcase_34 | AC | 112 ms
19,072 KB |
testcase_35 | AC | 834 ms
71,552 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep1(i, n) for (int i = 1; i < (int)(n+1); i++) #define repn(i,a,b) for (int i = (int)(a) ; i < (int)(b+1); i++) #define repv(i, n) for (int i = (int)(n-1); i >= 0; i--) #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() #define sz(x) ((int)(x).size()) #define uni(v) v.erase(unique(v.begin(), v.end()), v.end()); using ll = long long; using P = pair<int,int>; using mint = modint998244353; ostream& operator<< (ostream& os, const mint &x) {os << x.val(); return os;} #ifdef LOCAL #include <debug.hpp> #define debug(...) debug::multi_print(#__VA_ARGS__, __VA_ARGS__) #else #define debug(...) (static_cast<void>(0)) #endif int main(){ int n,p; cin >> n >> p; vector<int> a(n); for(auto &x : a) cin >> x; vector<map<int,int>> amari; ll powp = p, max_a = *max_element(all(a)); while(powp <= max_a){ map<int,int> mp; for(auto x : a){ mp[x % powp]++; } amari.push_back(mp); powp *= p; } ll ans = 0; for(int i = 0; i < sz(amari); i++){ for(auto p: amari[i]){ ans += ((ll)p.second*(p.second-1)/2); } } cout << ans << endl; return 0; }