結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 21:58:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 1,423 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 131,136 KB
最終ジャッジ日時 2024-06-01 00:46:08
合計ジャッジ時間 31,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 319 ms
78,988 KB
testcase_03 AC 201 ms
81,072 KB
testcase_04 AC 184 ms
79,864 KB
testcase_05 AC 195 ms
79,744 KB
testcase_06 AC 212 ms
81,392 KB
testcase_07 AC 167 ms
79,056 KB
testcase_08 AC 217 ms
96,512 KB
testcase_09 AC 205 ms
97,484 KB
testcase_10 AC 183 ms
104,588 KB
testcase_11 AC 228 ms
97,376 KB
testcase_12 AC 194 ms
108,436 KB
testcase_13 AC 258 ms
99,456 KB
testcase_14 AC 203 ms
102,144 KB
testcase_15 AC 179 ms
98,080 KB
testcase_16 AC 224 ms
92,372 KB
testcase_17 AC 230 ms
96,532 KB
testcase_18 AC 218 ms
108,808 KB
testcase_19 AC 294 ms
119,992 KB
testcase_20 AC 246 ms
130,708 KB
testcase_21 AC 251 ms
129,088 KB
testcase_22 AC 216 ms
110,500 KB
testcase_23 AC 249 ms
130,644 KB
testcase_24 AC 257 ms
110,464 KB
testcase_25 AC 249 ms
110,576 KB
testcase_26 AC 219 ms
128,580 KB
testcase_27 AC 245 ms
110,592 KB
testcase_28 AC 251 ms
122,680 KB
testcase_29 AC 243 ms
121,804 KB
testcase_30 AC 277 ms
113,084 KB
testcase_31 AC 245 ms
131,136 KB
testcase_32 AC 227 ms
130,716 KB
testcase_33 AC 211 ms
120,192 KB
testcase_34 AC 249 ms
118,016 KB
testcase_35 AC 281 ms
116,176 KB
testcase_36 AC 279 ms
124,144 KB
testcase_37 AC 251 ms
111,796 KB
testcase_38 AC 528 ms
77,696 KB
testcase_39 AC 685 ms
80,296 KB
testcase_40 AC 228 ms
77,824 KB
testcase_41 AC 264 ms
78,664 KB
testcase_42 AC 274 ms
120,124 KB
testcase_43 AC 269 ms
120,088 KB
testcase_44 AC 203 ms
130,564 KB
testcase_45 AC 208 ms
130,740 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')
    elif 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))
            for a in A_solo:
                print('Red', a)
            print('Red', A_double.pop())
            print('Blue', B_double.pop())
            for b in B_solo:
                print('Blue', b)
            for i in range(len(A_double)):
                if i%2 == 0:
                    print('Blue', B_double.pop())
                    print('Red', A_double.pop())
                else:
                    print('Red', A_double.pop())
                    print('Blue', B_double.pop())
0