結果

問題 No.2260 Adic Sum
ユーザー fiblonariafiblonaria
提出日時 2023-04-11 00:27:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 178,172 KB
最終ジャッジ日時 2024-10-06 11:54:26
合計ジャッジ時間 5,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 35 ms
51,584 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 46 ms
59,776 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 45 ms
59,520 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 50 ms
62,208 KB
testcase_13 AC 44 ms
60,800 KB
testcase_14 AC 62 ms
76,416 KB
testcase_15 AC 69 ms
84,224 KB
testcase_16 AC 59 ms
73,728 KB
testcase_17 AC 75 ms
86,656 KB
testcase_18 AC 292 ms
147,272 KB
testcase_19 AC 297 ms
157,904 KB
testcase_20 AC 234 ms
156,408 KB
testcase_21 AC 237 ms
154,440 KB
testcase_22 AC 201 ms
144,132 KB
testcase_23 AC 155 ms
113,784 KB
testcase_24 AC 282 ms
157,112 KB
testcase_25 AC 98 ms
101,120 KB
testcase_26 AC 94 ms
97,792 KB
testcase_27 AC 93 ms
101,760 KB
testcase_28 AC 91 ms
100,864 KB
testcase_29 AC 103 ms
101,120 KB
testcase_30 AC 109 ms
92,544 KB
testcase_31 AC 202 ms
90,368 KB
testcase_32 AC 205 ms
90,496 KB
testcase_33 AC 98 ms
93,696 KB
testcase_34 AC 126 ms
109,008 KB
testcase_35 AC 440 ms
178,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P = map(int, input().split())
A = list(map(int, input().split()))
ans, temp, M = 0, P, max(A)
while temp <= M:
	d = {}
	for i in A:
		d[i % temp] = d.get(i % temp, 0) + 1
	for i in d:
		ans += d[i] * (d[i] - 1) // 2
	temp *= P
print(ans)
0