結果

問題 No.3042 拡大コピー
ユーザー nouka28
提出日時 2025-02-28 22:36:47
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 3,025 ms
コンパイル使用メモリ 275,828 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2025-03-01 07:39:32
合計ジャッジ時間 5,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

using ll=long long;

using ld=long double;

int main(){
	cin.tie(nullptr);
	ios_base::sync_with_stdio(false);
	int N;cin>>N;

	ld P=2e9,Q=2e9;

	for(int i=0;i<N;i++){
		ld x,y;cin>>x>>y;
		if(x==ld(0)&&y==ld(0))continue;
		P=min(P,hypotl(x,y));
	}
	for(int i=0;i<N;i++){
		ld x,y;cin>>x>>y;
		if(x==ld(0)&&y==ld(0))continue;
		Q=min(Q,hypotl(x,y));
	}
	ld ans=Q/P;
	cout<<fixed<<setprecision(20)<<ans<<endl;
}
0