結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー asumo0729asumo0729
提出日時 2022-08-21 12:47:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 651 ms / 4,000 ms
コード長 1,192 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-05-09 17:34:50
合計ジャッジ時間 6,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
78,088 KB
testcase_01 AC 90 ms
77,944 KB
testcase_02 AC 142 ms
78,424 KB
testcase_03 AC 326 ms
78,208 KB
testcase_04 AC 230 ms
78,464 KB
testcase_05 AC 314 ms
78,520 KB
testcase_06 AC 238 ms
78,080 KB
testcase_07 AC 293 ms
78,336 KB
testcase_08 AC 71 ms
78,848 KB
testcase_09 AC 77 ms
78,672 KB
testcase_10 AC 76 ms
78,336 KB
testcase_11 AC 79 ms
78,848 KB
testcase_12 AC 78 ms
78,848 KB
testcase_13 AC 273 ms
89,216 KB
testcase_14 AC 233 ms
85,952 KB
testcase_15 AC 376 ms
94,532 KB
testcase_16 AC 405 ms
95,060 KB
testcase_17 AC 341 ms
92,784 KB
testcase_18 AC 577 ms
92,800 KB
testcase_19 AC 307 ms
92,672 KB
testcase_20 AC 651 ms
110,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT():
    def __init__(self,N):
        self.N = N
        self.bit = [0] * (N + 1)
    
    def sum(self,loc):
        loc -= 1
        res = 0
        while loc:
            res += self.bit[loc]
            loc -= loc & -loc
        return res
            
    def sum_range(self,x,y):
        return self.sum(y) - self.sum(x - 1)

    def add(self, loc, x):
        while loc <= self.N:
            self.bit[loc] += x
            loc += loc & -loc

    def update(self,loc,x):
        while loc <= self.N:
            self.bit[loc] = x
            loc +=loc & -loc
            
    def binary_search(self,x):
        upper = self.N - 1
        lower = 0
        while upper - lower>1:
            mid = ( upper + lower) // 2
            if self.sum(mid) > x - 1:
                upper = mid
            else:
                lower = mid
        return lower + 1

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

A.sort()
Bit = BIT(3 * 10 ** 5)
ans = 0
large = 0
for i in range(N)[::-1]:
    ans += (N - 1 - i) * A[i]
    ans -= large
    for j in range(A[i],3 * 10 ** 5, A[i]):
        ans += A[i] * ((N - 1 - i) - Bit.sum(j))
    Bit.add(A[i], 1)
    large += A[i]

print(ans)
0