結果

問題 No.2110 012 Matching
ユーザー uraraurara
提出日時 2023-01-19 03:15:23
言語 Ruby
(3.3.0)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-06-12 03:00:16
合計ジャッジ時間 3,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 145 ms
12,928 KB
testcase_02 AC 233 ms
13,056 KB
testcase_03 AC 189 ms
12,800 KB
testcase_04 AC 291 ms
13,184 KB
testcase_05 AC 229 ms
12,800 KB
testcase_06 AC 221 ms
12,928 KB
testcase_07 AC 328 ms
13,312 KB
testcase_08 AC 93 ms
12,544 KB
testcase_09 AC 122 ms
12,544 KB
testcase_10 AC 333 ms
13,184 KB
testcase_11 AC 78 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

t = gets.to_i

results = []

t.times{
	a,b,c = gets.split.map &:to_i
	
	result = 0
	
	if c > a then
		result += a * 2
		c -= a
		result += c / 2
		result += b / 2 * 2
	else
		result += c * 2
		a = a - c
		result += b / 2 * 2
		
		if b % 2 == 1 && a>0 then
			result += 1
		end
	end
	
	results << result
}

puts results
0