結果

問題 No.3072 Sum of sqrt(x)
ユーザー trineutrontrineutron
提出日時 2020-06-05 18:38:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,531 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 51,328 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 10:58:41
合計ジャッジ時間 135,568 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 1,330 ms
6,940 KB
testcase_08 AC 475 ms
6,940 KB
testcase_09 AC 704 ms
6,940 KB
testcase_10 AC 1,496 ms
6,940 KB
testcase_11 AC 1,502 ms
5,376 KB
testcase_12 AC 1,503 ms
5,376 KB
testcase_13 AC 1,531 ms
5,376 KB
testcase_14 AC 1,495 ms
6,940 KB
testcase_15 AC 1,453 ms
6,944 KB
testcase_16 AC 1,491 ms
6,944 KB
testcase_17 AC 1,449 ms
6,940 KB
testcase_18 AC 1,481 ms
6,940 KB
testcase_19 AC 1,441 ms
6,944 KB
testcase_20 AC 1,511 ms
6,944 KB
testcase_21 AC 1,503 ms
6,940 KB
testcase_22 AC 1,513 ms
6,940 KB
testcase_23 AC 1,503 ms
6,940 KB
testcase_24 AC 1,500 ms
6,940 KB
testcase_25 AC 1,503 ms
6,944 KB
testcase_26 AC 1,493 ms
6,940 KB
testcase_27 AC 1,420 ms
6,940 KB
testcase_28 AC 1,365 ms
6,940 KB
testcase_29 AC 1,437 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cmath>

int main() {
    int n;
    scanf("%d", &n);
    __float128 s = 0;
    for (int i = 0; i < n; i++) {
        long double x;
        scanf("%llf", &x);
        x = sqrtl(x);
        s += x;
        printf("%.17llg\n", (long double) s);
    }
}
0