結果

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <numeric>
#include <vector>
#include <string>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <stack>
#include <iomanip>
#include <functional>
#include <bitset>
#include <limits>
#include <cstdio>
#include <cmath>
#include <cassert>
#include <random>

#ifdef DEBUG
#include "library/Utility/debug.cpp"
#else
#define debug(...)
#endif

#define rep(i,n) for(int i=0;i<(n);++i)
#define EL '\n'
#define print(i) std::cout << (i) << '\n'
#define all(v) (v).begin(), (v).end()
using lnt = long long;
constexpr lnt INF = 2e18;
/*-*/

int main() {
	lnt a,b,c,d;
	std::cin >> a >> b >> c >> d;
	lnt D = (a-c)*(a-c)-8*(b-d);
	if(D<0) print("No");
	else if(D==0) print("Yes");
	else {
		std::cout << (double)(a+c)/2 << ' ' << (b+d)*(double)0.5 << EL;
	}
}
0