結果
問題 | No.2953 Maximum Right Triangle |
ユーザー | srjywrdnprkt |
提出日時 | 2024-11-10 01:01:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,392 bytes |
コンパイル時間 | 2,104 ms |
コンパイル使用メモリ | 201,192 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-10 01:01:46 |
合計ジャッジ時間 | 2,502 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 | RE | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/modint> using namespace std; //using namespace atcoder; using ll = long long; //using mint = modint998244353; //calculate ceil(a/b) template<typename T> T ceil(T a, T b){ assert(b != 0); if (a == 0) return 0; if (a > 0 && b > 0) return (a+b-1) / b; else if (a < 0 && b < 0) return (a+b+1) / b; else return a / b; } //calculate floor(a/b) template<typename T> T floor(T a, T b){ assert(b != 0); if (a == 0) return 0; if (a > 0 && b < 0) return (a-b-1) / b; else if (a < 0 && b > 0) return (a-b+1) / b; else return a / b; } int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); int T; cin >> T; while(T--){ ll D, x, y, l1, r1, l2, r2, l, r, ans, g, x2, y2, x3, y3; cin >> D >> x >> y; g = gcd(x, y); x2 = x/g; y2 = y/g; //ありうるのは(x-ny2, y+nx2) (nは整数) //0<=x-ny2<=D, 0<=y+nx2<=D l1 = ceil(x-D, y2); r1 = floor(x, y2); l2 = ceil(-y, x2); r2 = floor(D-y, x2); l = max(l1, l2); r = min(r1, r2); if (l>r){ cout << 0 << endl; } else{ g = max(abs(l), abs(r)); x3 = x-g*y2; y3 = y+g*x2; ans = abs(x3*y-y3*x); cout << ans << endl; } } return 0; }