結果

問題 No.2110 012 Matching
ユーザー mobchanmobchan
提出日時 2023-05-03 23:05:48
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 11,290 ms
コンパイル使用メモリ 170,456 KB
実行使用メモリ 187,468 KB
最終ジャッジ日時 2024-11-21 22:18:03
合計ジャッジ時間 17,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,592 KB
testcase_01 AC 198 ms
44,800 KB
testcase_02 AC 383 ms
54,784 KB
testcase_03 AC 283 ms
54,272 KB
testcase_04 AC 506 ms
54,912 KB
testcase_05 AC 367 ms
55,156 KB
testcase_06 AC 345 ms
54,784 KB
testcase_07 AC 522 ms
54,912 KB
testcase_08 AC 72 ms
31,872 KB
testcase_09 AC 141 ms
39,040 KB
testcase_10 AC 530 ms
55,040 KB
testcase_11 AC 57 ms
187,468 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 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