結果

問題 No.2260 Adic Sum
ユーザー KudeKude
提出日時 2023-04-07 21:25:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 178,944 KB
最終ジャッジ日時 2024-10-06 06:54:57
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,484 KB
testcase_01 AC 37 ms
54,432 KB
testcase_02 AC 37 ms
53,440 KB
testcase_03 AC 38 ms
55,316 KB
testcase_04 AC 40 ms
54,092 KB
testcase_05 AC 42 ms
53,972 KB
testcase_06 AC 41 ms
54,280 KB
testcase_07 AC 39 ms
54,640 KB
testcase_08 AC 47 ms
62,828 KB
testcase_09 AC 40 ms
53,880 KB
testcase_10 AC 44 ms
62,028 KB
testcase_11 AC 38 ms
53,856 KB
testcase_12 AC 49 ms
65,660 KB
testcase_13 AC 44 ms
63,196 KB
testcase_14 AC 60 ms
79,976 KB
testcase_15 AC 68 ms
87,108 KB
testcase_16 AC 56 ms
76,248 KB
testcase_17 AC 69 ms
89,220 KB
testcase_18 AC 257 ms
154,504 KB
testcase_19 AC 289 ms
163,800 KB
testcase_20 AC 201 ms
142,548 KB
testcase_21 AC 206 ms
142,456 KB
testcase_22 AC 187 ms
144,880 KB
testcase_23 AC 147 ms
114,280 KB
testcase_24 AC 270 ms
162,268 KB
testcase_25 AC 87 ms
102,040 KB
testcase_26 AC 86 ms
102,012 KB
testcase_27 AC 89 ms
102,460 KB
testcase_28 AC 93 ms
103,504 KB
testcase_29 AC 88 ms
101,800 KB
testcase_30 AC 92 ms
91,044 KB
testcase_31 AC 211 ms
90,936 KB
testcase_32 AC 209 ms
90,892 KB
testcase_33 AC 88 ms
92,276 KB
testcase_34 AC 122 ms
109,540 KB
testcase_35 AC 416 ms
178,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n, p = map(int, input().split())
a = list(map(int, input().split()))
amx = max(a)
pk = p
ans = 0
while pk <= amx:
    c = Counter()
    for x in a:
        r = x % pk
        ans += c[r]
        c[r] += 1
    pk *= p
print(ans)
0