結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,352 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 230 ms
80,580 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 222 ms
81,152 KB
testcase_07 WA -
testcase_08 AC 243 ms
96,256 KB
testcase_09 AC 228 ms
97,484 KB
testcase_10 AC 201 ms
104,268 KB
testcase_11 AC 255 ms
97,544 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 213 ms
102,272 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 233 ms
108,780 KB
testcase_19 AC 288 ms
119,640 KB
testcase_20 AC 245 ms
130,764 KB
testcase_21 AC 265 ms
129,588 KB
testcase_22 AC 232 ms
110,464 KB
testcase_23 AC 264 ms
130,436 KB
testcase_24 AC 266 ms
110,484 KB
testcase_25 AC 258 ms
110,976 KB
testcase_26 AC 236 ms
128,556 KB
testcase_27 AC 257 ms
110,336 KB
testcase_28 AC 257 ms
122,668 KB
testcase_29 AC 251 ms
122,172 KB
testcase_30 AC 284 ms
113,076 KB
testcase_31 AC 239 ms
130,604 KB
testcase_32 AC 257 ms
130,944 KB
testcase_33 WA -
testcase_34 AC 255 ms
118,312 KB
testcase_35 AC 287 ms
116,216 KB
testcase_36 AC 268 ms
123,936 KB
testcase_37 AC 299 ms
111,448 KB
testcase_38 AC 566 ms
77,836 KB
testcase_39 AC 755 ms
80,412 KB
testcase_40 AC 229 ms
78,080 KB
testcase_41 AC 270 ms
78,936 KB
testcase_42 AC 283 ms
119,996 KB
testcase_43 AC 281 ms
119,796 KB
testcase_44 AC 213 ms
130,820 KB
testcase_45 AC 219 ms
130,600 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)
    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