結果

問題 No.2110 012 Matching
ユーザー flygonflygon
提出日時 2022-10-28 21:35:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,760 KB
最終ジャッジ日時 2024-07-06 00:39:01
合計ジャッジ時間 2,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 91 ms
75,904 KB
testcase_02 AC 107 ms
76,288 KB
testcase_03 AC 94 ms
75,904 KB
testcase_04 AC 116 ms
76,288 KB
testcase_05 AC 104 ms
76,416 KB
testcase_06 AC 105 ms
75,968 KB
testcase_07 AC 124 ms
76,760 KB
testcase_08 AC 65 ms
71,040 KB
testcase_09 AC 78 ms
76,160 KB
testcase_10 AC 125 ms
76,112 KB
testcase_11 AC 34 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
t = int(input())
for i in range(t):
  a,b,c = map(int,input().split())
  ans = 0
  x = min(a,c)
  ans += x*2 + 2*(b//2)
  b %= 2
  a -= x
  c -= x
  y = min(a,b)
  ans += y + c//2
  print(ans)
0