結果
| 問題 |
No.1034 テスターのふっぴーさん
|
| コンテスト | |
| ユーザー |
ptotq
|
| 提出日時 | 2020-04-24 22:07:16 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 789 bytes |
| コンパイル時間 | 1,584 ms |
| コンパイル使用メモリ | 167,424 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-15 02:55:10 |
| 合計ジャッジ時間 | 2,525 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 30 |
ソースコード
#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;
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;
}
}
ptotq