結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
|
| 提出日時 | 2020-10-23 10:36:55 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 104 bytes |
| 記録 | |
| コンパイル時間 | 477 ms |
| コンパイル使用メモリ | 85,456 KB |
| 実行使用メモリ | 89,408 KB |
| 最終ジャッジ日時 | 2026-04-03 04:21:12 |
| 合計ジャッジ時間 | 19,133 ms |
|
ジャッジサーバーID (参考情報) |
judge5_1 / judge4_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 TLE * 3 -- * 19 |
ソースコード
import math
ans = 0.0
for i in range(int(input())):
ans += math.sqrt(float(input()))
print(ans)