結果

問題 No.2260 Adic Sum
ユーザー ntudantuda
提出日時 2023-04-07 23:33:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 179,252 KB
最終ジャッジ日時 2024-10-06 07:22:45
合計ジャッジ時間 5,670 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 46 ms
53,120 KB
testcase_06 AC 41 ms
54,016 KB
testcase_07 AC 42 ms
53,760 KB
testcase_08 AC 50 ms
61,952 KB
testcase_09 AC 42 ms
53,760 KB
testcase_10 AC 47 ms
61,056 KB
testcase_11 AC 42 ms
53,632 KB
testcase_12 AC 53 ms
64,112 KB
testcase_13 AC 48 ms
62,848 KB
testcase_14 AC 65 ms
78,208 KB
testcase_15 AC 73 ms
85,504 KB
testcase_16 AC 61 ms
75,392 KB
testcase_17 AC 77 ms
88,940 KB
testcase_18 AC 287 ms
157,020 KB
testcase_19 AC 304 ms
163,748 KB
testcase_20 AC 225 ms
142,684 KB
testcase_21 AC 227 ms
142,552 KB
testcase_22 AC 203 ms
144,612 KB
testcase_23 AC 157 ms
114,308 KB
testcase_24 AC 295 ms
161,932 KB
testcase_25 AC 88 ms
102,272 KB
testcase_26 AC 86 ms
99,456 KB
testcase_27 AC 90 ms
103,168 KB
testcase_28 AC 89 ms
102,528 KB
testcase_29 AC 90 ms
102,912 KB
testcase_30 AC 101 ms
90,840 KB
testcase_31 AC 203 ms
90,928 KB
testcase_32 AC 200 ms
90,840 KB
testcase_33 AC 96 ms
92,584 KB
testcase_34 AC 128 ms
109,984 KB
testcase_35 AC 446 ms
179,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, P = map(int, input().split())
A = list(map(int, input().split()))
P2 = P
maxa = max(A)
ans = 0
while P2 <= maxa:
    dic = defaultdict(int)
    for a in A:
        dic[a % P2] += 1
    for v in dic.values():
        if v > 1:
            ans += v * (v - 1) // 2
    P2 *= P
print(ans)
0