結果

問題 No.2260 Adic Sum
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-05 22:21:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,052 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 230,964 KB
最終ジャッジ日時 2024-09-05 22:21:35
合計ジャッジ時間 10,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
c=[{} for i in range(40)]
L=10**10
g=0
for v in a:
  for i in range(1,40):
    if p**i<L:
      y=v%(p**i)
      if y not in c[i]:
        c[i][y]=0
      g+=c[i][y]
      c[i][y]+=1
    else:
      break
print(g)
0