結果
| 問題 | No.2508 Discriminant |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-10-22 10:54:39 |
| 言語 | C90 (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 168 bytes |
| 記録 | |
| コンパイル時間 | 143 ms |
| コンパイル使用メモリ | 33,880 KB |
| 最終ジャッジ日時 | 2026-02-24 01:17:00 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 22 |
ソースコード
#include<stdio.h>
int main(){
int a,p,q,b,c;
scanf("%d %d %d",&a,&p,&q);
b = (p+q)*a;
c = p*q*a;
if( (b*b) > 4*a*c ){
printf("Yes");
}else{
printf("No");
}
}