結果

問題 No.2953 Maximum Right Triangle
ユーザー nouka28nouka28
提出日時 2024-11-08 21:27:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 2,897 ms
コンパイル使用メモリ 243,468 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 21:27:19
合計ジャッジ時間 3,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

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

#define int long long

void slv(){
	int D,x,y;cin>>D>>x>>y;

	int g=__gcd(x,y);

	int dx=y/g,dy=x/g;

	int ans=0;

	{
		int t=1e18;

		if(dx){
			t=min(t,(D-x)/dx);
		}

		if(dy){
			t=min(t,y/dy);
		}

		int px=x+dx*t,py=y-dy*t;

		ans=max(ans,abs(px*y-x*py));
	}

	{
		int t=1e18;

		if(dx){
			t=min(t,x/dx);
		}

		if(dy){
			t=min(t,(D-y)/dy);
		}

		int px=x-dx*t,py=y+dy*t;

		ans=max(ans,abs(px*y-x*py));
	}

	cout<<ans<<endl;
}

signed main(){
	int T;cin>>T;
	while(T--){
		slv();
	}
}
0