結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
|
| 提出日時 | 2024-05-01 22:44:28 |
| 言語 | Julia (1.12.5) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 140 bytes |
| 記録 | |
| コンパイル時間 | 315 ms |
| コンパイル使用メモリ | 6,656 KB |
| 実行使用メモリ | 390,884 KB |
| 最終ジャッジ日時 | 2026-05-16 09:28:08 |
| 合計ジャッジ時間 | 13,890 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | TLE * 1 -- * 2 |
| other | -- * 27 |
ソースコード
using Printf
n = parse(Int, readline())
s = 0.0
for _ in 1:n
x = parse(Float64, readline())
s += sqrt(x)
@printf "%.14f\n" s
end