結果

問題 No.2110 012 Matching
ユーザー helloprahellopra
提出日時 2022-10-28 23:16:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 76,692 KB
最終ジャッジ日時 2024-07-06 02:30:20
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,256 KB
testcase_01 AC 134 ms
76,352 KB
testcase_02 AC 219 ms
76,316 KB
testcase_03 AC 172 ms
76,144 KB
testcase_04 AC 273 ms
76,624 KB
testcase_05 AC 206 ms
76,300 KB
testcase_06 AC 203 ms
76,616 KB
testcase_07 AC 290 ms
76,560 KB
testcase_08 AC 90 ms
76,692 KB
testcase_09 AC 123 ms
76,348 KB
testcase_10 AC 315 ms
76,532 KB
testcase_11 AC 34 ms
52,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
for i in range(Q):
    A,B,C = map(int,input().split())
    ans = 0

    ac = min(A,C)
    ans += ac*2
    A-=ac;C-=ac
    

    ans += (B//2)*2
    B -= (B//2)*2
    
    ab = min(A,B)
    ans += ab
    A-=ab;B-=ab
    
    ans += (C//2)
    C -= (C//2)*2

    print(ans)
0