結果
問題 | No.2110 012 Matching |
ユーザー | kpinkcat |
提出日時 | 2023-09-23 23:52:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 340 ms / 2,000 ms |
コード長 | 979 bytes |
コンパイル時間 | 2,619 ms |
コンパイル使用メモリ | 200,024 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-16 23:42:39 |
合計ジャッジ時間 | 5,865 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 87 ms
6,940 KB |
testcase_02 | AC | 228 ms
6,940 KB |
testcase_03 | AC | 152 ms
6,944 KB |
testcase_04 | AC | 300 ms
6,944 KB |
testcase_05 | AC | 212 ms
6,944 KB |
testcase_06 | AC | 203 ms
6,940 KB |
testcase_07 | AC | 340 ms
6,940 KB |
testcase_08 | AC | 13 ms
6,940 KB |
testcase_09 | AC | 51 ms
6,944 KB |
testcase_10 | AC | 338 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #include<iostream> #include<map> #include<vector> #include <algorithm> #include<math.h> #include <iomanip> #include<set> #include <numeric> #include<string> using ll = long long; using namespace std; int main() { ll t, a, b, c; cin >> t; for (int i = 0; i < t; i++){ ll max1 = 0; cin >> a >> b >> c; if (a && c){ ll tmp = min(a, c); max1 += tmp*2; if (a >= c){ a -= c; c = 0; } else { c -= a; a = 0; } } if (b%2){ max1 += (b-1); b = 1; } else{ max1 += b; b = 0; } if (a && b){ max1++; a--; b = 0; } if (c && c%2){ max1 += (c - 1)/2; c = 1; } else if (c) max1 += c/2; cout << max1 << "\n"; } }