結果

問題 No.2260 Adic Sum
ユーザー titiatitia
提出日時 2023-04-07 22:09:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 315 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 38,028 KB
最終ジャッジ日時 2024-10-06 07:18:02
合計ジャッジ時間 15,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

ANS=0

x=P

while x<10**9:
    LIST=defaultdict(list)

    for a in A:
        LIST[a%x].append(a)

    for k in LIST:
        L=len(LIST[k])
        ANS+=L*(L-1)//2

    #print(LIST)

    x*=P

print(ANS)
        
0