結果
問題 | No.1034 テスターのふっぴーさん |
ユーザー |
![]() |
提出日時 | 2020-04-24 22:16:01 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 814 bytes |
コンパイル時間 | 1,723 ms |
コンパイル使用メモリ | 166,976 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-15 03:00:52 |
合計ジャッジ時間 | 2,514 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 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 >> J >> I; 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); assert(ans >= 0); cout << ans << endl; } }