結果

問題 No.1034 テスターのふっぴーさん
ユーザー ptotqptotq
提出日時 2020-04-24 22:06:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 1,475 ms
コンパイル使用メモリ 168,432 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-15 02:54:29
合計ジャッジ時間 2,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, start, end) for (int64_t i=start, i##Len=(end); i < i##Len; ++i)
#define REPR(i, start, end) for (int64_t i=start, i##Len=(end); i > i##Len; --i)
using ll = int64_t;
using namespace std;


int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(20);

    ll Q, N, I, J;
    cin >> Q;
    REP(i, 0, Q) {
        cin >> N >> I >> J;
        ll nest = min(min(I, N-1-I), min(J, N-1-J));
        ll ans = (2*(N-1) + (nest-1)*(-2)) * nest * 2;
        cout << nest << ans << endl;
        if (J == nest) ans += I - nest;
        else if (I == N-1-nest) ans += (N-1-2*nest) + (J - nest);
        else if (J == N-1-nest) ans += (N-1-2*nest)*2 + (N-1-nest - I);
        else ans += (N-1-2*nest)*3 + (N-1-nest - J);

        cout << ans << endl;
    }

}
0