結果
| 問題 |
No.2508 Discriminant
|
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2024-12-01 13:57:50 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 164 ms / 2,000 ms |
| コード長 | 162 bytes |
| コンパイル時間 | 349 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 74,900 KB |
| 最終ジャッジ日時 | 2024-12-01 13:57:53 |
| 合計ジャッジ時間 | 2,683 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
import sys
sys.set_int_max_str_digits(10**6)
a, p, q = map(int, input().split())
b = (-p-q)*a
c = p*q*a
if b**2 > 4*a*c:
print("Yes")
else:
print("No")
detteiuu