結果

問題 No.3072 Sum of sqrt(x)
ユーザー trineutrontrineutron
提出日時 2020-06-05 19:52:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,533 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 51,584 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-03 11:04:37
合計ジャッジ時間 148,993 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1,301 ms
5,376 KB
testcase_08 AC 457 ms
5,376 KB
testcase_09 AC 663 ms
5,376 KB
testcase_10 AC 937 ms
5,376 KB
testcase_11 AC 1,312 ms
5,376 KB
testcase_12 AC 1,412 ms
5,376 KB
testcase_13 AC 1,482 ms
5,376 KB
testcase_14 AC 1,464 ms
5,376 KB
testcase_15 AC 1,518 ms
5,376 KB
testcase_16 AC 1,433 ms
5,376 KB
testcase_17 AC 1,449 ms
5,376 KB
testcase_18 AC 1,412 ms
5,376 KB
testcase_19 AC 1,402 ms
5,376 KB
testcase_20 AC 1,431 ms
5,376 KB
testcase_21 AC 1,488 ms
5,376 KB
testcase_22 AC 1,455 ms
5,376 KB
testcase_23 AC 1,533 ms
5,376 KB
testcase_24 AC 1,474 ms
5,376 KB
testcase_25 AC 1,442 ms
5,376 KB
testcase_26 AC 1,436 ms
5,376 KB
testcase_27 AC 1,379 ms
5,376 KB
testcase_28 AC 1,345 ms
5,376 KB
testcase_29 AC 1,412 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cmath>

int main() {
    int n;
    scanf("%d", &n);
    double s = 0, t, r = 0;
    for (int i = 0; i < n; i++) {
        double x;
        scanf("%lf", &x);
        x = sqrt(x) + r;
        t = s + x;
        r = x - (t - s);
        s = t;
        printf("%.17g\n", s);
    }
}
0