結果
問題 |
No.955 ax^2+bx+c=0
|
ユーザー |
👑 |
提出日時 | 2020-03-31 22:37:01 |
言語 | Lua (LuaJit 2.1.1734355927) |
結果 |
WA
|
実行時間 | - |
コード長 | 561 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 6,812 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-25 12:20:27 |
合計ジャッジ時間 | 3,105 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 93 WA * 29 |
ソースコード
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 print(2) print(string.format("%.13f", z)) print(string.format("%.13f", y)) end end