結果

問題 No.2110 012 Matching
ユーザー mobchanmobchan
提出日時 2023-05-03 23:05:48
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 17,079 ms
コンパイル使用メモリ 167,732 KB
実行使用メモリ 185,424 KB
最終ジャッジ日時 2024-05-01 17:00:22
合計ジャッジ時間 22,817 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
30,336 KB
testcase_01 AC 182 ms
44,544 KB
testcase_02 AC 355 ms
54,868 KB
testcase_03 AC 244 ms
54,144 KB
testcase_04 AC 427 ms
54,656 KB
testcase_05 AC 327 ms
54,912 KB
testcase_06 AC 309 ms
54,912 KB
testcase_07 AC 464 ms
54,656 KB
testcase_08 AC 62 ms
31,956 KB
testcase_09 AC 121 ms
38,912 KB
testcase_10 AC 507 ms
54,784 KB
testcase_11 AC 50 ms
185,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (87 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());
        

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

            var ans = 0UL;

            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) ans++;

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

            Console.WriteLine(ans);
        }
    }
}
0