結果

問題 No.8072 Sum of sqrt(x)
ユーザー ninoinui
提出日時 2020-09-12 21:20:18
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 9,308 ms
コンパイル使用メモリ 360,704 KB
最終ジャッジ日時 2025-01-14 13:46:24
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 TLE * 21 OLE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <boost/multiprecision/cpp_dec_float.hpp>
using namespace std;
using bdec = boost::multiprecision::cpp_dec_float_100;

int main() {
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);
  int N;
  cin >> N;
  bdec ans = 0, x;
  while (cin >> x) cout << fixed << setprecision(20) << (ans += sqrt(x)) << "\n";
}
0