結果

問題 No.955 ax^2+bx+c=0
ユーザー 👑 obakyan
提出日時 2020-03-31 22:35:35
言語 Lua
(LuaJit 2.1.1734355927)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-25 12:18:43
合計ジャッジ時間 4,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 88 WA * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = 0
    if 1000000007 < z then
      y = c / a / z
    else
      y = (-b + math.sqrt(b * b - 4 * a * c)) / (2 * a)
    end
    print(2)
    print(string.format("%.13f", z))
    print(string.format("%.13f", y))
  end
end
0