結果

問題 No.2953 Maximum Right Triangle
ユーザー テナガザルテナガザル
提出日時 2024-11-08 21:33:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 92,504 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 21:33:37
合計ジャッジ時間 1,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 <iostream>
#include <vector>
#include <algorithm>

using namespace std;

void solve()
{
  long long d, x, y;
  cin >> d >> x >> y;
  if (x == 0 || y == 0)
  {
    cout << max(x, y) * d << endl;
    return;
  }
  int g = abs(__gcd(x, y));
  long long ans = 0;
  {
    long long dx = y / g, dy = - x / g;
    int k = min(x / dx, (d - y) / (-dy));
    long long nx = x + dx * k, ny = y + dy * k;
    ans = max(ans, (long long)abs(nx * y - ny * x));
  }
  {
    long long dx = - y / g, dy = x / g;
    int k = min(y / dy, (d - x) / (-dx));
    long long nx = x + dx * k, ny = y + dy * k;
    ans = max(ans, (long long)abs(nx * y - ny * x));
  }
  cout << ans << endl;
}

int main()
{
  int t;
  cin >> t;
  while (t--) solve();
}
0