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