結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー 倉
提出日時 2023-05-19 22:02:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 167,800 KB
最終ジャッジ日時 2024-12-21 02:40:48
合計ジャッジ時間 34,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
55,296 KB
testcase_01 AC 58 ms
55,296 KB
testcase_02 AC 284 ms
79,232 KB
testcase_03 AC 210 ms
82,176 KB
testcase_04 AC 205 ms
80,896 KB
testcase_05 AC 228 ms
80,896 KB
testcase_06 AC 196 ms
81,792 KB
testcase_07 AC 207 ms
81,024 KB
testcase_08 AC 220 ms
103,936 KB
testcase_09 AC 234 ms
99,072 KB
testcase_10 AC 219 ms
108,800 KB
testcase_11 AC 253 ms
101,376 KB
testcase_12 AC 223 ms
110,592 KB
testcase_13 AC 278 ms
105,472 KB
testcase_14 AC 251 ms
114,816 KB
testcase_15 AC 228 ms
102,144 KB
testcase_16 AC 256 ms
98,432 KB
testcase_17 AC 257 ms
105,856 KB
testcase_18 AC 276 ms
128,060 KB
testcase_19 AC 275 ms
128,896 KB
testcase_20 AC 312 ms
167,800 KB
testcase_21 AC 321 ms
161,408 KB
testcase_22 AC 260 ms
141,716 KB
testcase_23 AC 336 ms
163,960 KB
testcase_24 AC 287 ms
135,676 KB
testcase_25 AC 288 ms
141,436 KB
testcase_26 AC 287 ms
163,868 KB
testcase_27 AC 284 ms
139,728 KB
testcase_28 AC 295 ms
154,240 KB
testcase_29 AC 312 ms
153,088 KB
testcase_30 AC 274 ms
121,472 KB
testcase_31 AC 286 ms
167,680 KB
testcase_32 AC 305 ms
167,552 KB
testcase_33 AC 273 ms
156,524 KB
testcase_34 AC 290 ms
153,348 KB
testcase_35 AC 280 ms
125,992 KB
testcase_36 AC 315 ms
153,856 KB
testcase_37 AC 284 ms
132,580 KB
testcase_38 AC 308 ms
78,848 KB
testcase_39 AC 350 ms
79,616 KB
testcase_40 AC 218 ms
78,208 KB
testcase_41 AC 264 ms
78,464 KB
testcase_42 AC 276 ms
122,436 KB
testcase_43 AC 277 ms
122,428 KB
testcase_44 AC 229 ms
139,452 KB
testcase_45 AC 238 ms
139,948 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