結果
| 問題 |
No.8072 Sum of sqrt(x)
|
| ユーザー |
👑 |
| 提出日時 | 2023-09-15 08:53:35 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 115 bytes |
| コンパイル時間 | 261 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 17,824 KB |
| 最終ジャッジ日時 | 2024-07-02 13:01:47 |
| 合計ジャッジ時間 | 11,051 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 TLE * 1 -- * 22 |
ソースコード
import math
I=input
a=0
B=2**20
for n in range(int(I())):
a+=math.sqrt(int(I())<<40)
print('{:.16g}'.format(a/B))