結果
| 問題 | No.3421 How Many Peaks? |
| コンテスト | |
| ユーザー |
ZeriToki
|
| 提出日時 | 2026-01-11 13:40:36 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 2,000 ms |
| コード長 | 499 bytes |
| 記録 | |
| コンパイル時間 | 3,257 ms |
| コンパイル使用メモリ | 333,240 KB |
| 実行使用メモリ | 7,852 KB |
| 最終ジャッジ日時 | 2026-01-11 13:40:56 |
| 合計ジャッジ時間 | 3,861 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
const long long mod=998244353;
const long long mod2=469762049;
int main(){
cin.tie(0)->sync_with_stdio(0);
cout.tie(0);
int T;
cin>>T;
while(T--){
int a,b,c,d;
cin>>a>>b>>c>>d;
if(a==0){
cout<<"No\n";
continue;
}
int D=b*b-3*a*c;
if(D>0) cout<<"Yes\n";
else cout<<"No\n";
}
}
ZeriToki