結果

問題 No.2260 Adic Sum
ユーザー ks2mks2m
提出日時 2023-04-07 23:40:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 999 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 2,608 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 57,820 KB
最終ジャッジ日時 2024-10-06 07:24:10
合計ジャッジ時間 14,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,544 KB
testcase_01 AC 52 ms
36,940 KB
testcase_02 AC 54 ms
37,120 KB
testcase_03 AC 53 ms
37,216 KB
testcase_04 AC 53 ms
37,128 KB
testcase_05 AC 52 ms
36,788 KB
testcase_06 AC 52 ms
36,580 KB
testcase_07 AC 54 ms
36,788 KB
testcase_08 AC 85 ms
38,228 KB
testcase_09 AC 57 ms
36,708 KB
testcase_10 AC 71 ms
38,160 KB
testcase_11 AC 54 ms
36,908 KB
testcase_12 AC 90 ms
38,748 KB
testcase_13 AC 83 ms
38,760 KB
testcase_14 AC 211 ms
48,140 KB
testcase_15 AC 258 ms
48,488 KB
testcase_16 AC 196 ms
46,160 KB
testcase_17 AC 261 ms
47,812 KB
testcase_18 AC 666 ms
56,116 KB
testcase_19 AC 762 ms
55,872 KB
testcase_20 AC 529 ms
55,284 KB
testcase_21 AC 581 ms
56,304 KB
testcase_22 AC 515 ms
55,960 KB
testcase_23 AC 447 ms
55,100 KB
testcase_24 AC 694 ms
56,512 KB
testcase_25 AC 305 ms
54,404 KB
testcase_26 AC 320 ms
54,208 KB
testcase_27 AC 313 ms
54,224 KB
testcase_28 AC 314 ms
54,532 KB
testcase_29 AC 289 ms
54,248 KB
testcase_30 AC 314 ms
52,404 KB
testcase_31 AC 568 ms
54,504 KB
testcase_32 AC 598 ms
54,440 KB
testcase_33 AC 313 ms
54,784 KB
testcase_34 AC 432 ms
55,852 KB
testcase_35 AC 999 ms
57,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int p = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long ans = 0;
		long p2 = p;
		while (p2 <= 1000000000) {
			Map<Integer, Integer> map = new HashMap<>();
			for (int i = 0; i < n; i++) {
				int k = (int) (a[i] % p2);
				int v = map.getOrDefault(k, 0);
				ans += v;
				map.put(k, v + 1);
			}
			p2 *= p;
		}
		System.out.println(ans);
	}
}
0