結果

問題 No.1179 Quadratic Equation
ユーザー fuppy_kyoprofuppy_kyopro
提出日時 2020-08-21 21:40:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-10-15 05:26:46
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
79,744 KB
testcase_01 AC 117 ms
79,744 KB
testcase_02 AC 120 ms
80,000 KB
testcase_03 AC 117 ms
80,128 KB
testcase_04 AC 116 ms
80,128 KB
testcase_05 AC 117 ms
80,256 KB
testcase_06 AC 117 ms
80,128 KB
testcase_07 AC 124 ms
79,744 KB
testcase_08 AC 119 ms
80,128 KB
testcase_09 AC 118 ms
80,128 KB
testcase_10 WA -
testcase_11 AC 119 ms
80,000 KB
testcase_12 AC 115 ms
80,028 KB
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal
from decimal import Decimal

def main():
    A, B, C = map(int, input().split())
    a = Decimal(A)
    b = Decimal(B)
    c = Decimal(C)

    k = b * b - Decimal(4) * a * c
    if k < Decimal(0):
        print("imaginary")
        return

    if k == 0:
        print(-b / (Decimal(2) * a))
    else:
        print((-b - k.sqrt()) / (Decimal(2) * a), end=' ')
        print((-b + k.sqrt()) / (Decimal(2) * a))


if __name__ == '__main__':
    main()
0