結果

問題 No.2110 012 Matching
ユーザー ID 21712ID 21712
提出日時 2024-11-18 13:42:23
言語 Go
(1.22.1)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 12,525 ms
コンパイル使用メモリ 234,596 KB
実行使用メモリ 7,968 KB
最終ジャッジ日時 2024-11-18 13:42:40
合計ジャッジ時間 14,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 97 ms
6,820 KB
testcase_02 AC 266 ms
7,844 KB
testcase_03 AC 173 ms
7,844 KB
testcase_04 AC 349 ms
7,848 KB
testcase_05 AC 242 ms
7,844 KB
testcase_06 AC 237 ms
7,844 KB
testcase_07 AC 407 ms
7,844 KB
testcase_08 AC 15 ms
6,820 KB
testcase_09 AC 58 ms
6,816 KB
testcase_10 AC 400 ms
7,968 KB
testcase_11 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var t int
	Fscan(rd,&t)
	for ;t>0;t-- {
		var a,b,c,x uint64
		Fscan(rd,&a,&b,&c)
		x=b/2*2
		b%=2
		if a<c {
			x+=a*2
			c-=a
			a=0
		} else {
			x+=c*2
			a-=c
			c=0
		}
		if a<b {
			x+=a
		} else {
			x+=b
		}
		x+=c/2
		Println(x)
	}
}
0