結果
| 問題 |
No.2953 Maximum Right Triangle
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-11-08 21:33:28 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 954 bytes |
| コンパイル時間 | 5,244 ms |
| コンパイル使用メモリ | 307,416 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-08 21:33:40 |
| 合計ジャッジ時間 | 5,747 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 4 WA * 2 |
ソースコード
#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 = min(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;
}