結果

問題 No.3072 Sum of sqrt(x)
ユーザー 259_Momone259_Momone
提出日時 2020-09-12 23:26:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,527 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 203,056 KB
実行使用メモリ 19,156 KB
最終ジャッジ日時 2024-11-21 05:50:33
合計ジャッジ時間 61,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 1,317 ms
19,044 KB
testcase_08 AC 436 ms
19,156 KB
testcase_09 AC 636 ms
18,932 KB
testcase_10 AC 1,457 ms
18,944 KB
testcase_11 AC 1,515 ms
18,948 KB
testcase_12 AC 1,511 ms
18,912 KB
testcase_13 AC 1,472 ms
19,040 KB
testcase_14 AC 1,462 ms
19,116 KB
testcase_15 AC 1,513 ms
18,928 KB
testcase_16 AC 1,469 ms
19,076 KB
testcase_17 AC 1,476 ms
19,052 KB
testcase_18 AC 1,484 ms
19,084 KB
testcase_19 AC 1,454 ms
19,048 KB
testcase_20 AC 1,441 ms
19,076 KB
testcase_21 AC 1,463 ms
18,948 KB
testcase_22 AC 1,443 ms
19,108 KB
testcase_23 AC 1,477 ms
18,972 KB
testcase_24 AC 1,450 ms
18,944 KB
testcase_25 AC 1,449 ms
18,936 KB
testcase_26 AC 1,527 ms
18,928 KB
testcase_27 AC 1,393 ms
18,936 KB
testcase_28 AC 1,415 ms
19,016 KB
testcase_29 AC 1,416 ms
18,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

int main(){
    using namespace std;
    unsigned long N;
    scanf("%lu", &N);
    vector<long double> v(N + 1);
    for(unsigned long i{1}, t; i <= N; ++i){
        scanf("%lu", &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];
    for(unsigned long i{1}; i <= N; ++i)printf("%.18Lg\n", v[i] += v[i & (i - 1)]);
    return 0;
}
0