結果

問題 No.3072 Sum of sqrt(x)
ユーザー trineutrontrineutron
提出日時 2020-06-05 18:51:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,840 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 83,764 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 07:05:04
合計ジャッジ時間 154,936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 1,488 ms
5,376 KB
testcase_08 AC 689 ms
5,376 KB
testcase_09 AC 901 ms
5,376 KB
testcase_10 AC 1,682 ms
5,376 KB
testcase_11 AC 1,668 ms
5,376 KB
testcase_12 AC 1,695 ms
5,376 KB
testcase_13 AC 1,840 ms
5,376 KB
testcase_14 AC 1,704 ms
5,376 KB
testcase_15 AC 1,727 ms
5,376 KB
testcase_16 AC 1,799 ms
5,376 KB
testcase_17 AC 1,683 ms
5,376 KB
testcase_18 AC 1,759 ms
5,376 KB
testcase_19 AC 1,749 ms
5,376 KB
testcase_20 AC 1,685 ms
5,376 KB
testcase_21 AC 1,674 ms
5,376 KB
testcase_22 AC 1,766 ms
5,376 KB
testcase_23 AC 1,759 ms
5,376 KB
testcase_24 AC 1,702 ms
5,376 KB
testcase_25 AC 1,728 ms
5,376 KB
testcase_26 AC 1,737 ms
5,376 KB
testcase_27 AC 1,561 ms
5,376 KB
testcase_28 AC 1,598 ms
5,376 KB
testcase_29 AC 1,669 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;
    long double s = 0, t, r = 0;
    for (int i = 0; i < n; i++) {
        long double x;
        std::cin >> x;
        x = sqrtl(x) + r;
        t = s + x;
        r = x - (t - s);
        s = t;
        std::cout << s << "\n";
    }
}
0