結果
| 問題 | No.2110 012 Matching |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-10-28 22:04:50 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 586 bytes |
| 記録 | |
| コンパイル時間 | 3,609 ms |
| コンパイル使用メモリ | 187,020 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-06-28 09:15:28 |
| 合計ジャッジ時間 | 8,793 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 10 |
ソースコード
#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;
}