結果

問題 No.2110 012 Matching
ユーザー zezero
提出日時 2022-10-28 22:04:50
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 586 bytes
コンパイル時間 3,005 ms
コンパイル使用メモリ 159,996 KB
最終ジャッジ日時 2025-02-08 14:32:00
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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;
    cout << ans << endl;
  }

  return 0;
}
0