結果

問題 No.2260 Adic Sum
ユーザー lloyzlloyz
提出日時 2023-04-07 23:23:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 490 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 179,328 KB
最終ジャッジ日時 2024-10-06 07:23:06
合計ジャッジ時間 6,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 46 ms
53,376 KB
testcase_06 AC 41 ms
53,888 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 AC 50 ms
62,464 KB
testcase_09 AC 44 ms
58,752 KB
testcase_10 AC 49 ms
61,312 KB
testcase_11 AC 41 ms
53,632 KB
testcase_12 AC 54 ms
64,000 KB
testcase_13 AC 49 ms
62,208 KB
testcase_14 AC 66 ms
78,208 KB
testcase_15 AC 75 ms
86,144 KB
testcase_16 AC 60 ms
74,752 KB
testcase_17 AC 76 ms
88,192 KB
testcase_18 AC 305 ms
156,992 KB
testcase_19 AC 328 ms
163,648 KB
testcase_20 AC 236 ms
142,564 KB
testcase_21 AC 244 ms
142,512 KB
testcase_22 AC 221 ms
144,632 KB
testcase_23 AC 169 ms
114,508 KB
testcase_24 AC 323 ms
162,248 KB
testcase_25 AC 92 ms
102,784 KB
testcase_26 AC 88 ms
99,828 KB
testcase_27 AC 93 ms
103,296 KB
testcase_28 AC 92 ms
102,784 KB
testcase_29 AC 92 ms
103,040 KB
testcase_30 AC 102 ms
90,972 KB
testcase_31 AC 278 ms
90,880 KB
testcase_32 AC 282 ms
90,752 KB
testcase_33 AC 99 ms
92,616 KB
testcase_34 AC 139 ms
109,248 KB
testcase_35 AC 490 ms
179,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

ans = 0
pow_p = p
while pow_p < max(A) + 10:
    M = defaultdict(int)
    for i in range(n):
        ans += M[A[i] % pow_p]
        M[A[i] % pow_p] += 1
    pow_p *= p
print(ans)
0