結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
chocorusk
|
| 提出日時 | 2020-09-12 21:43:05 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 295 bytes |
| 記録 | |
| コンパイル時間 | 828 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 104,832 KB |
| 最終ジャッジ日時 | 2026-06-06 03:40:58 |
| 合計ジャッジ時間 | 12,626 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 TLE * 1 -- * 22 |
ソースコード
import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines
n=int(readline())
from decimal import *
getcontext().prec=50
ans=Decimal(0)
for _ in range(n):
x=int(readline())
ans+=Decimal(x).sqrt()
print(ans.quantize(Decimal('1e-18')))
chocorusk