結果

問題 No.2260 Adic Sum
ユーザー hir355hir355
提出日時 2023-04-07 21:26:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 199,508 KB
最終ジャッジ日時 2024-10-06 06:57:23
合計ジャッジ時間 6,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 41 ms
54,144 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 40 ms
53,760 KB
testcase_06 AC 40 ms
53,632 KB
testcase_07 AC 41 ms
53,632 KB
testcase_08 AC 52 ms
63,872 KB
testcase_09 AC 48 ms
61,184 KB
testcase_10 AC 51 ms
63,488 KB
testcase_11 AC 46 ms
60,160 KB
testcase_12 AC 54 ms
64,640 KB
testcase_13 AC 52 ms
64,896 KB
testcase_14 AC 77 ms
85,796 KB
testcase_15 AC 91 ms
97,136 KB
testcase_16 AC 73 ms
82,688 KB
testcase_17 AC 94 ms
100,992 KB
testcase_18 AC 348 ms
195,940 KB
testcase_19 AC 368 ms
196,960 KB
testcase_20 AC 277 ms
143,432 KB
testcase_21 AC 278 ms
142,600 KB
testcase_22 AC 247 ms
159,220 KB
testcase_23 AC 182 ms
128,892 KB
testcase_24 AC 360 ms
193,260 KB
testcase_25 AC 118 ms
106,576 KB
testcase_26 AC 114 ms
103,680 KB
testcase_27 AC 119 ms
107,136 KB
testcase_28 AC 118 ms
107,008 KB
testcase_29 AC 119 ms
106,916 KB
testcase_30 AC 121 ms
100,204 KB
testcase_31 AC 328 ms
160,756 KB
testcase_32 AC 331 ms
160,800 KB
testcase_33 AC 117 ms
106,412 KB
testcase_34 AC 189 ms
153,052 KB
testcase_35 AC 511 ms
199,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n, p = map(int, input().split())
a = list(map(int, input().split()))
t = 1
ans = 0
while t <= 10 ** 10:
    t *= p
    d = defaultdict(int)
    for x in a:
        d[x % t] += 1
    for v in d.values():
        ans += v * (v - 1) // 2
print(ans)
0