結果

問題 No.2260 Adic Sum
ユーザー H20H20
提出日時 2023-04-07 21:28:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 897 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 229,712 KB
最終ジャッジ日時 2024-10-06 07:00:39
合計ジャッジ時間 17,766 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,424 KB
testcase_01 AC 41 ms
54,380 KB
testcase_02 AC 40 ms
54,448 KB
testcase_03 AC 41 ms
54,668 KB
testcase_04 AC 48 ms
62,756 KB
testcase_05 AC 46 ms
62,212 KB
testcase_06 AC 47 ms
61,460 KB
testcase_07 AC 47 ms
61,964 KB
testcase_08 AC 70 ms
76,248 KB
testcase_09 AC 55 ms
71,476 KB
testcase_10 AC 68 ms
76,128 KB
testcase_11 AC 52 ms
65,276 KB
testcase_12 AC 69 ms
76,184 KB
testcase_13 AC 76 ms
76,560 KB
testcase_14 AC 352 ms
115,508 KB
testcase_15 AC 512 ms
150,224 KB
testcase_16 AC 299 ms
109,428 KB
testcase_17 AC 560 ms
160,292 KB
testcase_18 AC 702 ms
217,752 KB
testcase_19 AC 737 ms
210,708 KB
testcase_20 AC 779 ms
209,200 KB
testcase_21 AC 778 ms
202,908 KB
testcase_22 AC 805 ms
200,260 KB
testcase_23 AC 836 ms
197,632 KB
testcase_24 AC 746 ms
210,468 KB
testcase_25 AC 834 ms
224,928 KB
testcase_26 AC 797 ms
214,972 KB
testcase_27 AC 877 ms
226,628 KB
testcase_28 AC 859 ms
221,932 KB
testcase_29 AC 867 ms
229,712 KB
testcase_30 AC 897 ms
223,160 KB
testcase_31 AC 582 ms
195,648 KB
testcase_32 AC 591 ms
197,400 KB
testcase_33 AC 747 ms
223,244 KB
testcase_34 AC 682 ms
189,860 KB
testcase_35 AC 703 ms
210,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,P = map(int, input().split())
A = list(map(int, input().split()))
ans = 0
for i in range(1,50):
    p = P**i
    C = collections.Counter()
    for a in A:
        C[a%p]+=1
    for k,v in C.items():
        ans+=v*(v-1)//2

print(ans)
0