結果

問題 No.2260 Adic Sum
ユーザー Kiri8128Kiri8128
提出日時 2023-04-07 21:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 137,056 KB
最終ジャッジ日時 2024-10-06 07:12:17
合計ジャッジ時間 4,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,364 KB
testcase_01 AC 39 ms
55,528 KB
testcase_02 AC 36 ms
54,464 KB
testcase_03 AC 36 ms
54,188 KB
testcase_04 AC 37 ms
54,188 KB
testcase_05 AC 38 ms
55,728 KB
testcase_06 AC 38 ms
54,084 KB
testcase_07 AC 38 ms
55,872 KB
testcase_08 AC 53 ms
66,036 KB
testcase_09 AC 43 ms
61,136 KB
testcase_10 AC 53 ms
66,472 KB
testcase_11 AC 39 ms
54,920 KB
testcase_12 AC 51 ms
65,944 KB
testcase_13 AC 45 ms
63,284 KB
testcase_14 AC 57 ms
78,356 KB
testcase_15 AC 65 ms
85,724 KB
testcase_16 AC 55 ms
76,780 KB
testcase_17 AC 91 ms
96,648 KB
testcase_18 AC 123 ms
88,796 KB
testcase_19 AC 122 ms
89,616 KB
testcase_20 AC 108 ms
86,584 KB
testcase_21 AC 109 ms
86,792 KB
testcase_22 AC 100 ms
85,692 KB
testcase_23 AC 100 ms
93,056 KB
testcase_24 AC 128 ms
94,340 KB
testcase_25 AC 86 ms
97,368 KB
testcase_26 AC 83 ms
96,740 KB
testcase_27 AC 90 ms
97,252 KB
testcase_28 AC 87 ms
97,596 KB
testcase_29 AC 85 ms
97,816 KB
testcase_30 AC 92 ms
89,752 KB
testcase_31 AC 187 ms
136,824 KB
testcase_32 AC 193 ms
137,056 KB
testcase_33 AC 80 ms
87,108 KB
testcase_34 AC 92 ms
85,616 KB
testcase_35 AC 143 ms
91,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
def calc(L):
    ret = 0
    D = defaultdict(list)
    for a in L:
        D[a % P].append(a // P)
    for k, v in D.items():
        l = len(v)
        ret += l * (l - 1) // 2
        if l > 1:
            ret += calc(v)
    return ret

N, P = map(int, input().split())
A = [int(a) for a in input().split()]
print(calc(A))
0