結果

問題 No.3072 Sum of sqrt(x)
ユーザー trineutrontrineutron
提出日時 2020-06-07 18:51:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,606 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 51,456 KB
実行使用メモリ 11,048 KB
最終ジャッジ日時 2024-07-03 11:14:05
合計ジャッジ時間 144,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 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,349 ms
10,996 KB
testcase_08 AC 525 ms
11,036 KB
testcase_09 AC 673 ms
11,008 KB
testcase_10 AC 1,464 ms
11,008 KB
testcase_11 AC 1,568 ms
11,048 KB
testcase_12 AC 1,428 ms
11,008 KB
testcase_13 AC 1,418 ms
10,900 KB
testcase_14 AC 1,409 ms
10,972 KB
testcase_15 AC 1,531 ms
11,008 KB
testcase_16 AC 1,410 ms
10,908 KB
testcase_17 AC 1,423 ms
11,028 KB
testcase_18 AC 1,421 ms
10,844 KB
testcase_19 AC 1,401 ms
11,036 KB
testcase_20 AC 1,531 ms
10,952 KB
testcase_21 AC 1,544 ms
10,912 KB
testcase_22 AC 1,536 ms
10,980 KB
testcase_23 AC 1,581 ms
10,996 KB
testcase_24 AC 1,606 ms
10,968 KB
testcase_25 AC 1,527 ms
10,912 KB
testcase_26 AC 1,578 ms
10,876 KB
testcase_27 AC 1,346 ms
10,972 KB
testcase_28 AC 1,407 ms
10,928 KB
testcase_29 AC 1,364 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cmath>

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