結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 22:54:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 769 ms / 2,000 ms
コード長 1,447 bytes
コンパイル時間 1,348 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 131,180 KB
最終ジャッジ日時 2024-12-21 03:33:13
合計ジャッジ時間 36,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 45 ms
52,736 KB
testcase_02 AC 378 ms
78,896 KB
testcase_03 AC 237 ms
80,576 KB
testcase_04 AC 221 ms
79,232 KB
testcase_05 AC 235 ms
79,976 KB
testcase_06 AC 235 ms
81,240 KB
testcase_07 AC 204 ms
79,232 KB
testcase_08 AC 258 ms
96,512 KB
testcase_09 AC 243 ms
97,536 KB
testcase_10 AC 214 ms
104,132 KB
testcase_11 AC 271 ms
97,784 KB
testcase_12 AC 234 ms
108,304 KB
testcase_13 AC 305 ms
99,332 KB
testcase_14 AC 241 ms
102,028 KB
testcase_15 AC 214 ms
98,088 KB
testcase_16 AC 270 ms
92,672 KB
testcase_17 AC 274 ms
96,596 KB
testcase_18 AC 261 ms
109,056 KB
testcase_19 AC 328 ms
120,172 KB
testcase_20 AC 282 ms
131,112 KB
testcase_21 AC 303 ms
129,104 KB
testcase_22 AC 261 ms
110,720 KB
testcase_23 AC 303 ms
130,436 KB
testcase_24 AC 308 ms
110,848 KB
testcase_25 AC 296 ms
110,464 KB
testcase_26 AC 270 ms
128,692 KB
testcase_27 AC 290 ms
110,904 KB
testcase_28 AC 294 ms
123,156 KB
testcase_29 AC 291 ms
121,856 KB
testcase_30 AC 315 ms
113,024 KB
testcase_31 AC 271 ms
131,100 KB
testcase_32 AC 284 ms
131,180 KB
testcase_33 AC 260 ms
120,192 KB
testcase_34 AC 293 ms
118,400 KB
testcase_35 AC 330 ms
116,636 KB
testcase_36 AC 304 ms
124,232 KB
testcase_37 AC 300 ms
111,704 KB
testcase_38 AC 600 ms
77,952 KB
testcase_39 AC 769 ms
80,464 KB
testcase_40 AC 280 ms
77,824 KB
testcase_41 AC 323 ms
79,164 KB
testcase_42 AC 323 ms
119,984 KB
testcase_43 AC 326 ms
119,972 KB
testcase_44 AC 258 ms
130,412 KB
testcase_45 AC 243 ms
130,416 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', 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