結果

問題 No.2953 Maximum Right Triangle
ユーザー HanabishiHanabishi
提出日時 2024-11-10 02:15:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 768 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 100,484 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-10 02:15:07
合計ジャッジ時間 1,570 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>
using namespace std;
typedef long long ll;
#define rep(i,a,n) for(int i=(a);i<(n);i++)

int T;
long D, x, y;
int main(){
	ios::sync_with_stdio(false);	
	cin.tie(nullptr);

	cin >> T;
	while(T--){
		cin >> D >> x >> y;
		long g = gcd(x, y);
		long nx = y/g, ny = -x/g;
		long l=0L, r=1e9+1;
		while(l+1<r){
			long mid = (l+r)/2;
			long xx = mid*nx+x, yy = mid*ny+y;
			if(0<=xx&&xx<=D&&0<=yy&&yy<=D) l = mid;
			else r = mid;
		}
		long L=-1e9-1, R=0L;
		while(L+1<R){
			long mid = (L+R)/2;
			long xx = mid*nx+x, yy = mid*ny+y;
			if(0<=xx&&xx<=D&&0<=yy&&yy<=D) R = mid;
			else L = mid;
		}
		if(abs(l)>abs(R)) cout << l*(x*x+y*y)/g << endl;
		else cout << -R*(x*x+y*y)/g << endl;
	}
}
0