結果

問題 No.2110 012 Matching
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-10-28 22:57:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,552 KB
最終ジャッジ日時 2024-07-06 02:11:19
合計ジャッジ時間 4,200 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 141 ms
76,284 KB
testcase_02 AC 231 ms
76,236 KB
testcase_03 AC 179 ms
76,124 KB
testcase_04 AC 278 ms
76,416 KB
testcase_05 AC 225 ms
76,336 KB
testcase_06 AC 213 ms
76,208 KB
testcase_07 AC 304 ms
76,416 KB
testcase_08 AC 93 ms
76,552 KB
testcase_09 AC 115 ms
76,160 KB
testcase_10 AC 306 ms
76,288 KB
testcase_11 AC 35 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for i in range(t):
    c,a,b = map(int,input().split())
    res = 0
    res = a//2 * 2
    a -= a//2 * 2
    min_bc = min(b,c)
    res += min_bc * 2
    b -= min_bc
    c -= min_bc
    if b:res += b//2
    if c:res += min(a,c)
    print(res)
#     print(a,b,c)
0