結果

問題 No.8072 Sum of sqrt(x)
ユーザー convexineq
提出日時 2021-05-11 01:20:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 164 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-09-20 06:58:59
合計ジャッジ時間 12,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
getcontext().prec = 17
n,*x = map(int,open(0).read().split())
ans = Decimal(0)
for xi in x:
    ans += Decimal(xi).sqrt()
    print(ans)
0