結果

問題 No.1233 割り切れない気持ち
ユーザー ibyiby
提出日時 2020-11-28 16:43:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,395 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 115,364 KB
最終ジャッジ日時 2024-09-12 23:14:06
合計ジャッジ時間 15,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
81,576 KB
testcase_01 AC 70 ms
81,356 KB
testcase_02 AC 157 ms
81,800 KB
testcase_03 AC 262 ms
81,988 KB
testcase_04 AC 226 ms
81,572 KB
testcase_05 AC 165 ms
81,604 KB
testcase_06 AC 189 ms
81,544 KB
testcase_07 AC 507 ms
88,328 KB
testcase_08 AC 552 ms
93,508 KB
testcase_09 AC 612 ms
105,232 KB
testcase_10 AC 633 ms
108,320 KB
testcase_11 AC 476 ms
87,852 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 142 ms
113,516 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 156 ms
113,772 KB
testcase_21 AC 160 ms
110,908 KB
testcase_22 AC 152 ms
110,620 KB
testcase_23 AC 153 ms
110,624 KB
testcase_24 AC 151 ms
110,788 KB
testcase_25 AC 152 ms
110,596 KB
testcase_26 AC 151 ms
110,908 KB
testcase_27 AC 154 ms
111,540 KB
testcase_28 AC 149 ms
111,480 KB
testcase_29 AC 157 ms
111,400 KB
testcase_30 AC 154 ms
111,300 KB
testcase_31 AC 151 ms
111,516 KB
testcase_32 AC 149 ms
111,136 KB
testcase_33 AC 152 ms
111,284 KB
testcase_34 AC 149 ms
111,352 KB
testcase_35 AC 150 ms
111,184 KB
testcase_36 AC 150 ms
111,488 KB
testcase_37 AC 68 ms
81,368 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree():
    # 1-indexed
    def __init__(self, N, function, basement):
        self.n = N
        self.K = (self.n-1).bit_length()
        self.f = function
        self.b = basement
        self.seg = [basement]*(2**(self.K+1)+1)

    def update(self, k, value):
        X = 1 << (self.K)
        k += X
        self.seg[k] += value
        while k:
            k = k >> 1
            self.seg[k] = self.f(self.seg[k << 1], self.seg[(k << 1) | 1])

    def query(self, L, R):
        num = 1 << (self.K)
        L += num
        R += num
        vL = self.b
        vR = self.b
        while L < R:
            if L & 1:
                vL = self.f(vL, self.seg[L])
                L += 1
            if R & 1:
                R -= 1
                vR = self.f(self.seg[R], vR)
            L >>= 1
            R >>= 1
        return self.f(vL, vR)

def f(a,b):
    return a + b

n = int(input())
a = list(map(int, input().split()))

cash = [-1]*(200010)
segki = SegTree(200010, f, 0)
for v in a:
    segki.update(v, 1)

def get_quotient_sum(div):
    if cash[div] >= 0:
        return cash[div]
    res = 0
    for i in range(200001):
        if i*div >= 200000:
            break
        else:
            res += i*segki.query(div*i, min(div*(i + 1), 200001))
    cash[div] = res
    return res


ans = n*sum(a)
for i, v in enumerate(a):
    ans -= v*get_quotient_sum(v)
print(ans)

0