結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 46 ms
52,480 KB
testcase_02 AC 348 ms
78,856 KB
testcase_03 AC 210 ms
80,968 KB
testcase_04 AC 200 ms
79,872 KB
testcase_05 AC 234 ms
79,920 KB
testcase_06 AC 242 ms
81,424 KB
testcase_07 AC 185 ms
79,488 KB
testcase_08 AC 238 ms
96,384 KB
testcase_09 AC 222 ms
97,540 KB
testcase_10 AC 199 ms
104,264 KB
testcase_11 AC 258 ms
97,396 KB
testcase_12 AC 228 ms
108,184 KB
testcase_13 AC 271 ms
99,196 KB
testcase_14 AC 217 ms
102,272 KB
testcase_15 AC 198 ms
97,840 KB
testcase_16 AC 244 ms
92,136 KB
testcase_17 AC 249 ms
96,144 KB
testcase_18 AC 258 ms
109,364 KB
testcase_19 AC 328 ms
119,912 KB
testcase_20 AC 253 ms
131,212 KB
testcase_21 AC 285 ms
129,212 KB
testcase_22 AC 249 ms
110,976 KB
testcase_23 AC 311 ms
130,556 KB
testcase_24 AC 285 ms
110,592 KB
testcase_25 AC 286 ms
110,592 KB
testcase_26 AC 247 ms
128,832 KB
testcase_27 AC 276 ms
110,848 KB
testcase_28 AC 273 ms
122,812 KB
testcase_29 AC 268 ms
121,860 KB
testcase_30 AC 298 ms
113,140 KB
testcase_31 AC 250 ms
130,756 KB
testcase_32 AC 263 ms
130,828 KB
testcase_33 AC 240 ms
120,192 KB
testcase_34 AC 266 ms
118,272 KB
testcase_35 AC 325 ms
116,744 KB
testcase_36 AC 284 ms
124,236 KB
testcase_37 AC 279 ms
111,596 KB
testcase_38 AC 625 ms
77,696 KB
testcase_39 AC 759 ms
80,288 KB
testcase_40 AC 273 ms
77,696 KB
testcase_41 AC 310 ms
79,164 KB
testcase_42 AC 291 ms
119,768 KB
testcase_43 AC 293 ms
120,192 KB
testcase_44 AC 216 ms
130,600 KB
testcase_45 AC 219 ms
130,672 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