結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 22:52:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,528 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 130,964 KB
最終ジャッジ日時 2024-06-01 01:36:29
合計ジャッジ時間 32,124 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,512 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 WA -
testcase_03 AC 201 ms
81,464 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 203 ms
81,100 KB
testcase_07 WA -
testcase_08 AC 222 ms
96,480 KB
testcase_09 AC 211 ms
97,416 KB
testcase_10 AC 197 ms
104,448 KB
testcase_11 AC 238 ms
97,884 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 211 ms
102,080 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 232 ms
108,788 KB
testcase_19 AC 304 ms
119,768 KB
testcase_20 AC 249 ms
130,964 KB
testcase_21 AC 276 ms
129,516 KB
testcase_22 AC 237 ms
110,708 KB
testcase_23 AC 267 ms
130,536 KB
testcase_24 AC 279 ms
110,600 KB
testcase_25 AC 268 ms
110,864 KB
testcase_26 AC 240 ms
128,648 KB
testcase_27 AC 261 ms
110,672 KB
testcase_28 AC 302 ms
122,868 KB
testcase_29 AC 256 ms
121,796 KB
testcase_30 AC 286 ms
113,436 KB
testcase_31 AC 245 ms
130,880 KB
testcase_32 AC 243 ms
130,788 KB
testcase_33 WA -
testcase_34 AC 261 ms
118,376 KB
testcase_35 AC 290 ms
116,356 KB
testcase_36 AC 273 ms
124,148 KB
testcase_37 AC 269 ms
111,788 KB
testcase_38 AC 528 ms
77,748 KB
testcase_39 AC 689 ms
80,668 KB
testcase_40 AC 235 ms
77,852 KB
testcase_41 AC 280 ms
78,936 KB
testcase_42 AC 281 ms
119,960 KB
testcase_43 AC 282 ms
119,928 KB
testcase_44 AC 213 ms
130,708 KB
testcase_45 AC 214 ms
130,812 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)
    elif 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 i in range(len(A_double)):
            if i == 0:
                for a in A_solo:
                    print('Red', a)
                print('Red', A_double[i])
                print('Blue', B_double[i])
            elif i == 1:
                for b in B_solo:
                    print('Blue', b)
                print('Blue', B_double[i])
                print('Red', A_double[i])
            elif i%2 == 0:
                print('Red', A_double[i])
                print('Blue', B_double[i])
            else:
                print('Blue', B_double[i])
                print('Red', A_double[i])            
0