結果

問題 No.3072 Sum of sqrt(x)
ユーザー trineutrontrineutron
提出日時 2020-06-05 19:04:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,747 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 83,640 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 14:30:31
合計ジャッジ時間 160,324 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 1,443 ms
5,376 KB
testcase_08 AC 597 ms
5,376 KB
testcase_09 AC 829 ms
5,376 KB
testcase_10 AC 1,136 ms
5,376 KB
testcase_11 AC 1,489 ms
5,376 KB
testcase_12 AC 1,617 ms
5,376 KB
testcase_13 AC 1,721 ms
6,944 KB
testcase_14 AC 1,647 ms
6,940 KB
testcase_15 AC 1,747 ms
5,376 KB
testcase_16 AC 1,701 ms
5,376 KB
testcase_17 AC 1,612 ms
6,940 KB
testcase_18 AC 1,655 ms
5,376 KB
testcase_19 AC 1,590 ms
6,944 KB
testcase_20 AC 1,728 ms
5,376 KB
testcase_21 AC 1,673 ms
5,376 KB
testcase_22 AC 1,615 ms
5,376 KB
testcase_23 AC 1,618 ms
5,376 KB
testcase_24 AC 1,636 ms
5,376 KB
testcase_25 AC 1,613 ms
5,376 KB
testcase_26 AC 1,636 ms
6,944 KB
testcase_27 AC 1,478 ms
5,376 KB
testcase_28 AC 1,540 ms
5,376 KB
testcase_29 AC 1,541 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cmath>

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    std::cout << std::setprecision(17);
    int n;
    std::cin >> n;
    double s = 0, t, r = 0;
    for (int i = 0; i < n; i++) {
        double x;
        std::cin >> x;
        x = sqrt(x) + r;
        t = s + x;
        r = x - (t - s);
        s = t;
        std::cout << s << "\n";
    }
}
0