結果

問題 No.2110 012 Matching
ユーザー roarisroaris
提出日時 2022-10-28 21:43:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-07-06 00:49:28
合計ジャッジ時間 2,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 93 ms
76,416 KB
testcase_02 AC 117 ms
76,800 KB
testcase_03 AC 102 ms
76,160 KB
testcase_04 AC 130 ms
76,800 KB
testcase_05 AC 116 ms
76,416 KB
testcase_06 AC 113 ms
76,800 KB
testcase_07 AC 138 ms
76,928 KB
testcase_08 AC 81 ms
76,288 KB
testcase_09 AC 88 ms
76,544 KB
testcase_10 AC 139 ms
76,800 KB
testcase_11 AC 40 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

for _ in range(int(input())):
    A, B, C = map(int, input().split())
    cnt02 = min(A, C)
    ans = 2*cnt02
    A -= cnt02
    C -= cnt02
    ans += C//2
    ans += B//2*2
    
    if A>0 and B%2==1:
        ans += 1

    print(ans)
0