結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー navel_tosnavel_tos
提出日時 2023-05-20 00:09:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 1,699 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 121,000 KB
最終ジャッジ日時 2024-06-01 02:00:22
合計ジャッジ時間 28,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 278 ms
78,412 KB
testcase_03 AC 158 ms
78,288 KB
testcase_04 AC 164 ms
77,972 KB
testcase_05 AC 175 ms
78,180 KB
testcase_06 AC 160 ms
78,168 KB
testcase_07 AC 144 ms
77,708 KB
testcase_08 AC 195 ms
96,220 KB
testcase_09 AC 161 ms
93,312 KB
testcase_10 AC 124 ms
93,040 KB
testcase_11 AC 177 ms
92,280 KB
testcase_12 AC 175 ms
106,088 KB
testcase_13 AC 208 ms
92,104 KB
testcase_14 AC 170 ms
101,632 KB
testcase_15 AC 148 ms
90,724 KB
testcase_16 AC 176 ms
84,888 KB
testcase_17 AC 192 ms
94,792 KB
testcase_18 AC 160 ms
106,880 KB
testcase_19 AC 213 ms
119,740 KB
testcase_20 AC 159 ms
104,800 KB
testcase_21 AC 178 ms
106,332 KB
testcase_22 AC 165 ms
106,420 KB
testcase_23 AC 191 ms
105,260 KB
testcase_24 AC 201 ms
111,060 KB
testcase_25 AC 190 ms
109,500 KB
testcase_26 AC 151 ms
104,688 KB
testcase_27 AC 184 ms
106,884 KB
testcase_28 AC 176 ms
105,892 KB
testcase_29 AC 169 ms
105,064 KB
testcase_30 AC 205 ms
117,688 KB
testcase_31 AC 146 ms
104,484 KB
testcase_32 AC 147 ms
105,120 KB
testcase_33 AC 159 ms
106,148 KB
testcase_34 AC 185 ms
108,432 KB
testcase_35 AC 206 ms
118,268 KB
testcase_36 AC 180 ms
107,652 KB
testcase_37 AC 178 ms
109,152 KB
testcase_38 AC 499 ms
77,080 KB
testcase_39 AC 545 ms
77,312 KB
testcase_40 AC 138 ms
76,432 KB
testcase_41 AC 187 ms
77,056 KB
testcase_42 AC 201 ms
120,932 KB
testcase_43 AC 190 ms
121,000 KB
testcase_44 AC 134 ms
102,144 KB
testcase_45 AC 132 ms
102,048 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