結果

問題 No.2110 012 Matching
ユーザー とりゐとりゐ
提出日時 2022-10-28 22:11:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,096 KB
最終ジャッジ日時 2024-07-06 01:21:47
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,532 KB
testcase_01 AC 111 ms
77,096 KB
testcase_02 AC 137 ms
76,980 KB
testcase_03 AC 121 ms
76,852 KB
testcase_04 AC 152 ms
76,548 KB
testcase_05 AC 133 ms
76,624 KB
testcase_06 AC 129 ms
76,444 KB
testcase_07 AC 158 ms
76,544 KB
testcase_08 AC 86 ms
76,488 KB
testcase_09 AC 99 ms
76,560 KB
testcase_10 AC 160 ms
76,628 KB
testcase_11 AC 38 ms
53,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

def solve():
  a,b,c=map(int,input().split())
  ans=0
  x=min(a,c)
  ans+=2*x
  c-=x
  a-=x
  
  ans+=2*(b//2)
  b%=2
  
  ans+=(c//2)
  
  if b>0 and a>0:
    ans+=1
  
  print(ans)

for _ in range(int(input())):
  solve()
0