結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-19 22:29:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 132,420 KB
最終ジャッジ日時 2024-12-21 03:14:12
合計ジャッジ時間 33,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 44 ms
52,608 KB
testcase_02 AC 311 ms
79,012 KB
testcase_03 AC 183 ms
78,924 KB
testcase_04 AC 166 ms
78,592 KB
testcase_05 AC 170 ms
78,592 KB
testcase_06 AC 181 ms
78,848 KB
testcase_07 AC 161 ms
78,080 KB
testcase_08 AC 198 ms
96,256 KB
testcase_09 AC 210 ms
96,896 KB
testcase_10 AC 173 ms
100,668 KB
testcase_11 AC 210 ms
100,304 KB
testcase_12 AC 202 ms
105,488 KB
testcase_13 AC 250 ms
101,112 KB
testcase_14 AC 209 ms
101,632 KB
testcase_15 AC 178 ms
100,096 KB
testcase_16 AC 212 ms
91,776 KB
testcase_17 AC 243 ms
96,768 KB
testcase_18 AC 224 ms
116,160 KB
testcase_19 AC 248 ms
127,236 KB
testcase_20 AC 233 ms
132,132 KB
testcase_21 AC 247 ms
132,184 KB
testcase_22 AC 214 ms
114,708 KB
testcase_23 AC 245 ms
132,264 KB
testcase_24 AC 245 ms
116,048 KB
testcase_25 AC 244 ms
116,672 KB
testcase_26 AC 222 ms
130,572 KB
testcase_27 AC 242 ms
114,532 KB
testcase_28 AC 244 ms
127,084 KB
testcase_29 AC 227 ms
125,084 KB
testcase_30 AC 229 ms
122,864 KB
testcase_31 AC 221 ms
132,076 KB
testcase_32 AC 225 ms
132,420 KB
testcase_33 AC 213 ms
107,724 KB
testcase_34 AC 239 ms
109,508 KB
testcase_35 AC 259 ms
125,972 KB
testcase_36 AC 246 ms
127,772 KB
testcase_37 AC 239 ms
120,892 KB
testcase_38 AC 559 ms
77,440 KB
testcase_39 AC 640 ms
77,952 KB
testcase_40 AC 176 ms
76,800 KB
testcase_41 AC 213 ms
76,672 KB
testcase_42 AC 221 ms
126,392 KB
testcase_43 AC 217 ms
126,916 KB
testcase_44 AC 210 ms
130,692 KB
testcase_45 AC 187 ms
130,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n,m = map(int,input().split())

    A = list(map(int,input().split()))
    B = list(map(int,input().split()))

    sA = set(A)
    sB = set(B)
    sames = []
    for b in B:
        if b in sA:
            sames.append(b)

    
    if n == 0 or m == 0:
        print("Yes")
        for a in A:
            print(f"Red {a}")

        for b in B:
            print(f"Blue {b}")

        
        return

    
    if sames == []:
        print("No")
        return

    
    print("Yes")

    for a in A:
        if a not in sB:
            print(f"Red {a}")
        
    l = sames.pop()

    print(f"Red {l}")
    print(f"Blue {l}")

    for b in B:
        if b not in sA:
            print(f"Blue {b}")
    
    for i,l in enumerate(sames):

        if i%2:
            print(f"Red {l}")
            print(f"Blue {l}")
        else:
            print(f"Blue {l}")
            print(f"Red {l}")


    return 


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