結果

問題 No.2110 012 Matching
ユーザー mobchanmobchan
提出日時 2023-05-03 17:56:51
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,017 bytes
コンパイル時間 20,143 ms
コンパイル使用メモリ 171,600 KB
実行使用メモリ 188,616 KB
最終ジャッジ日時 2024-05-01 15:05:17
合計ジャッジ時間 21,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
30,208 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 54 ms
188,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (140 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var T = int.Parse(Console.ReadLine());
        var ans = 0L;

        for (int i = 0; i < T; i++)
        {
            var input = Console.ReadLine().Split().Select(long.Parse).ToArray();
            var A = input[0];
            var B = input[1];
            var C = input[2];

            var min = Math.Min(A, C);
            ans += 2 * min;
            A -= min;
            C -= min;
            var quo = B / 2;
            ans += 2 * quo;
            B -= 2 * quo;

            if (B == 1)
                if (A >= 1)
                {
                    B--;
                    A--;
                    ans++;
                }
                else if (C >= 1)
                {
                    B--;
                    C--;
                }

            if (C > 0) ans += C / 2;

            Console.WriteLine(ans.ToString());
            ans = 0;
        }
    }
}
0