結果

問題 No.2953 Maximum Right Triangle
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-11-10 00:50:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,246 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 200,428 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-10 00:50:24
合計ジャッジ時間 3,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#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;
        cin >> D >> x >> y;
        //ありうるのは(x-ny, y+nx) (nは整数)
        //面積の2倍は|n|(x^2+y^2)
        //0<=x-ny<=D, 0<=y+nx<=D
        l1 = ceil(x-D, y);
        r1 = floor(x, y);
        l2 = ceil(-y, x);
        r2 = floor(D-y, x);
        l = max(l1, l2);
        r = min(r1, r2);
        if (l>r){
            cout << 0 << endl;
        }
        else{
            cout << max(abs(l),abs(r)) * (x*x+y*y) << endl;
        }
    }

    return 0;
}
0