結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー KudeKude
提出日時 2023-05-19 22:09:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 156,656 KB
最終ジャッジ日時 2024-06-01 01:06:02
合計ジャッジ時間 31,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,400 KB
testcase_01 AC 40 ms
52,708 KB
testcase_02 AC 233 ms
107,312 KB
testcase_03 AC 210 ms
107,400 KB
testcase_04 AC 184 ms
107,396 KB
testcase_05 AC 187 ms
107,044 KB
testcase_06 AC 189 ms
107,440 KB
testcase_07 AC 181 ms
107,324 KB
testcase_08 AC 209 ms
120,732 KB
testcase_09 AC 211 ms
123,088 KB
testcase_10 AC 219 ms
122,304 KB
testcase_11 AC 221 ms
117,072 KB
testcase_12 AC 212 ms
116,940 KB
testcase_13 AC 292 ms
121,324 KB
testcase_14 AC 231 ms
125,440 KB
testcase_15 AC 210 ms
111,776 KB
testcase_16 AC 247 ms
108,852 KB
testcase_17 AC 242 ms
117,480 KB
testcase_18 AC 254 ms
148,900 KB
testcase_19 AC 247 ms
128,296 KB
testcase_20 AC 262 ms
142,444 KB
testcase_21 AC 267 ms
138,996 KB
testcase_22 AC 260 ms
142,876 KB
testcase_23 AC 265 ms
142,244 KB
testcase_24 AC 250 ms
132,608 KB
testcase_25 AC 256 ms
137,436 KB
testcase_26 AC 265 ms
142,376 KB
testcase_27 AC 259 ms
141,468 KB
testcase_28 AC 264 ms
142,172 KB
testcase_29 AC 268 ms
142,044 KB
testcase_30 AC 248 ms
130,232 KB
testcase_31 AC 263 ms
142,340 KB
testcase_32 AC 261 ms
142,596 KB
testcase_33 AC 248 ms
151,984 KB
testcase_34 AC 248 ms
140,148 KB
testcase_35 AC 240 ms
128,304 KB
testcase_36 AC 259 ms
136,784 KB
testcase_37 AC 270 ms
141,040 KB
testcase_38 AC 235 ms
122,960 KB
testcase_39 AC 360 ms
123,116 KB
testcase_40 AC 222 ms
106,768 KB
testcase_41 AC 211 ms
107,252 KB
testcase_42 AC 234 ms
124,244 KB
testcase_43 AC 230 ms
124,436 KB
testcase_44 AC 230 ms
156,656 KB
testcase_45 AC 239 ms
142,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
ins = list(map(int, sys.stdin.buffer.read().split()))
ins.reverse()
for _ in range(ins.pop()):
    n, m = ins.pop(), ins.pop()
    d = {ins.pop() : 1 for _ in range(n)}
    for _ in range(m):
        x = ins.pop()
        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