結果

問題 No.8072 Sum of sqrt(x)
ユーザー erbowlerbowl
提出日時 2022-07-24 11:21:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,672 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 1,808 ms
コンパイル使用メモリ 199,552 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-25 14:59:34
合計ジャッジ時間 135,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 1,373 ms
5,248 KB
testcase_08 AC 577 ms
6,824 KB
testcase_09 AC 785 ms
6,820 KB
testcase_10 AC 1,566 ms
6,816 KB
testcase_11 AC 1,526 ms
6,816 KB
testcase_12 AC 1,528 ms
5,248 KB
testcase_13 AC 1,574 ms
5,248 KB
testcase_14 AC 1,626 ms
5,248 KB
testcase_15 AC 1,520 ms
5,248 KB
testcase_16 AC 1,522 ms
6,816 KB
testcase_17 AC 1,581 ms
5,248 KB
testcase_18 AC 1,572 ms
5,248 KB
testcase_19 AC 1,556 ms
5,248 KB
testcase_20 AC 1,614 ms
5,248 KB
testcase_21 AC 1,511 ms
5,248 KB
testcase_22 AC 1,494 ms
5,248 KB
testcase_23 AC 1,672 ms
5,248 KB
testcase_24 AC 1,559 ms
5,248 KB
testcase_25 AC 1,572 ms
5,248 KB
testcase_26 AC 1,589 ms
5,248 KB
testcase_27 AC 1,608 ms
5,248 KB
testcase_28 AC 1,534 ms
5,248 KB
testcase_29 AC 1,550 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main()
{
  cin.tie(0);
  ios::sync_with_stdio(false);
  ll n;
  std::cin >> n;
  __float128 sum = 0;
  for (int i = 0; i < n; i++)
  {
    ld a;
    std::cin >> a;
    sum += sqrt(a);
    std::cout << setprecision(17) << (ld)sum << "\n";
  }
}
0