結果

問題 No.3072 Sum of sqrt(x)
ユーザー 259_Momone259_Momone
提出日時 2020-09-12 23:13:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,659 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 4,876 ms
コンパイル使用メモリ 203,156 KB
実行使用メモリ 19,164 KB
最終ジャッジ日時 2024-07-01 03:06:53
合計ジャッジ時間 64,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 1,454 ms
19,020 KB
testcase_08 AC 530 ms
18,944 KB
testcase_09 AC 707 ms
18,944 KB
testcase_10 AC 1,609 ms
18,944 KB
testcase_11 AC 1,659 ms
19,072 KB
testcase_12 AC 1,648 ms
18,944 KB
testcase_13 AC 1,610 ms
19,068 KB
testcase_14 AC 1,583 ms
19,072 KB
testcase_15 AC 1,562 ms
19,124 KB
testcase_16 AC 1,567 ms
18,944 KB
testcase_17 AC 1,527 ms
18,944 KB
testcase_18 AC 1,625 ms
18,944 KB
testcase_19 AC 1,520 ms
19,020 KB
testcase_20 AC 1,613 ms
18,944 KB
testcase_21 AC 1,542 ms
18,944 KB
testcase_22 AC 1,605 ms
18,944 KB
testcase_23 AC 1,598 ms
19,100 KB
testcase_24 AC 1,545 ms
19,164 KB
testcase_25 AC 1,626 ms
19,060 KB
testcase_26 AC 1,558 ms
18,944 KB
testcase_27 AC 1,512 ms
18,944 KB
testcase_28 AC 1,596 ms
19,072 KB
testcase_29 AC 1,498 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

int main(){
    using namespace std;
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    unsigned long N;
    cin >> N;
    vector<long double> v(N + 1);
    for(unsigned long i{1}, t; i <= N; ++i){
        cin >> t;
        v[i] = sqrtl(t);
    }
    for(unsigned long i{1}; i <= N; i <<= 1UL)for(unsigned long j{2 * i}; j <= N; j += 2 * i)v[j] += v[j - i];
    cout << setprecision(18);
    for(unsigned long i{1}; i <= N; ++i)cout << (v[i] += v[i & (i - 1)]) << "\n";
    cout << flush;
    return 0;
}
0