結果
| 問題 |
No.8072 Sum of sqrt(x)
|
| ユーザー |
convexineq
|
| 提出日時 | 2021-05-11 01:17:05 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 141 bytes |
| コンパイル時間 | 657 ms |
| コンパイル使用メモリ | 82,708 KB |
| 実行使用メモリ | 236,400 KB |
| 最終ジャッジ日時 | 2024-09-20 06:56:05 |
| 合計ジャッジ時間 | 17,144 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 TLE * 1 -- * 22 |
ソースコード
from decimal import Decimal
n,*x = map(int,open(0).read().split())
ans = Decimal(0)
for xi in x:
ans += Decimal(xi).sqrt()
print(ans)
convexineq