結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
👑 |
| 提出日時 | 2023-09-15 08:52:00 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 115 bytes |
| 記録 | |
| コンパイル時間 | 382 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 82,176 KB |
| 最終ジャッジ日時 | 2026-03-23 21:17:39 |
| 合計ジャッジ時間 | 58,550 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 TLE * 20 |
ソースコード
import math
I=input
a=0
B=2**40
for n in range(int(I())):
a+=math.sqrt(int(I())<<80)
print('{:.16g}'.format(a/B))