結果

問題 No.2260 Adic Sum
ユーザー kotatsugamekotatsugame
提出日時 2023-04-09 06:05:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 864 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-10-06 07:28:19
合計ジャッジ時間 4,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 4 ms
6,816 KB
testcase_14 AC 39 ms
7,936 KB
testcase_15 AC 57 ms
9,596 KB
testcase_16 AC 33 ms
7,296 KB
testcase_17 AC 64 ms
9,952 KB
testcase_18 AC 84 ms
6,816 KB
testcase_19 AC 89 ms
6,820 KB
testcase_20 AC 80 ms
6,816 KB
testcase_21 AC 81 ms
6,824 KB
testcase_22 AC 76 ms
6,816 KB
testcase_23 AC 69 ms
6,816 KB
testcase_24 AC 91 ms
6,820 KB
testcase_25 AC 114 ms
13,696 KB
testcase_26 AC 103 ms
13,568 KB
testcase_27 AC 116 ms
14,208 KB
testcase_28 AC 110 ms
13,696 KB
testcase_29 AC 110 ms
13,824 KB
testcase_30 AC 73 ms
6,816 KB
testcase_31 AC 97 ms
9,584 KB
testcase_32 AC 96 ms
9,660 KB
testcase_33 AC 59 ms
6,820 KB
testcase_34 AC 57 ms
6,820 KB
testcase_35 AC 108 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
using namespace std;
int P;
long ans;
void solve(const vector<int>&A)
{
	if(A.size()<=1)return;
	map<int,vector<int> >mp;
	for(int i=0;i<A.size();i++)mp[A[i]%P].push_back(A[i]/P);
	for(auto it=mp.begin();it!=mp.end();it++)
	{
		int n=it->second.size();
		ans+=(long)n*(n-1)/2;
		solve(it->second);
	}
}
int main()
{
	int N;cin>>N>>P;
	vector<int>A(N);
	for(int i=0;i<N;i++)cin>>A[i];
	solve(A);
	cout<<ans<<endl;
}
0