結果

問題 No.2110 012 Matching
ユーザー timitimi
提出日時 2022-10-28 21:37:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 76,876 KB
最終ジャッジ日時 2024-07-06 00:43:25
合計ジャッジ時間 3,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,360 KB
testcase_01 AC 134 ms
76,452 KB
testcase_02 AC 224 ms
76,876 KB
testcase_03 AC 171 ms
76,420 KB
testcase_04 AC 279 ms
76,468 KB
testcase_05 AC 213 ms
76,712 KB
testcase_06 AC 205 ms
76,424 KB
testcase_07 AC 293 ms
76,336 KB
testcase_08 AC 96 ms
76,276 KB
testcase_09 AC 109 ms
76,228 KB
testcase_10 AC 290 ms
76,712 KB
testcase_11 AC 32 ms
53,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
  a,b,c=map(int,input().split())
  ans=0
  ans+=2*(b//2)
  b=b%2
  ans+=2*min(a,c)
  d=min(a,c)
  a-=d
  c-=d
  if a>0:
    if b==1:
      ans+=1
  else:
    ans+=c//2
  print(ans)
    
0