結果

問題 No.2260 Adic Sum
ユーザー shim0shim0
提出日時 2023-04-07 22:44:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,190 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 266,124 KB
最終ジャッジ日時 2024-10-06 07:21:37
合計ジャッジ時間 22,085 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,136 KB
testcase_01 AC 46 ms
60,672 KB
testcase_02 AC 48 ms
58,496 KB
testcase_03 AC 43 ms
58,880 KB
testcase_04 AC 52 ms
66,048 KB
testcase_05 AC 52 ms
66,048 KB
testcase_06 AC 52 ms
65,792 KB
testcase_07 AC 53 ms
66,560 KB
testcase_08 AC 84 ms
76,416 KB
testcase_09 AC 68 ms
76,072 KB
testcase_10 AC 81 ms
76,544 KB
testcase_11 AC 60 ms
71,168 KB
testcase_12 AC 82 ms
76,772 KB
testcase_13 AC 95 ms
76,800 KB
testcase_14 AC 461 ms
115,336 KB
testcase_15 AC 665 ms
159,044 KB
testcase_16 AC 392 ms
109,272 KB
testcase_17 AC 748 ms
174,184 KB
testcase_18 AC 745 ms
181,260 KB
testcase_19 AC 805 ms
190,608 KB
testcase_20 AC 910 ms
192,540 KB
testcase_21 AC 913 ms
189,352 KB
testcase_22 AC 955 ms
201,660 KB
testcase_23 AC 946 ms
131,844 KB
testcase_24 AC 744 ms
121,460 KB
testcase_25 AC 1,172 ms
256,800 KB
testcase_26 AC 1,120 ms
239,760 KB
testcase_27 AC 1,190 ms
266,124 KB
testcase_28 AC 1,149 ms
258,044 KB
testcase_29 AC 1,187 ms
258,920 KB
testcase_30 AC 1,104 ms
197,252 KB
testcase_31 AC 734 ms
161,656 KB
testcase_32 AC 733 ms
162,232 KB
testcase_33 AC 1,080 ms
252,592 KB
testcase_34 AC 956 ms
210,196 KB
testcase_35 AC 762 ms
167,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial

n, p = map(int, input().split())
a = list(map(int, input().split()))

b = []
k = [[] for _ in range(40)]
for i in range(n):
    a_i = a[i]
    count = 0
    while a_i % p == 0:
        a_i //= p
        count += 1
    k[count].append(a[i])
    b.append(count)
b.sort()

ans = 0
for i in range(n):
    ans += b[i] * (n - (i + 1))
for i in range(40):
    for j in range(1, 40):
        num = p ** j
        k_dict = {}
        for k_num in k[i]:
            k_dict.setdefault(k_num // p ** i % num, 0)
            k_dict[k_num // p ** i % num] += 1
        for key, value in k_dict.items():
            ans += value * (value - 1) // 2

print(ans)
0