結果
問題 | No.966 引き算をして門松列(その1) |
ユーザー | outline |
提出日時 | 2021-01-08 17:44:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 1,549 bytes |
コンパイル時間 | 1,321 ms |
コンパイル使用メモリ | 133,328 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-15 23:12:09 |
合計ジャッジ時間 | 2,029 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 4 ms
6,820 KB |
testcase_05 | AC | 6 ms
6,816 KB |
testcase_06 | AC | 6 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> #include <unordered_set> using namespace std; using ll = long long; using P = pair<int, int>; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } ll func(int x, int y, int z){ ll res = 0; if(y >= z){ res += y - z + 1; y = z - 1; } if(x >= y){ res += x - y + 1; x = y - 1; } if(x <= 0) res = 1e+17; return res; } void solve(){ int A, B, C; cin >> A >> B >> C; ll ans = 1e+17; chmin(ans, func(B, A, C)); chmin(ans, func(C, A, B)); chmin(ans, func(A, C, B)); chmin(ans, func(B, C, A)); if(ans == 1e+17) ans = -1; cout << ans << '\n'; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--) solve(); return 0; }