結果

問題 No.2260 Adic Sum
ユーザー ニックネームニックネーム
提出日時 2023-04-07 21:32:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,453 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,412 KB
最終ジャッジ日時 2024-10-06 07:04:51
合計ジャッジ時間 12,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 33 ms
11,136 KB
testcase_14 AC 72 ms
16,196 KB
testcase_15 AC 93 ms
18,920 KB
testcase_16 AC 66 ms
16,556 KB
testcase_17 AC 100 ms
20,576 KB
testcase_18 AC 879 ms
27,884 KB
testcase_19 AC 943 ms
28,412 KB
testcase_20 AC 655 ms
28,092 KB
testcase_21 AC 669 ms
28,024 KB
testcase_22 AC 536 ms
27,792 KB
testcase_23 AC 399 ms
28,000 KB
testcase_24 AC 943 ms
28,388 KB
testcase_25 AC 142 ms
25,900 KB
testcase_26 AC 134 ms
25,808 KB
testcase_27 AC 145 ms
26,064 KB
testcase_28 AC 140 ms
25,892 KB
testcase_29 AC 138 ms
25,808 KB
testcase_30 AC 157 ms
21,892 KB
testcase_31 AC 935 ms
21,836 KB
testcase_32 AC 877 ms
22,740 KB
testcase_33 AC 164 ms
26,296 KB
testcase_34 AC 303 ms
28,224 KB
testcase_35 AC 1,453 ms
28,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
x,p = map(int,input().split())
a = list(map(int,input().split()))
q = p; m = max(a); ans = 0
while q<m:
    r = defaultdict(int)
    for v in a: r[v%q] += 1
    for v in r.values(): ans += v*(v-1)//2
    q *= p
print(ans)
0