結果

問題 No.3072 Sum of sqrt(x)
ユーザー 259_Momone259_Momone
提出日時 2020-09-12 22:58:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 575 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 203,656 KB
実行使用メモリ 19,220 KB
最終ジャッジ日時 2024-10-11 03:07:32
合計ジャッジ時間 64,776 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1,487 ms
19,072 KB
testcase_08 AC 673 ms
19,072 KB
testcase_09 AC 809 ms
18,944 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,999 ms
19,072 KB
testcase_25 TLE -
testcase_26 AC 1,997 ms
19,104 KB
testcase_27 AC 1,610 ms
18,944 KB
testcase_28 AC 1,726 ms
18,928 KB
testcase_29 AC 1,795 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

int main(){
    using namespace std;
    unsigned long N;
    cin >> N;
    vector<long double> v(N + 1);
    transform(istream_iterator<unsigned long>(cin), istream_iterator<unsigned long>(), begin(v) + 1, [](const unsigned long& x){return sqrtl(x);});
    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)v[i] += v[i & (i - 1)];
    cout << setprecision(18);
    copy(begin(v) + 1, end(v), ostream_iterator<long double>(cout, "\n"));
    return 0;
}
0