結果

問題 No.2260 Adic Sum
ユーザー 👑 KazunKazun
提出日時 2023-04-07 21:30:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,864 KB
実行使用メモリ 178,944 KB
最終ジャッジ日時 2024-10-06 07:02:36
合計ジャッジ時間 5,634 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,544 KB
testcase_01 AC 43 ms
53,780 KB
testcase_02 AC 40 ms
55,184 KB
testcase_03 AC 41 ms
53,932 KB
testcase_04 AC 41 ms
55,452 KB
testcase_05 AC 45 ms
53,952 KB
testcase_06 AC 40 ms
55,124 KB
testcase_07 AC 41 ms
53,996 KB
testcase_08 AC 48 ms
62,004 KB
testcase_09 AC 42 ms
54,412 KB
testcase_10 AC 46 ms
61,608 KB
testcase_11 AC 41 ms
54,104 KB
testcase_12 AC 51 ms
63,560 KB
testcase_13 AC 49 ms
62,904 KB
testcase_14 AC 63 ms
78,008 KB
testcase_15 AC 71 ms
85,612 KB
testcase_16 AC 60 ms
76,008 KB
testcase_17 AC 76 ms
89,140 KB
testcase_18 AC 289 ms
147,588 KB
testcase_19 AC 291 ms
163,992 KB
testcase_20 AC 219 ms
147,052 KB
testcase_21 AC 220 ms
143,336 KB
testcase_22 AC 200 ms
144,628 KB
testcase_23 AC 156 ms
114,408 KB
testcase_24 AC 292 ms
162,208 KB
testcase_25 AC 90 ms
103,180 KB
testcase_26 AC 85 ms
99,112 KB
testcase_27 AC 90 ms
102,892 KB
testcase_28 AC 88 ms
102,080 KB
testcase_29 AC 89 ms
102,796 KB
testcase_30 AC 93 ms
90,648 KB
testcase_31 AC 197 ms
90,720 KB
testcase_32 AC 197 ms
90,600 KB
testcase_33 AC 95 ms
92,308 KB
testcase_34 AC 126 ms
109,364 KB
testcase_35 AC 419 ms
178,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    from collections import defaultdict

    N,P=map(int,input().split())
    A=list(map(int,input().split()))

    A_max=max(A)

    Ans=0; v=1; Q=P
    while Q<=A_max:
        E=defaultdict(int)
        for a in A:
            E[a%Q]+=1

        for y in E.values():
            Ans+=y*(y-1)//2
        v+=1; Q*=P
    return Ans

#==================================================
print(solve())
0