結果

問題 No.2110 012 Matching
ユーザー tatt61880tatt61880
提出日時 2023-03-13 23:14:35
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 145,784 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 07:49:03
合計ジャッジ時間 5,734 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 73 ms
6,940 KB
testcase_02 AC 183 ms
6,940 KB
testcase_03 AC 122 ms
6,944 KB
testcase_04 AC 246 ms
6,944 KB
testcase_05 AC 189 ms
6,944 KB
testcase_06 AC 178 ms
6,944 KB
testcase_07 AC 284 ms
6,944 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 43 ms
6,940 KB
testcase_10 AC 287 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var t: int :: cui@inputInt()
	for(1, t)
		var a: int :: cui@inputInt()
		var b: int :: cui@inputInt()
		var c: int :: cui@inputInt()
		var f: bool :: (a + b + c) % 2 = 0
		
		var ans: int :: 0
		
		if(a <= c)
			do ans :+ 2 * a
			do c :- a
			do a :: 0
			
			do ans :+ c / 2
			
			if(b % 2 = 0)
				do ans :+ b
			else
				do ans :+ b - 1
			end if
		else
			do ans :+ 2 * c
			do a :- c
			do c :: 0
			
			if(b % 2 = 0)
				do ans :+ b
			else
				if(a <> 0)
					do ans :+ b
				else
					do ans :+ b - 1
				end if
			end if
		end if
		
		do cui@print("\{ans}\n")
	end for
end func
0