結果

問題 No.2110 012 Matching
ユーザー dangodango
提出日時 2023-06-25 21:42:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-02 15:17:33
合計ジャッジ時間 5,545 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 162 ms
76,416 KB
testcase_02 AC 261 ms
76,416 KB
testcase_03 AC 208 ms
76,416 KB
testcase_04 AC 319 ms
76,672 KB
testcase_05 AC 252 ms
76,416 KB
testcase_06 AC 246 ms
76,288 KB
testcase_07 AC 350 ms
76,288 KB
testcase_08 AC 108 ms
76,160 KB
testcase_09 AC 135 ms
76,160 KB
testcase_10 AC 349 ms
76,288 KB
testcase_11 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    A, B, C = map(int, input().split())
    res = 0
    s = B // 2
    res += s * 2
    B -= s * 2
    t = min(A, C)
    res += t * 2
    A -= t
    C -= t
    u = C // 2
    res += u
    C -= u * 2
    v = min(A, B)
    res += v
    A -= v
    B -= v
    print(res)
0