結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-19 22:39:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 965 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 141,064 KB
最終ジャッジ日時 2024-06-01 01:31:08
合計ジャッジ時間 29,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,204 KB
testcase_01 AC 40 ms
52,464 KB
testcase_02 AC 283 ms
79,384 KB
testcase_03 AC 166 ms
78,292 KB
testcase_04 AC 146 ms
77,608 KB
testcase_05 AC 151 ms
77,948 KB
testcase_06 AC 152 ms
78,192 KB
testcase_07 AC 140 ms
77,720 KB
testcase_08 AC 170 ms
96,224 KB
testcase_09 AC 181 ms
96,880 KB
testcase_10 AC 139 ms
98,548 KB
testcase_11 AC 172 ms
102,720 KB
testcase_12 AC 157 ms
105,024 KB
testcase_13 AC 194 ms
100,188 KB
testcase_14 AC 168 ms
102,096 KB
testcase_15 AC 150 ms
100,348 KB
testcase_16 AC 177 ms
91,288 KB
testcase_17 AC 197 ms
97,924 KB
testcase_18 AC 180 ms
116,400 KB
testcase_19 AC 224 ms
140,124 KB
testcase_20 AC 188 ms
132,268 KB
testcase_21 AC 211 ms
132,800 KB
testcase_22 AC 194 ms
114,456 KB
testcase_23 AC 214 ms
132,792 KB
testcase_24 AC 214 ms
120,768 KB
testcase_25 AC 211 ms
118,844 KB
testcase_26 AC 185 ms
130,392 KB
testcase_27 AC 200 ms
115,180 KB
testcase_28 AC 221 ms
128,628 KB
testcase_29 AC 199 ms
125,264 KB
testcase_30 AC 229 ms
132,648 KB
testcase_31 AC 202 ms
132,308 KB
testcase_32 AC 186 ms
132,276 KB
testcase_33 AC 180 ms
107,304 KB
testcase_34 AC 207 ms
112,028 KB
testcase_35 AC 232 ms
136,140 KB
testcase_36 AC 221 ms
129,864 KB
testcase_37 AC 207 ms
121,860 KB
testcase_38 AC 505 ms
77,204 KB
testcase_39 AC 569 ms
77,800 KB
testcase_40 AC 162 ms
76,892 KB
testcase_41 AC 195 ms
76,884 KB
testcase_42 AC 211 ms
140,940 KB
testcase_43 AC 208 ms
141,064 KB
testcase_44 AC 173 ms
130,556 KB
testcase_45 AC 173 ms
130,580 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) & 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 sA:
            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