結果
問題 | No.2508 Discriminant |
ユーザー |
![]() |
提出日時 | 2024-12-01 13:54:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 162 bytes |
コンパイル時間 | 468 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 74,368 KB |
最終ジャッジ日時 | 2024-12-01 13:55:02 |
合計ジャッジ時間 | 2,967 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 WA * 2 |
ソースコード
import syssys.set_int_max_str_digits(10**6)a, p, q = map(int, input().split())b = (-p-q)*2c = p*q*aif b**2 > 4*a*c:print("Yes")else:print("No")