結果

問題 No.2260 Adic Sum
ユーザー startcppstartcpp
提出日時 2023-04-15 17:19:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 78,124 KB
実行使用メモリ 9,304 KB
最終ジャッジ日時 2024-10-11 03:04:30
合計ジャッジ時間 4,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 4 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 25 ms
5,248 KB
testcase_15 AC 37 ms
6,076 KB
testcase_16 AC 22 ms
5,248 KB
testcase_17 AC 41 ms
6,388 KB
testcase_18 AC 237 ms
9,244 KB
testcase_19 AC 256 ms
9,296 KB
testcase_20 AC 181 ms
9,272 KB
testcase_21 AC 189 ms
9,284 KB
testcase_22 AC 160 ms
9,268 KB
testcase_23 AC 107 ms
8,716 KB
testcase_24 AC 243 ms
9,304 KB
testcase_25 AC 65 ms
8,672 KB
testcase_26 AC 63 ms
8,656 KB
testcase_27 AC 66 ms
8,700 KB
testcase_28 AC 64 ms
8,668 KB
testcase_29 AC 64 ms
8,676 KB
testcase_30 AC 54 ms
6,548 KB
testcase_31 AC 115 ms
6,748 KB
testcase_32 AC 115 ms
6,872 KB
testcase_33 AC 56 ms
8,852 KB
testcase_34 AC 100 ms
8,976 KB
testcase_35 AC 391 ms
9,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <unordered_map>
#define int long long
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;

int n, p;
int a[100000];

//modは素数pの累乗
int solve(int mod) {
	unordered_map<int, int> mp;
	int i;
	rep(i, n) mp[a[i] % mod]++;

	int ret = 0;
	for (unordered_map<int, int>::iterator it = mp.begin(); it != mp.end(); it++) {
		int cnt = it->second;
		ret += cnt * (cnt - 1) / 2;
	}
	return ret;
}

signed main() {
	int i;

	cin >> n >> p;
	rep(i, n) cin >> a[i];

	int mul = p;
	int ans = 0;
	while (mul <= 1000000000) {
		ans += solve(mul);
		mul *= p;
	}

	cout << ans << endl;
	return 0;
}
0