結果

問題 No.2110 012 Matching
ユーザー shirokumashirokuma
提出日時 2022-10-30 02:44:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 76,728 KB
最終ジャッジ日時 2024-07-06 22:18:37
合計ジャッジ時間 3,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,544 KB
testcase_01 AC 143 ms
76,360 KB
testcase_02 AC 236 ms
76,412 KB
testcase_03 AC 179 ms
76,208 KB
testcase_04 AC 286 ms
76,196 KB
testcase_05 AC 226 ms
76,344 KB
testcase_06 AC 219 ms
76,164 KB
testcase_07 AC 306 ms
76,464 KB
testcase_08 AC 89 ms
76,728 KB
testcase_09 AC 111 ms
76,184 KB
testcase_10 AC 316 ms
76,412 KB
testcase_11 AC 34 ms
53,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki2110
T = int(input())
def sol(a, b, c):
    res = 0
    res += min(a,c)*2
    res += 2*(b//2)
    b %= 2
    m = min(a,c)
    a -= m
    c -= m
    if a > 0:
        res += b
    if c > 0:
        res += c//2
    return res
for _ in range(T):
    a, b, c = map(int, input().split())
    print(sol(a,b,c))
0