結果

問題 No.2110 012 Matching
ユーザー kotatsugamekotatsugame
提出日時 2022-10-28 21:26:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 63,220 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 00:23:53
合計ジャッジ時間 3,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 87 ms
6,940 KB
testcase_02 AC 221 ms
6,944 KB
testcase_03 AC 149 ms
6,940 KB
testcase_04 AC 297 ms
6,944 KB
testcase_05 AC 208 ms
6,944 KB
testcase_06 AC 201 ms
6,940 KB
testcase_07 AC 337 ms
6,944 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 49 ms
6,940 KB
testcase_10 AC 334 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    3 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
main()
{
	int T;cin>>T;
	for(;T--;)
	{
		long a,b,c;
		cin>>a>>b>>c;
		long ans=b/2*2;b%=2;
		long t=min(a,c);
		ans+=t*2;a-=t;c-=t;
		ans+=c/2;c%=2;
		ans+=min(a,b);
		cout<<ans<<"\n";
	}
}
0