結果

問題 No.2260 Adic Sum
ユーザー tassei903tassei903
提出日時 2023-04-07 21:37:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 190,696 KB
最終ジャッジ日時 2024-10-06 07:08:07
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 AC 43 ms
54,144 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 45 ms
54,016 KB
testcase_06 AC 42 ms
53,888 KB
testcase_07 AC 42 ms
54,400 KB
testcase_08 AC 54 ms
64,256 KB
testcase_09 AC 49 ms
61,824 KB
testcase_10 AC 53 ms
64,256 KB
testcase_11 AC 44 ms
54,272 KB
testcase_12 AC 53 ms
65,280 KB
testcase_13 AC 49 ms
63,360 KB
testcase_14 AC 67 ms
78,848 KB
testcase_15 AC 75 ms
86,400 KB
testcase_16 AC 62 ms
75,904 KB
testcase_17 AC 77 ms
89,088 KB
testcase_18 AC 301 ms
165,836 KB
testcase_19 AC 318 ms
172,892 KB
testcase_20 AC 235 ms
151,456 KB
testcase_21 AC 235 ms
151,556 KB
testcase_22 AC 214 ms
150,496 KB
testcase_23 AC 161 ms
118,080 KB
testcase_24 AC 305 ms
174,212 KB
testcase_25 AC 92 ms
103,768 KB
testcase_26 AC 91 ms
100,232 KB
testcase_27 AC 96 ms
104,064 KB
testcase_28 AC 94 ms
104,060 KB
testcase_29 AC 92 ms
103,884 KB
testcase_30 AC 99 ms
92,316 KB
testcase_31 AC 235 ms
93,232 KB
testcase_32 AC 230 ms
94,004 KB
testcase_33 AC 98 ms
93,500 KB
testcase_34 AC 176 ms
142,604 KB
testcase_35 AC 453 ms
190,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
from collections import Counter

n,p = na()

a = na()

x = p
ans = 0
while x <= 10**9:
    b = Counter([a[i] % x for i in range(n)])
    for i in b:
        ans += b[i] * (b[i]-1)//2
    x *= p
print(ans)
0