結果

問題 No.2260 Adic Sum
ユーザー tamatotamato
提出日時 2023-04-07 21:25:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 179,244 KB
最終ジャッジ日時 2024-10-06 06:56:56
合計ジャッジ時間 5,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 998244353

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

p = p0
ans = 0
while p <= 10 ** 9:
    cnt = {}
    for a in A:
        aa = a % p
        if aa not in cnt:
            cnt[aa] = 0
        cnt[aa] += 1
    for a in cnt:
        x = cnt[a]
        ans += x * (x - 1) // 2
    p *= p0
print(ans)


0