結果

問題 No.2260 Adic Sum
ユーザー titiatitia
提出日時 2023-04-07 22:09:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 315 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 38,028 KB
最終ジャッジ日時 2024-10-06 07:18:02
合計ジャッジ時間 15,587 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 32 ms
10,496 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 37 ms
11,136 KB
testcase_09 AC 33 ms
10,624 KB
testcase_10 AC 35 ms
11,008 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 36 ms
11,008 KB
testcase_13 AC 34 ms
11,264 KB
testcase_14 AC 91 ms
18,948 KB
testcase_15 AC 118 ms
22,932 KB
testcase_16 AC 80 ms
17,960 KB
testcase_17 AC 125 ms
24,264 KB
testcase_18 AC 1,295 ms
36,760 KB
testcase_19 AC 1,344 ms
37,680 KB
testcase_20 AC 895 ms
37,400 KB
testcase_21 AC 908 ms
37,524 KB
testcase_22 AC 771 ms
37,264 KB
testcase_23 AC 543 ms
37,604 KB
testcase_24 AC 1,351 ms
37,960 KB
testcase_25 AC 193 ms
34,108 KB
testcase_26 AC 186 ms
34,020 KB
testcase_27 AC 205 ms
34,160 KB
testcase_28 AC 190 ms
34,240 KB
testcase_29 AC 192 ms
34,396 KB
testcase_30 AC 192 ms
25,780 KB
testcase_31 AC 862 ms
28,032 KB
testcase_32 AC 851 ms
28,396 KB
testcase_33 AC 219 ms
34,548 KB
testcase_34 AC 622 ms
37,484 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

ANS=0

x=P

while x<10**9:
    LIST=defaultdict(list)

    for a in A:
        LIST[a%x].append(a)

    for k in LIST:
        L=len(LIST[k])
        ANS+=L*(L-1)//2

    #print(LIST)

    x*=P

print(ANS)
        
0