結果

問題 No.2110 012 Matching
ユーザー KudeKude
提出日時 2022-10-28 21:34:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-06 00:37:51
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 147 ms
76,160 KB
testcase_02 AC 235 ms
76,160 KB
testcase_03 AC 187 ms
76,288 KB
testcase_04 AC 285 ms
76,160 KB
testcase_05 AC 224 ms
76,288 KB
testcase_06 AC 219 ms
76,416 KB
testcase_07 AC 307 ms
75,904 KB
testcase_08 AC 94 ms
76,032 KB
testcase_09 AC 117 ms
76,288 KB
testcase_10 AC 308 ms
76,288 KB
testcase_11 AC 35 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a, b, c = map(int, input().split())
    ans = 0
    t = b // 2
    ans += 2 * t
    b -= 2 * t
    t = min(a, c)
    ans += 2 * t
    c -= t
    a -= t
    t = c // 2
    ans += t
    c -= 2 * t
    t = min(a, b)
    ans += t
    a -= t
    b -= t
    print(ans)
0