結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー kakel-sankakel-san
提出日時 2023-08-02 23:17:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 2,347 bytes
コンパイル時間 911 ms
コンパイル使用メモリ 108,160 KB
実行使用メモリ 53,992 KB
最終ジャッジ日時 2024-10-12 21:37:30
合計ジャッジ時間 35,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
20,096 KB
testcase_01 AC 33 ms
20,224 KB
testcase_02 AC 175 ms
36,608 KB
testcase_03 AC 189 ms
43,136 KB
testcase_04 AC 191 ms
43,404 KB
testcase_05 AC 181 ms
42,496 KB
testcase_06 AC 194 ms
42,956 KB
testcase_07 AC 176 ms
42,496 KB
testcase_08 AC 186 ms
44,672 KB
testcase_09 AC 187 ms
45,680 KB
testcase_10 AC 175 ms
44,376 KB
testcase_11 AC 211 ms
48,896 KB
testcase_12 AC 176 ms
44,032 KB
testcase_13 AC 233 ms
49,368 KB
testcase_14 AC 188 ms
46,628 KB
testcase_15 AC 169 ms
44,416 KB
testcase_16 AC 219 ms
49,068 KB
testcase_17 AC 189 ms
47,292 KB
testcase_18 AC 231 ms
51,928 KB
testcase_19 AC 244 ms
52,492 KB
testcase_20 AC 235 ms
51,980 KB
testcase_21 AC 240 ms
52,120 KB
testcase_22 AC 230 ms
50,984 KB
testcase_23 AC 242 ms
52,260 KB
testcase_24 AC 243 ms
53,388 KB
testcase_25 AC 238 ms
51,844 KB
testcase_26 AC 239 ms
53,360 KB
testcase_27 AC 350 ms
51,260 KB
testcase_28 AC 294 ms
52,808 KB
testcase_29 AC 273 ms
52,900 KB
testcase_30 AC 272 ms
53,992 KB
testcase_31 AC 310 ms
51,720 KB
testcase_32 AC 281 ms
52,140 KB
testcase_33 AC 279 ms
53,484 KB
testcase_34 AC 232 ms
53,536 KB
testcase_35 AC 251 ms
52,480 KB
testcase_36 AC 246 ms
53,312 KB
testcase_37 AC 237 ms
50,412 KB
testcase_38 AC 277 ms
39,680 KB
testcase_39 AC 372 ms
45,312 KB
testcase_40 AC 210 ms
49,288 KB
testcase_41 AC 222 ms
47,144 KB
testcase_42 AC 257 ms
51,808 KB
testcase_43 AC 253 ms
51,652 KB
testcase_44 AC 233 ms
52,752 KB
testcase_45 AC 232 ms
52,892 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new List<string>();
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            var (n, m) = (c[0], c[1]);
            var a = new int[n];
            var b = new int[n];
            if (n > 0) a = NList;
            else ReadLine();
            if (m > 0) b = NList;
            else ReadLine();
            var bset = new HashSet<int>(b);
            var eq = new HashSet<int>();
            foreach (var ai in a) if (bset.Contains(ai)) eq.Add(ai);
            if (n == 0)
            {
                ans.Add("Yes");
                foreach (var bi in b) ans.Add("Blue " + bi);
            }
            else if (m == 0)
            {
                ans.Add("Yes");
                foreach (var ai in a) ans.Add("Red " + ai);
            }
            else if (eq.Count == 0)
            {
                ans.Add("No");
            }
            else
            {
                ans.Add("Yes");
                foreach (var ai in a) if (!eq.Contains(ai)) ans.Add("Red " + ai);
                var tmp = 0;
                foreach (var ai in eq)
                {
                    if (tmp % 2 == 0)
                    {
                        ans.Add("Red " + ai);
                        ans.Add("Blue " + ai);
                    }
                    else
                    {
                        ans.Add("Blue " + ai);
                        ans.Add("Red " + ai);
                    }
                    if (tmp == 0)
                    {
                        foreach (var bi in b) if (!eq.Contains(bi)) ans.Add("Blue " + bi);
                    }
                    ++tmp;
                }
            }
        }
        WriteLine(string.Join("\n", ans));
    }
}
0