結果

問題 No.1064 ∪∩∩ / Cup Cap Cap
ユーザー furafura
提出日時 2020-05-29 23:56:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 192,472 KB
最終ジャッジ日時 2025-01-10 18:37:04
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

int main(){
	lint a,b,c,d; cin>>a>>b>>c>>d;

	lint D=(a-c)*(a-c)-8*(b-d);
	if(D<0){
		puts("No");
	}
	else if(D==0){
		puts("Yes");
	}
	else{
		double x1=(-(a-c)+sqrt(D))/4;
		double x2=(-(a-c)-sqrt(D))/4;
		double y1=x1*x1+a*x1+b;
		double y2=x2*x2+a*x2+b;
		double p=(y2-y1)/(x2-x1);
		double q=y1-p*x1;
		printf("%.9f %.9f\n",p,q);
	}
	return 0;
}
0