結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー KudeKude
提出日時 2023-05-19 21:44:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 153,260 KB
最終ジャッジ日時 2024-06-01 00:26:49
合計ジャッジ時間 31,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,148 KB
testcase_01 AC 39 ms
52,860 KB
testcase_02 AC 276 ms
78,044 KB
testcase_03 AC 191 ms
82,056 KB
testcase_04 AC 171 ms
81,416 KB
testcase_05 AC 167 ms
81,644 KB
testcase_06 AC 176 ms
82,584 KB
testcase_07 AC 152 ms
80,048 KB
testcase_08 AC 197 ms
99,388 KB
testcase_09 AC 196 ms
99,108 KB
testcase_10 AC 207 ms
110,364 KB
testcase_11 AC 210 ms
104,992 KB
testcase_12 AC 194 ms
114,072 KB
testcase_13 AC 270 ms
114,948 KB
testcase_14 AC 209 ms
106,480 KB
testcase_15 AC 186 ms
106,680 KB
testcase_16 AC 237 ms
100,588 KB
testcase_17 AC 224 ms
100,864 KB
testcase_18 AC 247 ms
131,604 KB
testcase_19 AC 241 ms
120,320 KB
testcase_20 AC 260 ms
153,188 KB
testcase_21 AC 260 ms
148,016 KB
testcase_22 AC 257 ms
127,860 KB
testcase_23 AC 262 ms
152,480 KB
testcase_24 AC 245 ms
116,456 KB
testcase_25 AC 257 ms
123,580 KB
testcase_26 AC 255 ms
152,432 KB
testcase_27 AC 251 ms
126,484 KB
testcase_28 AC 260 ms
146,544 KB
testcase_29 AC 261 ms
145,384 KB
testcase_30 AC 248 ms
117,120 KB
testcase_31 AC 257 ms
153,260 KB
testcase_32 AC 256 ms
153,248 KB
testcase_33 AC 242 ms
120,484 KB
testcase_34 AC 245 ms
117,832 KB
testcase_35 AC 239 ms
116,940 KB
testcase_36 AC 252 ms
141,860 KB
testcase_37 AC 262 ms
131,664 KB
testcase_38 AC 545 ms
77,612 KB
testcase_39 AC 636 ms
78,852 KB
testcase_40 AC 230 ms
78,160 KB
testcase_41 AC 226 ms
77,656 KB
testcase_42 AC 228 ms
114,152 KB
testcase_43 AC 229 ms
114,172 KB
testcase_44 AC 222 ms
137,032 KB
testcase_45 AC 235 ms
140,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n, m = map(int, input().split())
    d = {x : 1 for x in map(int, input().split())}
    for x in map(int, input().split()):
        d[x] = d.get(x, 0) | 2
    v = [[], [], []]
    for x, t in d.items():
        v[t - 1].append(x)
    ans = []
    if not v[2]:
        if v[0] and v[1]:
            print('No')
            continue
        elif v[0]:
            ans = [(0, x) for x in v[0]]
        else:
            ans = [(1, x) for x in v[1]]
    else:
        for x in v[2]:
            if not ans:
                ans.extend((0, x) for x in v[0])
                ans.append((0, x))
                ans.append((1, x))
                ans.extend((1, x) for x in v[1])
            else:
                t = ans[-1][0]
                ans.append((t, x))
                ans.append((t ^ 1, x))
    print('Yes')
    for t, x in ans:
        print(('Red' if t == 0 else 'Blue'), x)
0