結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
Qwerty14
|
| 提出日時 | 2024-10-02 12:40:11 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
TLE
不安定
|
| 実行時間 | - |
| コード長 | 213 bytes |
| 記録 | |
| コンパイル時間 | 450 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 11,520 KB |
| 最終ジャッジ日時 | 2026-09-08 23:10:25 |
| 合計ジャッジ時間 | 121,674 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 TLE * 23 |
ソースコード
from decimal import Decimal, getcontext
getcontext().prec = 18 # 18桁の精度を保証
N = int(input())
ans = Decimal(0)
for _ in range(N):
x = int(input())
ans += Decimal(x**(1/2))
print(ans)
Qwerty14