結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 22:59:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 744 ms / 2,000 ms
コード長 1,448 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 131,108 KB
最終ジャッジ日時 2024-12-21 03:32:35
合計ジャッジ時間 33,627 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
52,224 KB
testcase_01 AC 44 ms
52,352 KB
testcase_02 AC 349 ms
78,732 KB
testcase_03 AC 218 ms
80,428 KB
testcase_04 AC 207 ms
79,488 KB
testcase_05 AC 209 ms
79,996 KB
testcase_06 AC 216 ms
81,408 KB
testcase_07 AC 181 ms
79,232 KB
testcase_08 AC 238 ms
96,384 KB
testcase_09 AC 228 ms
97,408 KB
testcase_10 AC 207 ms
104,400 KB
testcase_11 AC 246 ms
97,280 KB
testcase_12 AC 217 ms
108,192 KB
testcase_13 AC 272 ms
99,320 KB
testcase_14 AC 218 ms
102,016 KB
testcase_15 AC 191 ms
97,972 KB
testcase_16 AC 227 ms
92,288 KB
testcase_17 AC 246 ms
96,068 KB
testcase_18 AC 242 ms
109,252 KB
testcase_19 AC 271 ms
117,812 KB
testcase_20 AC 242 ms
130,884 KB
testcase_21 AC 258 ms
129,116 KB
testcase_22 AC 237 ms
110,848 KB
testcase_23 AC 278 ms
130,728 KB
testcase_24 AC 259 ms
110,592 KB
testcase_25 AC 260 ms
110,848 KB
testcase_26 AC 235 ms
128,852 KB
testcase_27 AC 252 ms
110,720 KB
testcase_28 AC 250 ms
122,956 KB
testcase_29 AC 257 ms
121,748 KB
testcase_30 AC 290 ms
111,628 KB
testcase_31 AC 236 ms
130,900 KB
testcase_32 AC 233 ms
131,108 KB
testcase_33 AC 217 ms
120,320 KB
testcase_34 AC 253 ms
118,020 KB
testcase_35 AC 272 ms
114,924 KB
testcase_36 AC 264 ms
123,596 KB
testcase_37 AC 263 ms
111,812 KB
testcase_38 AC 562 ms
77,656 KB
testcase_39 AC 744 ms
79,464 KB
testcase_40 AC 237 ms
78,208 KB
testcase_41 AC 310 ms
78,936 KB
testcase_42 AC 268 ms
117,800 KB
testcase_43 AC 261 ms
117,600 KB
testcase_44 AC 224 ms
130,412 KB
testcase_45 AC 219 ms
130,568 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 and M > 0:
        print('Yes')
        for b in B:
            print('Blue', b)
    elif M == 0 and N > 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', A_double[0])
            for b in B_solo:
                print('Blue', b)
            for i in range(1, len(A_double)):
                if i%2 == 1:
                    print('Blue', A_double[i])
                    print('Red', A_double[i])
                else:
                    print('Red', A_double[i])
                    print('Blue', A_double[i])
0