結果

問題 No.2110 012 Matching
ユーザー zezero
提出日時 2022-10-28 22:10:28
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 3,070 ms
コンパイル使用メモリ 159,512 KB
最終ジャッジ日時 2025-02-08 14:35:08
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <iomanip>
#include <cstring>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i,n) for (int i = 0; i < int(n);i++)

int main(){
  int t;
  cin >> t;
  while(t--){
    ll a,b,c;
    cin >> a >> b >> c;
    ll ans = 0;
    ll d = min(a,c);
    ans += d*2;
    c -= d;
    a -= d;
    ans += 2*(b/2);
    b%=2;
    ans += (c/2);
    c%=2;
    if (a == 1 && b == 1) ans++;
    cout << ans << endl;
  }

  return 0;
}
0