結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
nishigake
|
| 提出日時 | 2020-11-23 01:34:26 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
OLE
|
| 実行時間 | - |
| コード長 | 174 bytes |
| 記録 | |
| コンパイル時間 | 3,212 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 15,708 KB |
| 最終ジャッジ日時 | 2026-04-03 15:17:51 |
| 合計ジャッジ時間 | 15,850 ms |
|
ジャッジサーバーID (参考情報) |
judge5_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 TLE * 1 OLE * 1 -- * 20 |
ソースコード
from decimal import Decimal
import sys
input = sys.stdin.readline
N = int(input())
ans = Decimal(0)
for _ in range(N):
ans += Decimal(int(input())).sqrt()
print(ans)
nishigake