結果
問題 |
No.8072 Sum of sqrt(x)
|
ユーザー |
|
提出日時 | 2024-05-01 22:44:28 |
言語 | Julia (2.11.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 140 bytes |
コンパイル時間 | 226 ms |
コンパイル使用メモリ | 5,632 KB |
実行使用メモリ | 948,764 KB |
最終ジャッジ日時 | 2024-11-22 06:09:22 |
合計ジャッジ時間 | 96,106 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | TLE * 2 MLE * 1 |
other | TLE * 25 MLE * 2 |
ソースコード
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