結果

問題 No.2953 Maximum Right Triangle
ユーザー pia019pia019
提出日時 2024-11-08 21:34:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 954 bytes
コンパイル時間 5,277 ms
コンパイル使用メモリ 307,540 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 21:34:13
合計ジャッジ時間 5,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,248 KB
testcase_04 AC 2 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>
#include <atcoder/all>
using namespace std;
typedef long long ll;
const int INF = 1<<30;
const ll INFLL = 1LL<<60;
const ll MOD = 998244353;
const double INFD = 1.0E10;
const int dx[8] = {1, 1, 0, -1, -1, -1, 0, 1};
const int dy[8] = {0, 1, 1, 1, 0, -1, -1, -1};
using Pair = pair<ll, ll>;
using Graph = vector<vector<int>>;
using mint = atcoder::modint998244353;


int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
    int t; cin >> t;
    while (t--){
        ll d, x, y; cin >> d >> x >> y;
        ll g = gcd(x, y);
        ll p = y / g, q = x / g; //(-p, q)
        ll n = 0;
        if (p == 0) n = max((d - y) / q, y / q);
        else if (q == 0) n = max(x / p, (d - x) / p);
        else n = max(min(x / p, (d - y) / q), min((d - x) / p, y / q));
        //cout << g << ' ' << n << ' ';
        cout << (g * n) * (p * p + q * q) << '\n';
    }
    
    return 0;
}
0