結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー navel_tosnavel_tos
提出日時 2023-05-20 00:09:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 1,699 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 121,136 KB
最終ジャッジ日時 2024-12-21 04:12:57
合計ジャッジ時間 31,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 46 ms
52,864 KB
testcase_02 AC 295 ms
78,416 KB
testcase_03 AC 185 ms
78,140 KB
testcase_04 AC 183 ms
78,572 KB
testcase_05 AC 203 ms
77,952 KB
testcase_06 AC 194 ms
78,168 KB
testcase_07 AC 179 ms
77,784 KB
testcase_08 AC 219 ms
96,384 KB
testcase_09 AC 189 ms
93,568 KB
testcase_10 AC 150 ms
93,224 KB
testcase_11 AC 208 ms
92,532 KB
testcase_12 AC 195 ms
105,956 KB
testcase_13 AC 234 ms
92,236 KB
testcase_14 AC 195 ms
101,796 KB
testcase_15 AC 173 ms
90,632 KB
testcase_16 AC 195 ms
85,196 KB
testcase_17 AC 229 ms
94,516 KB
testcase_18 AC 180 ms
106,768 KB
testcase_19 AC 224 ms
119,044 KB
testcase_20 AC 183 ms
104,924 KB
testcase_21 AC 195 ms
106,424 KB
testcase_22 AC 177 ms
106,372 KB
testcase_23 AC 199 ms
105,644 KB
testcase_24 AC 226 ms
111,068 KB
testcase_25 AC 213 ms
109,884 KB
testcase_26 AC 169 ms
104,944 KB
testcase_27 AC 209 ms
107,220 KB
testcase_28 AC 202 ms
105,884 KB
testcase_29 AC 193 ms
105,448 KB
testcase_30 AC 221 ms
117,572 KB
testcase_31 AC 184 ms
104,396 KB
testcase_32 AC 173 ms
105,080 KB
testcase_33 AC 187 ms
105,900 KB
testcase_34 AC 220 ms
108,944 KB
testcase_35 AC 232 ms
118,396 KB
testcase_36 AC 202 ms
107,524 KB
testcase_37 AC 204 ms
109,236 KB
testcase_38 AC 509 ms
76,928 KB
testcase_39 AC 585 ms
77,440 KB
testcase_40 AC 167 ms
76,416 KB
testcase_41 AC 218 ms
77,360 KB
testcase_42 AC 218 ms
121,136 KB
testcase_43 AC 217 ms
121,056 KB
testcase_44 AC 151 ms
102,020 KB
testcase_45 AC 152 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

f=lambda:list(map(int,input().split()))

for _ in range(int(input())):
    N,M=f()
    if   N==M==0: input(); input(); print('Yes'); continue
    elif N==0:
        input(); B=f(); print('Yes')
        for i in B: print('Blue '+str(i))
        continue
    elif M==0:
        A=f(); input(); print('Yes')
        for i in A: print('Red '+str(i))
        continue
    A=f(); B=f(); P=set(A); matched=set()
    for i in B:
        if i in P: matched.add(i)
    if not len(matched): print('No'); continue
    if len(matched)==1:
        print('Yes')
        if N==1:
            for i in B:
                if i not in matched: print('Blue '+str(i))
            for i in matched: print('Blue '+str(i)); print('Red '+str(i))
            continue
        else:
            for i in A:
                if i not in matched: print('Red '+str(i))
            for i in matched: print('Red '+str(i)); print('Blue '+str(i))
            for i in B:
                if i not in matched: print('Blue '+str(i))
            continue
    else:
        print('Yes')
        start=matched.pop(); print('Blue '+str(start)); print('Red '+str(start))
        for i in A:
            if i==start: continue
            if i not in matched: print('Red '+str(i))
        next=matched.pop(); print('Red '+str(next)); print('Blue '+str(next))
        for i in B:
            if i==start or i==next: continue
            if i not in matched: print('Blue '+str(i))
        next_is_BL = True
        while len(matched):
            now=matched.pop()
            if next_is_BL==True: print('Blue '+str(now)); print('Red '+str(now)); next_is_BL=False
            else: print('Red '+str(now)); print('Blue '+str(now)); next_is_BL=True
0