結果
問題 | No.2110 012 Matching |
ユーザー | US_cube |
提出日時 | 2022-10-28 21:34:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,194 bytes |
コンパイル時間 | 927 ms |
コンパイル使用メモリ | 94,208 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 00:38:10 |
合計ジャッジ時間 | 4,006 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <iostream> #include <cmath> #include <string> #include <vector> #include <algorithm> #include <utility> #include <tuple> #include <cstdint> #include <cstdio> #include <map> #include <queue> #include <set> #include <stack> #include <deque> #include <unordered_map> #include <unordered_set> #include <bitset> #include <cctype> #include <climits> #include <functional> #include <cassert> #include <numeric> #define rep(i, n) for(int i = 0; i < (n); i++) #define per(i, n) for(int i = (n) - 1; i >= 0; i--) using ll = long long; #define vi vector<int> #define vvi vector<vi> #define vl vector<ll> #define pii pair<int, int> #define pll pair<ll, ll> #define all(a) (a).begin(), (a).end() #define rall(a) (a).rbegin(), (a).rend() constexpr int mod = 1000000007; using namespace std; template<class T, class U> bool chmax(T &a, const U &b){ return a < b ? (a = b, 1) : 0; } template<class T, class U> bool chmin(T &a, const U &b){ return a > b ? (a = b, 1) : 0; } void solve(){ ll a,b,c; cin >> a >> b >> c; ll ans = (min(a, c) + b/2) * 2; b &= 1; a -= min(a, c); c -= min(a, c); ans += min(a, b); cout << ans << "\n"; } int main(){ int t; cin >> t; rep(i, t) solve(); }