結果
| 問題 | No.3421 How Many Peaks? |
| コンテスト | |
| ユーザー |
urectanc
|
| 提出日時 | 2026-01-11 13:38:59 |
| 言語 | Rust (1.94.0 + proconio + num + itertools) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| + 425µs | |
| コード長 | 290 bytes |
| 記録 | |
| コンパイル時間 | 557 ms |
| コンパイル使用メモリ | 188,700 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-20 05:06:24 |
| 合計ジャッジ時間 | 2,267 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
use proconio::{fastout, input};
#[fastout]
fn main() {
input! {
t: usize,
testcases: [(i32, i32, i32, i32); t],
}
for &(a, b, c, _d) in &testcases {
let ans = a != 0 && b * b > 3 * a * c;
println!("{}", if ans { "Yes" } else { "No" });
}
}
urectanc