結果

問題 No.2260 Adic Sum
ユーザー yabityabit
提出日時 2023-06-28 12:27:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 178,972 KB
最終ジャッジ日時 2024-07-05 05:29:00
合計ジャッジ時間 5,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 40 ms
53,504 KB
testcase_03 AC 40 ms
54,016 KB
testcase_04 AC 40 ms
54,144 KB
testcase_05 AC 40 ms
54,016 KB
testcase_06 AC 40 ms
54,144 KB
testcase_07 AC 40 ms
53,760 KB
testcase_08 AC 48 ms
61,952 KB
testcase_09 AC 41 ms
54,400 KB
testcase_10 AC 47 ms
61,568 KB
testcase_11 AC 42 ms
53,888 KB
testcase_12 AC 52 ms
64,000 KB
testcase_13 AC 48 ms
62,976 KB
testcase_14 AC 65 ms
77,952 KB
testcase_15 AC 85 ms
85,888 KB
testcase_16 AC 72 ms
75,776 KB
testcase_17 AC 74 ms
88,576 KB
testcase_18 AC 273 ms
154,448 KB
testcase_19 AC 292 ms
163,828 KB
testcase_20 AC 213 ms
142,832 KB
testcase_21 AC 215 ms
142,836 KB
testcase_22 AC 190 ms
145,196 KB
testcase_23 AC 154 ms
114,672 KB
testcase_24 AC 289 ms
162,340 KB
testcase_25 AC 90 ms
102,656 KB
testcase_26 AC 86 ms
99,456 KB
testcase_27 AC 91 ms
103,040 KB
testcase_28 AC 90 ms
102,892 KB
testcase_29 AC 89 ms
103,168 KB
testcase_30 AC 97 ms
91,100 KB
testcase_31 AC 207 ms
91,136 KB
testcase_32 AC 197 ms
91,136 KB
testcase_33 AC 101 ms
92,464 KB
testcase_34 AC 125 ms
109,624 KB
testcase_35 AC 436 ms
178,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, ceil
from collections import defaultdict
N,P = map(int, input().split())
A = list(map(int, input().split()))
M = max(A)
ans = 0
i = 1
while pow(P, i) <= M:
    D = defaultdict(int)
    p = pow(P, i)
    for j in range(N):
        D[A[j] % p] += 1
    for v in D.values():
        ans += v*(v-1)//2
    i += 1
print(ans)
0