結果

問題 No.2260 Adic Sum
ユーザー okapinokapin
提出日時 2023-04-07 21:54:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 179,072 KB
最終ジャッジ日時 2024-10-06 07:15:53
合計ジャッジ時間 5,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,464 KB
testcase_01 AC 38 ms
53,748 KB
testcase_02 AC 42 ms
54,744 KB
testcase_03 AC 43 ms
53,988 KB
testcase_04 AC 38 ms
53,812 KB
testcase_05 AC 41 ms
55,384 KB
testcase_06 AC 40 ms
53,840 KB
testcase_07 AC 40 ms
54,080 KB
testcase_08 AC 46 ms
62,500 KB
testcase_09 AC 44 ms
60,348 KB
testcase_10 AC 46 ms
61,652 KB
testcase_11 AC 40 ms
54,064 KB
testcase_12 AC 52 ms
65,296 KB
testcase_13 AC 46 ms
63,368 KB
testcase_14 AC 61 ms
78,244 KB
testcase_15 AC 69 ms
85,724 KB
testcase_16 AC 58 ms
75,716 KB
testcase_17 AC 75 ms
89,384 KB
testcase_18 AC 268 ms
155,252 KB
testcase_19 AC 284 ms
163,784 KB
testcase_20 AC 207 ms
142,412 KB
testcase_21 AC 216 ms
142,432 KB
testcase_22 AC 190 ms
144,612 KB
testcase_23 AC 155 ms
114,468 KB
testcase_24 AC 275 ms
162,296 KB
testcase_25 AC 85 ms
102,588 KB
testcase_26 AC 83 ms
99,408 KB
testcase_27 AC 84 ms
103,400 KB
testcase_28 AC 84 ms
103,440 KB
testcase_29 AC 87 ms
102,824 KB
testcase_30 AC 99 ms
90,708 KB
testcase_31 AC 195 ms
91,116 KB
testcase_32 AC 192 ms
91,008 KB
testcase_33 AC 93 ms
92,636 KB
testcase_34 AC 122 ms
109,592 KB
testcase_35 AC 420 ms
179,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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