結果

問題 No.3072 Sum of sqrt(x)
ユーザー ecotteaecottea
提出日時 2023-08-03 01:49:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,869 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 157,136 KB
最終ジャッジ日時 2024-06-24 10:32:56
合計ジャッジ時間 155,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 44 ms
51,968 KB
testcase_07 AC 1,544 ms
153,932 KB
testcase_08 AC 758 ms
157,136 KB
testcase_09 AC 1,009 ms
154,060 KB
testcase_10 AC 1,161 ms
155,428 KB
testcase_11 AC 1,418 ms
155,368 KB
testcase_12 AC 1,543 ms
154,840 KB
testcase_13 AC 1,648 ms
154,836 KB
testcase_14 AC 1,695 ms
155,244 KB
testcase_15 AC 1,687 ms
155,300 KB
testcase_16 AC 1,646 ms
155,096 KB
testcase_17 AC 1,690 ms
155,300 KB
testcase_18 AC 1,869 ms
155,564 KB
testcase_19 AC 1,781 ms
155,172 KB
testcase_20 AC 1,712 ms
155,424 KB
testcase_21 AC 1,850 ms
155,348 KB
testcase_22 AC 1,643 ms
155,428 KB
testcase_23 AC 1,635 ms
154,828 KB
testcase_24 AC 1,710 ms
155,048 KB
testcase_25 AC 1,602 ms
155,172 KB
testcase_26 AC 1,641 ms
155,088 KB
testcase_27 AC 1,697 ms
153,444 KB
testcase_28 AC 1,629 ms
153,748 KB
testcase_29 AC 1,643 ms
155,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

class FenwickTree:
    def __init__(self, n):
        self.n = n + 1
        self.v = [0] * n
    
    def __init__(self, a):
        self.n = len(a) + 1
        self.v = [0] + a
        pow2 = 1
        while 2 * pow2 < self.n:
            i = 2 * pow2
            while i < self.n:
                self.v[i] += self.v[i - pow2]
                i += 2 * pow2
            pow2 *= 2

    # 区間 [0..r) の和を返す
    def sum(self, r):
        res = 0
        while r > 0:
            res += self.v[r]
            r -= r & -r
        return res

    # 位置 i に x を加算する
    def add(self, i, x):
        i += 1
        while i <= self.n:
            self.v[i] += x
            i += i & -i

n = int(input())

x = []
for i in range(n):
    x.append(math.sqrt(int(input())))

f = FenwickTree(x)

for i in range(n):
    res = f.sum(i + 1)
    print(f'{res:.18g}')
0