結果
| 問題 | No.3421 How Many Peaks? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-11 14:06:54 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 22 ms / 2,000 ms |
| コード長 | 246 bytes |
| 記録 | |
| コンパイル時間 | 3,451 ms |
| コンパイル使用メモリ | 334,016 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-01-11 14:07:00 |
| 合計ジャッジ時間 | 3,906 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
int ttt;
cin>>ttt;
while(ttt--){
ll a,b,c,d;
cin>>a>>b>>c>>d;
if(a==0)cout<<"No"<<endl;
else if(b*b-3*a*c>0)cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}
}