結果

問題 No.2110 012 Matching
ユーザー tamatotamato
提出日時 2022-10-28 21:26:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-06 00:25:10
合計ジャッジ時間 2,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 80 ms
76,160 KB
testcase_02 AC 108 ms
76,016 KB
testcase_03 AC 95 ms
76,416 KB
testcase_04 AC 127 ms
76,160 KB
testcase_05 AC 105 ms
75,776 KB
testcase_06 AC 105 ms
76,120 KB
testcase_07 AC 128 ms
75,776 KB
testcase_08 AC 64 ms
70,784 KB
testcase_09 AC 75 ms
76,416 KB
testcase_10 AC 129 ms
75,984 KB
testcase_11 AC 35 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


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


if __name__ == '__main__':
    main()
0