結果
| 問題 | No.3421 How Many Peaks? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-12 04:05:23 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,000 ms |
| コード長 | 364 bytes |
| 記録 | |
| コンパイル時間 | 3,190 ms |
| コンパイル使用メモリ | 333,508 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-01-12 04:05:27 |
| 合計ジャッジ時間 | 3,968 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long int
#define endl "\n"
signed main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int t;cin>>t;
while(t--){
int a,b,c,d;cin>>a>>b>>c>>d;
if(a!=0 and 4*b*b-12*a*c>0){
cout<<"Yes"<<endl;
}else{
cout<<"No"<<endl;
}
}
}