結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,756 KB
testcase_01 AC 39 ms
53,188 KB
testcase_02 AC 259 ms
79,440 KB
testcase_03 AC 194 ms
80,712 KB
testcase_04 AC 177 ms
80,200 KB
testcase_05 AC 185 ms
79,760 KB
testcase_06 AC 179 ms
80,196 KB
testcase_07 AC 164 ms
78,580 KB
testcase_08 AC 190 ms
95,208 KB
testcase_09 AC 192 ms
96,316 KB
testcase_10 AC 214 ms
104,412 KB
testcase_11 AC 208 ms
92,164 KB
testcase_12 AC 195 ms
105,224 KB
testcase_13 AC 242 ms
102,180 KB
testcase_14 AC 220 ms
101,048 KB
testcase_15 AC 192 ms
96,456 KB
testcase_16 AC 229 ms
93,260 KB
testcase_17 AC 242 ms
97,476 KB
testcase_18 AC 242 ms
116,388 KB
testcase_19 AC 267 ms
135,148 KB
testcase_20 AC 234 ms
132,180 KB
testcase_21 AC 259 ms
132,952 KB
testcase_22 AC 230 ms
114,332 KB
testcase_23 AC 252 ms
132,444 KB
testcase_24 AC 251 ms
119,036 KB
testcase_25 AC 248 ms
118,304 KB
testcase_26 AC 228 ms
130,440 KB
testcase_27 AC 267 ms
115,052 KB
testcase_28 AC 272 ms
128,516 KB
testcase_29 AC 266 ms
125,036 KB
testcase_30 AC 303 ms
128,888 KB
testcase_31 AC 225 ms
132,564 KB
testcase_32 AC 242 ms
132,216 KB
testcase_33 AC 210 ms
107,516 KB
testcase_34 AC 239 ms
111,836 KB
testcase_35 AC 263 ms
132,416 KB
testcase_36 AC 254 ms
129,104 KB
testcase_37 AC 261 ms
122,116 KB
testcase_38 AC 222 ms
77,968 KB
testcase_39 AC 291 ms
78,640 KB
testcase_40 AC 183 ms
77,012 KB
testcase_41 AC 227 ms
77,528 KB
testcase_42 AC 254 ms
135,300 KB
testcase_43 AC 252 ms
135,572 KB
testcase_44 AC 176 ms
100,312 KB
testcase_45 AC 171 ms
100,040 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