結果

問題 No.2110 012 Matching
ユーザー tentententen
提出日時 2022-10-31 12:40:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 1,494 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 77,548 KB
実行使用メモリ 62,528 KB
最終ジャッジ日時 2024-07-08 02:07:52
合計ジャッジ時間 6,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
49,816 KB
testcase_01 AC 227 ms
57,120 KB
testcase_02 AC 343 ms
62,520 KB
testcase_03 AC 280 ms
60,728 KB
testcase_04 AC 376 ms
62,448 KB
testcase_05 AC 357 ms
62,528 KB
testcase_06 AC 313 ms
60,608 KB
testcase_07 AC 374 ms
61,864 KB
testcase_08 AC 120 ms
52,680 KB
testcase_09 AC 183 ms
55,608 KB
testcase_10 AC 388 ms
62,388 KB
testcase_11 AC 50 ms
50,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            long a = sc.nextLong();
            long b = sc.nextLong();
            long c = sc.nextLong();
            long ans = 0;
            if (a <= c) {
                ans += a * 2;
                c -= a;
                ans += c / 2;
                ans += b / 2 * 2;
            } else {
                ans += c * 2;
                ans += b / 2 * 2;
                ans += b % 2;
            }
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0