結果
問題 |
No.955 ax^2+bx+c=0
|
ユーザー |
👑 |
提出日時 | 2020-03-31 22:39:22 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
WA
|
実行時間 | - |
コード長 | 714 bytes |
コンパイル時間 | 59 ms |
コンパイル使用メモリ | 6,688 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 12:26:22 |
合計ジャッジ時間 | 3,324 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 120 WA * 2 |
ソースコード
local a, b, c = io.read("*n", "*n", "*n") if a == 0 then if b == 0 then print(c == 0 and -1 or 0) else print(1) print(string.format("%.13f", -c / b)) end else local at, bt, ct = 0LL + a, 0LL + b, 0LL + c local d = bt * bt - 4 * at * ct if d < 0LL then print(0) elseif d == 0LL then print(1) print(string.format("%.13f", -b / (2 * a))) else local z = (-b - math.sqrt(b * b - 4 * a * c)) / (2 * a) local y = c / a / z if math.abs(z) < 0.000001 then y = (-b + math.sqrt(b * b - 4 * a * c)) / (2 * a) z = c / a / y end print(2) if y < z then z, y = y, z end print(string.format("%.13f", z)) print(string.format("%.13f", y)) end end