結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー 倉
提出日時 2023-05-19 22:02:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 663 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 168,104 KB
最終ジャッジ日時 2024-06-01 00:56:06
合計ジャッジ時間 31,328 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,168 KB
testcase_01 AC 45 ms
55,728 KB
testcase_02 AC 244 ms
79,116 KB
testcase_03 AC 188 ms
81,616 KB
testcase_04 AC 180 ms
80,956 KB
testcase_05 AC 176 ms
80,936 KB
testcase_06 AC 179 ms
81,704 KB
testcase_07 AC 170 ms
80,896 KB
testcase_08 AC 196 ms
103,552 KB
testcase_09 AC 194 ms
98,432 KB
testcase_10 AC 194 ms
109,412 KB
testcase_11 AC 214 ms
101,384 KB
testcase_12 AC 196 ms
110,548 KB
testcase_13 AC 250 ms
105,216 KB
testcase_14 AC 218 ms
115,312 KB
testcase_15 AC 191 ms
102,272 KB
testcase_16 AC 230 ms
98,432 KB
testcase_17 AC 226 ms
105,088 KB
testcase_18 AC 236 ms
128,076 KB
testcase_19 AC 267 ms
128,684 KB
testcase_20 AC 267 ms
167,828 KB
testcase_21 AC 273 ms
161,368 KB
testcase_22 AC 256 ms
141,648 KB
testcase_23 AC 275 ms
164,364 KB
testcase_24 AC 259 ms
135,684 KB
testcase_25 AC 257 ms
141,556 KB
testcase_26 AC 256 ms
163,536 KB
testcase_27 AC 253 ms
139,700 KB
testcase_28 AC 267 ms
154,112 KB
testcase_29 AC 263 ms
152,988 KB
testcase_30 AC 252 ms
121,416 KB
testcase_31 AC 271 ms
167,168 KB
testcase_32 AC 266 ms
168,104 KB
testcase_33 AC 254 ms
156,044 KB
testcase_34 AC 277 ms
152,828 KB
testcase_35 AC 259 ms
125,944 KB
testcase_36 AC 273 ms
153,344 KB
testcase_37 AC 264 ms
132,544 KB
testcase_38 AC 260 ms
79,488 KB
testcase_39 AC 325 ms
79,892 KB
testcase_40 AC 204 ms
78,044 KB
testcase_41 AC 224 ms
78,800 KB
testcase_42 AC 246 ms
122,308 KB
testcase_43 AC 235 ms
122,300 KB
testcase_44 AC 218 ms
139,440 KB
testcase_45 AC 216 ms
139,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from functools import partial
# import pypyjit
# pypyjit.set_param('max_unroll_recursion = -1')

sys.setrecursionlimit(500005)
stdin = sys.stdin

ns = lambda: stdin.readline().strip()
ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
nz = lambda: list(map(lambda x: int(x)-1, stdin.readline().split())) # 遅い
printa = partial(print, sep="\n") # printa(*A) で各要素を改行して出力
mod = 1000000007 # 998244353
inf = 10 ** 18

T = ni()

def solve():
    N, M = na()
    A = set(na())
    B = set(na())
    C = A & B
    Red = A - C
    Blue = B - C
    if N and M and not C:
        print("No")
        return
    print("Yes")
    if Red:
        for r in Red:
            print("Red", r)
    if C:
        x = C.pop()
        print("Red", x)
        print("Blue", x)
    if Blue:
        for b in Blue:
            print("Blue", b)
    f = 0
    for c in C:
        if not f:
            print("Blue", c)
            print("Red", c)
        else:
            print("Red", c)
            print("Blue", c)
        f = f ^ 1


for i in range(T):
    solve()
0