結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー 👑 KazunKazun
提出日時 2023-02-17 04:27:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 1,014 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 135,360 KB
最終ジャッジ日時 2024-05-10 07:54:06
合計ジャッジ時間 29,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 261 ms
78,996 KB
testcase_03 AC 190 ms
80,968 KB
testcase_04 AC 175 ms
80,384 KB
testcase_05 AC 169 ms
79,624 KB
testcase_06 AC 176 ms
79,872 KB
testcase_07 AC 160 ms
78,760 KB
testcase_08 AC 186 ms
95,616 KB
testcase_09 AC 178 ms
96,128 KB
testcase_10 AC 164 ms
103,864 KB
testcase_11 AC 203 ms
92,668 KB
testcase_12 AC 173 ms
104,844 KB
testcase_13 AC 229 ms
101,940 KB
testcase_14 AC 181 ms
100,736 KB
testcase_15 AC 159 ms
96,732 KB
testcase_16 AC 195 ms
93,344 KB
testcase_17 AC 216 ms
96,888 KB
testcase_18 AC 204 ms
116,272 KB
testcase_19 AC 246 ms
135,260 KB
testcase_20 AC 212 ms
132,184 KB
testcase_21 AC 236 ms
133,148 KB
testcase_22 AC 196 ms
114,512 KB
testcase_23 AC 245 ms
132,832 KB
testcase_24 AC 237 ms
119,020 KB
testcase_25 AC 228 ms
118,324 KB
testcase_26 AC 208 ms
130,700 KB
testcase_27 AC 231 ms
115,452 KB
testcase_28 AC 231 ms
128,428 KB
testcase_29 AC 223 ms
125,288 KB
testcase_30 AC 244 ms
129,092 KB
testcase_31 AC 206 ms
132,120 KB
testcase_32 AC 213 ms
132,148 KB
testcase_33 AC 204 ms
107,288 KB
testcase_34 AC 228 ms
111,548 KB
testcase_35 AC 251 ms
132,508 KB
testcase_36 AC 233 ms
129,328 KB
testcase_37 AC 234 ms
121,924 KB
testcase_38 AC 205 ms
77,688 KB
testcase_39 AC 278 ms
78,628 KB
testcase_40 AC 171 ms
77,320 KB
testcase_41 AC 220 ms
77,824 KB
testcase_42 AC 238 ms
135,292 KB
testcase_43 AC 230 ms
135,360 KB
testcase_44 AC 160 ms
100,148 KB
testcase_45 AC 163 ms
99,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Red(a):
    print("Red",a)

def Blue(b):
    print("Blue",b)

def solve():
    N,M=map(int,input().split())
    A=list(map(int,input().split()))
    B=list(map(int,input().split()))

    if N==0:
        print("Yes")
        for b in B:
            Blue(b)
        return
    elif M==0:
        print("Yes")
        for a in A:
            Red(a)
        return

    A_set=set(A)
    B_set=set(B)
    C_set=A_set & B_set

    if not C_set:
        print("No")
        return

    A_set-=C_set
    B_set-=C_set

    print("Yes")
    for a in A_set:
        Red(a)

    c=C_set.pop()
    Red(c); Blue(c)

    for b in  B_set:
        Blue(b)

    mode=0
    for c in C_set:
        if mode==0:
            Blue(c); Red(c)
        else:
            Red(c); Blue(c)
        mode^=1

    return

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

T=int(input())
for t in range(T):
    solve()
0