結果
| 問題 | No.3421 How Many Peaks? |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-15 15:54:55 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 206 bytes |
| 記録 | |
| コンパイル時間 | 402 ms |
| コンパイル使用メモリ | 82,284 KB |
| 実行使用メモリ | 76,956 KB |
| 最終ジャッジ日時 | 2026-01-15 15:54:58 |
| 合計ジャッジ時間 | 2,334 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 10 |
ソースコード
T = int(input())
for _ in range(T):
a, b, c, d = map(int, input().split())
A = 3 * a
B = 2 * b
C = c
D = B**2 - 4 * A * C
if D > 0:
print('Yes')
else:
print('No')