結果

問題 No.2260 Adic Sum
ユーザー rlangevinrlangevin
提出日時 2023-04-07 21:33:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 212,716 KB
最終ジャッジ日時 2024-10-06 07:06:15
合計ジャッジ時間 14,689 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,016 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 44 ms
54,144 KB
testcase_04 AC 49 ms
61,184 KB
testcase_05 AC 50 ms
61,312 KB
testcase_06 AC 53 ms
61,184 KB
testcase_07 AC 49 ms
61,312 KB
testcase_08 AC 70 ms
76,436 KB
testcase_09 AC 57 ms
68,480 KB
testcase_10 AC 69 ms
76,372 KB
testcase_11 AC 53 ms
64,128 KB
testcase_12 AC 69 ms
76,416 KB
testcase_13 AC 75 ms
76,488 KB
testcase_14 AC 297 ms
108,416 KB
testcase_15 AC 427 ms
134,760 KB
testcase_16 AC 258 ms
105,572 KB
testcase_17 AC 479 ms
143,532 KB
testcase_18 AC 555 ms
212,716 KB
testcase_19 AC 583 ms
210,456 KB
testcase_20 AC 623 ms
207,016 KB
testcase_21 AC 645 ms
201,964 KB
testcase_22 AC 673 ms
198,580 KB
testcase_23 AC 660 ms
161,556 KB
testcase_24 AC 603 ms
206,556 KB
testcase_25 AC 683 ms
195,868 KB
testcase_26 AC 654 ms
179,708 KB
testcase_27 AC 701 ms
191,700 KB
testcase_28 AC 671 ms
188,252 KB
testcase_29 AC 685 ms
191,196 KB
testcase_30 AC 703 ms
184,508 KB
testcase_31 AC 356 ms
175,092 KB
testcase_32 AC 358 ms
174,960 KB
testcase_33 AC 623 ms
182,824 KB
testcase_34 AC 570 ms
182,668 KB
testcase_35 AC 547 ms
196,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, P = map(int, input().split())
A = list(map(int, input().split()))
now = 1
ans = 0
for _ in range(35):
    now *= P
    D = defaultdict(int)
    for i in range(N):
        D[A[i]%now] += 1
    for k, v in D.items():
        ans += v * (v - 1) // 2
print(ans)
0