結果

問題 No.2110 012 Matching
ユーザー noshi91noshi91
提出日時 2022-10-28 23:33:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 76,240 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-06 02:50:06
合計ジャッジ時間 3,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 75 ms
5,376 KB
testcase_02 AC 196 ms
5,376 KB
testcase_03 AC 133 ms
5,376 KB
testcase_04 AC 261 ms
5,376 KB
testcase_05 AC 183 ms
5,376 KB
testcase_06 AC 175 ms
5,376 KB
testcase_07 AC 295 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 43 ms
5,376 KB
testcase_10 AC 294 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/modint>

using mint = atcoder::modint998244353;
using ll = long long;

#include <algorithm>
#include <iostream>
#include <utility>
#include <vector>

int main() {

  int T;
  std::cin >> T;
  for (int cc = 0; cc < T; cc++) {
    ll A, B, C;
    std::cin >> A >> B >> C;
    ll ans = 0;
    {
      ll m = std::min(A, C);
      ans += 2 * m;
      A -= m;
      C -= m;
    }
    if (A == 0) {
      ans += 2 * (B / 2);
      ans += C / 2;
    }
    else {
      ans += B;
    }
    std::cout << ans << "\n";
  }

  return 0;
}
0