結果

問題 No.2110 012 Matching
ユーザー miya145592miya145592
提出日時 2023-05-04 06:56:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 86,864 KB
最終ジャッジ日時 2024-11-22 02:29:39
合計ジャッジ時間 4,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 133 ms
78,976 KB
testcase_02 AC 185 ms
83,200 KB
testcase_03 AC 158 ms
81,024 KB
testcase_04 AC 210 ms
85,676 KB
testcase_05 AC 179 ms
83,584 KB
testcase_06 AC 178 ms
82,816 KB
testcase_07 AC 230 ms
86,864 KB
testcase_08 AC 110 ms
76,800 KB
testcase_09 AC 121 ms
78,208 KB
testcase_10 AC 229 ms
86,784 KB
testcase_11 AC 41 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
ABC = [list(map(int, input().split())) for _ in range(T)]
for a, b, c in ABC:
    ans = 0
    cnt = min(a, c)
    ans += cnt*2
    a-=cnt
    c-=cnt

    cnt = b//2
    ans += cnt*2
    b%=2

    cnt = c//2
    ans += cnt
    c%=2

    if a>0 and b>0:
        ans += 1
    print(ans)

0