結果

問題 No.2260 Adic Sum
ユーザー publfl2publfl2
提出日時 2023-04-07 21:26:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,077 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 54,016 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-10-06 06:56:33
合計ジャッジ時間 7,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 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 24 ms
5,248 KB
testcase_15 AC 35 ms
5,888 KB
testcase_16 AC 21 ms
5,248 KB
testcase_17 AC 39 ms
6,144 KB
testcase_18 AC 549 ms
7,808 KB
testcase_19 AC 659 ms
8,192 KB
testcase_20 AC 430 ms
7,936 KB
testcase_21 AC 440 ms
8,192 KB
testcase_22 AC 345 ms
7,936 KB
testcase_23 AC 226 ms
8,192 KB
testcase_24 AC 610 ms
8,448 KB
testcase_25 AC 64 ms
7,808 KB
testcase_26 AC 64 ms
7,808 KB
testcase_27 AC 66 ms
8,064 KB
testcase_28 AC 66 ms
7,936 KB
testcase_29 AC 66 ms
7,936 KB
testcase_30 AC 70 ms
6,272 KB
testcase_31 AC 203 ms
6,656 KB
testcase_32 AC 201 ms
6,784 KB
testcase_33 AC 65 ms
8,192 KB
testcase_34 AC 179 ms
8,192 KB
testcase_35 AC 1,077 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <map>

std::map<int,int> M;
int x[100010];
int main()
{
	int a;
	long long int b;
	scanf("%d%lld",&a,&b);
	for(int i=1;i<=a;i++) scanf("%d",&x[i]);
	
	long long int p = b, ans = 0;
	while(p<=1000000000)
	{
		M.clear();
		for(int i=1;i<=a;i++)
		{
			M[x[i]%p]++;
			ans += (M[x[i]%p]-1);
		}
		p*=b;
	}
	printf("%lld",ans);
}
0