結果

問題 No.2110 012 Matching
ユーザー SI1000-githubSI1000-github
提出日時 2022-10-29 11:33:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 76,388 KB
最終ジャッジ日時 2024-07-06 11:21:20
合計ジャッジ時間 3,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,652 KB
testcase_01 AC 145 ms
76,112 KB
testcase_02 AC 235 ms
76,280 KB
testcase_03 AC 177 ms
76,148 KB
testcase_04 AC 302 ms
76,348 KB
testcase_05 AC 219 ms
76,008 KB
testcase_06 AC 218 ms
76,200 KB
testcase_07 AC 319 ms
76,228 KB
testcase_08 AC 88 ms
76,388 KB
testcase_09 AC 113 ms
75,944 KB
testcase_10 AC 313 ms
76,140 KB
testcase_11 AC 36 ms
53,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
# -*- coding: utf-8 -*-

# import
from sys import stdin, setrecursionlimit
setrecursionlimit(10**8)

def int_map():
    return map(int,input().split())

def int_list():
    return list(map(int,input().split()))

def int_mtx(N):
    x = [list(map(int, stdin.readline().split())) for _ in range(N)]
    return x

def str_mtx(N):
    x = [list(stdin.readline()[:-1]) for _ in range(N)]
    return x

def print_space(l):
    return print(" ".join([str(x) for x in l]))



"""    main code    """



T = int(input())

for _ in range(T):
    a,b,c = int_map()
    ans = 0
    ans += 2*(b//2)
    b = b%2

    m = min(a,c)
    ans += 2*m

    a -= m
    c -= m

    if a == 0:
        ans += c//2
        print(ans)
    elif a > 0:
        ans += min(a,b)
        print(ans)

    
0