結果

問題 No.2260 Adic Sum
ユーザー ShirotsumeShirotsume
提出日時 2023-04-07 21:32:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 191,160 KB
最終ジャッジ日時 2024-10-06 07:05:04
合計ジャッジ時間 5,907 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,744 KB
testcase_01 AC 40 ms
54,584 KB
testcase_02 AC 40 ms
55,004 KB
testcase_03 AC 43 ms
54,972 KB
testcase_04 AC 42 ms
53,660 KB
testcase_05 AC 40 ms
53,544 KB
testcase_06 AC 41 ms
53,368 KB
testcase_07 AC 41 ms
55,136 KB
testcase_08 AC 48 ms
63,640 KB
testcase_09 AC 42 ms
59,476 KB
testcase_10 AC 46 ms
61,816 KB
testcase_11 AC 40 ms
55,544 KB
testcase_12 AC 52 ms
64,812 KB
testcase_13 AC 50 ms
63,416 KB
testcase_14 AC 65 ms
79,444 KB
testcase_15 AC 73 ms
86,792 KB
testcase_16 AC 60 ms
76,280 KB
testcase_17 AC 76 ms
89,352 KB
testcase_18 AC 287 ms
167,740 KB
testcase_19 AC 301 ms
176,908 KB
testcase_20 AC 227 ms
151,512 KB
testcase_21 AC 227 ms
151,812 KB
testcase_22 AC 207 ms
150,648 KB
testcase_23 AC 166 ms
118,024 KB
testcase_24 AC 297 ms
174,148 KB
testcase_25 AC 91 ms
104,048 KB
testcase_26 AC 89 ms
100,428 KB
testcase_27 AC 90 ms
104,200 KB
testcase_28 AC 91 ms
103,792 KB
testcase_29 AC 90 ms
103,996 KB
testcase_30 AC 99 ms
92,620 KB
testcase_31 AC 236 ms
94,360 KB
testcase_32 AC 237 ms
93,724 KB
testcase_33 AC 100 ms
93,172 KB
testcase_34 AC 135 ms
112,244 KB
testcase_35 AC 433 ms
191,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, p = mi()
A = li()

nowp = 1
ans = 0
for _ in range(60):
    nowp *= p
    if nowp > max(A):
        break
    a = Counter([v % nowp for v in A])
    for v, c in a.items():
        ans += c * (c - 1) // 2
print(ans)

0