結果

問題 No.2110 012 Matching
ユーザー ShirotsumeShirotsume
提出日時 2022-10-28 21:52:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 76,328 KB
最終ジャッジ日時 2024-07-06 00:59:11
合計ジャッジ時間 2,644 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,000 KB
testcase_01 AC 84 ms
75,976 KB
testcase_02 AC 105 ms
76,192 KB
testcase_03 AC 89 ms
76,188 KB
testcase_04 AC 116 ms
75,928 KB
testcase_05 AC 101 ms
76,172 KB
testcase_06 AC 98 ms
76,264 KB
testcase_07 AC 121 ms
76,328 KB
testcase_08 AC 62 ms
74,292 KB
testcase_09 AC 71 ms
76,120 KB
testcase_10 AC 120 ms
76,160 KB
testcase_11 AC 33 ms
51,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

for _ in range(ii()):
    a, b, c = mi()
    ans = 0
    two = min(a, c)
    a -= two
    c -= two
    ans += 2 * two
    two = b // 2
    b -= 2 * two
    ans += 2 * two
    one = c // 2
    c -= 2 * one
    ans += one
    ans += min(a, b)
    print(ans)
0