結果

問題 No.2953 Maximum Right Triangle
ユーザー syuya2036syuya2036
提出日時 2024-11-09 02:00:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 958 bytes
コンパイル時間 3,110 ms
コンパイル使用メモリ 244,240 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-09 02:00:59
合計ジャッジ時間 3,637 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const long long INF = 1e18;

long long gcd(long a, long b) {
	if(a % b == 0) return b;
	return gcd(b, a%b);
}
int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int T; cin>>T;
    while(T--) {
        long long x, y, D;
        cin>>D>>x>>y;
        long long ans = 0;
        if(x==0) {
            cout<<y*D<<endl;
            return 0;
        } else if(y == 0) {
            cout<<x*D<<endl;
            return 0;
        }
        long long X = x / gcd(x, y);
        long long Y = y / gcd(x, y);
        {
            long long mt = min((D-y)/X, x/Y);
            long long i = y+mt*X;
            long long j = x-mt*Y;
            ans = max(ans, abs(x*i - y*j));
        }
        {
            long long mt = min((D-x)/Y, y/X);
            long long i = y-mt*X;
            long long j = x+mt*Y;
            ans = max(ans, abs(x*i - y*j));
        }
        cout<<ans<<endl;
    }
}

0