結果

問題 No.2953 Maximum Right Triangle
ユーザー pia019pia019
提出日時 2024-11-08 21:30:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 831 bytes
コンパイル時間 5,234 ms
コンパイル使用メモリ 307,536 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 21:30:17
合計ジャッジ時間 6,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 RE -
testcase_04 AC 2 ms
5,248 KB
testcase_05 RE -
testcase_06 RE -
権限があれば一括ダウンロードができます

ソースコード

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 = 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