結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 22:36:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 1,427 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 130,936 KB
最終ジャッジ日時 2024-06-01 01:28:36
合計ジャッジ時間 31,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 312 ms
78,912 KB
testcase_03 AC 195 ms
81,132 KB
testcase_04 AC 185 ms
79,648 KB
testcase_05 AC 191 ms
79,600 KB
testcase_06 AC 211 ms
81,232 KB
testcase_07 AC 168 ms
79,196 KB
testcase_08 AC 220 ms
96,512 KB
testcase_09 AC 206 ms
97,280 KB
testcase_10 AC 186 ms
104,272 KB
testcase_11 AC 232 ms
97,280 KB
testcase_12 AC 195 ms
108,208 KB
testcase_13 AC 259 ms
99,112 KB
testcase_14 AC 204 ms
102,136 KB
testcase_15 AC 182 ms
98,088 KB
testcase_16 AC 224 ms
92,672 KB
testcase_17 AC 230 ms
96,260 KB
testcase_18 AC 234 ms
108,788 KB
testcase_19 AC 283 ms
119,476 KB
testcase_20 AC 237 ms
130,592 KB
testcase_21 AC 256 ms
129,352 KB
testcase_22 AC 222 ms
110,548 KB
testcase_23 AC 256 ms
130,268 KB
testcase_24 AC 263 ms
110,592 KB
testcase_25 AC 253 ms
110,544 KB
testcase_26 AC 227 ms
128,600 KB
testcase_27 AC 249 ms
110,848 KB
testcase_28 AC 250 ms
122,828 KB
testcase_29 AC 243 ms
121,596 KB
testcase_30 AC 280 ms
113,024 KB
testcase_31 AC 228 ms
130,888 KB
testcase_32 AC 234 ms
130,936 KB
testcase_33 AC 219 ms
120,064 KB
testcase_34 AC 249 ms
118,016 KB
testcase_35 AC 280 ms
116,196 KB
testcase_36 AC 261 ms
124,052 KB
testcase_37 AC 259 ms
111,352 KB
testcase_38 AC 542 ms
77,696 KB
testcase_39 AC 675 ms
80,208 KB
testcase_40 AC 229 ms
77,824 KB
testcase_41 AC 282 ms
78,604 KB
testcase_42 AC 274 ms
120,012 KB
testcase_43 AC 276 ms
119,776 KB
testcase_44 AC 213 ms
130,800 KB
testcase_45 AC 214 ms
130,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 貪欲法

T = int(input())
for t in range(T):
    N, M = map(int, input().split())
    A = set(map(int, input().split()))
    B = set(map(int, input().split()))
    A_solo = []
    A_double = []
    for a in A:
        if a in B:
            A_double.append(a)
        else:
            A_solo.append(a)
    B_solo = []
    B_double = []
    for b in B:
        if b in A:
            B_double.append(b)
        else:
            B_solo.append(b)

    #print(A_solo, A_double)
    #print(B_solo, B_double)

    if N == 0:
        print('Yes')
        for b in B:
            print('Blue', b)
    elif M == 0:
        print('Yes')
        for a in A:
            print('Red', a)
    else:
        if len(A_double) == 0:
            print('No')
        else:
            print('Yes')
            
            A_double = sorted(list(A_double))
            B_double = sorted(list(B_double))
            #print(A_solo, A_double, B_solo, B_double)
            for a in A_solo:
                print('Red', a)
            print('Red', A_double[0])
            print('Blue', B_double[0])
            for b in B_solo:
                print('Blue', b)
            for i in range(1, len(A_double)):
                if i%2 == 1:
                    print('Blue', B_double[i])
                    print('Red', A_double[i])
                else:
                    print('Red', A_double[i])
                    print('Blue', B_double[i])
0