結果

問題 No.2110 012 Matching
ユーザー forest3forest3
提出日時 2022-11-01 10:54:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 167,636 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-16 05:19:47
合計ジャッジ時間 4,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 86 ms
6,940 KB
testcase_02 AC 226 ms
6,940 KB
testcase_03 AC 150 ms
6,940 KB
testcase_04 AC 299 ms
6,944 KB
testcase_05 AC 209 ms
6,940 KB
testcase_06 AC 203 ms
6,944 KB
testcase_07 AC 339 ms
6,940 KB
testcase_08 AC 13 ms
6,940 KB
testcase_09 AC 50 ms
6,940 KB
testcase_10 AC 340 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	int T;
	cin >> T;

	typedef unsigned long long ll;
	for( int i = 0; i < T; i++ ) {
		ll A, B, C;
		cin >> A >> B >> C;
		ll ans = 0;
		ll ac = min( A, C );
		ans += ac * 2;
		if( ac == C ) {
			ll ra = A - ac;
			ans += B / 2 * 2;
			ll rb = B % 2;
			ans += min( ra, rb );
		}
		else {
			ll rc = C - ac;
			ans += rc / 2;
			ans += B / 2 * 2;
		}
		cout << ans << endl;
	}
}
0