結果
問題 | No.2110 012 Matching |
ユーザー | ID 21712 |
提出日時 | 2024-11-18 13:40:04 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 336 bytes |
コンパイル時間 | 10,420 ms |
コンパイル使用メモリ | 231,332 KB |
実行使用メモリ | 7,976 KB |
最終ジャッジ日時 | 2024-11-18 13:40:21 |
合計ジャッジ時間 | 14,224 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
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 } Println(x) } }