結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 22:07:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 1,411 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 130,900 KB
最終ジャッジ日時 2024-06-01 01:04:00
合計ジャッジ時間 31,343 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 39 ms
52,404 KB
testcase_02 AC 322 ms
79,024 KB
testcase_03 AC 199 ms
80,704 KB
testcase_04 AC 182 ms
79,616 KB
testcase_05 AC 197 ms
79,728 KB
testcase_06 AC 199 ms
81,296 KB
testcase_07 AC 165 ms
79,076 KB
testcase_08 AC 221 ms
96,256 KB
testcase_09 AC 200 ms
97,436 KB
testcase_10 AC 181 ms
104,392 KB
testcase_11 AC 236 ms
97,372 KB
testcase_12 AC 192 ms
108,184 KB
testcase_13 AC 250 ms
99,320 KB
testcase_14 AC 197 ms
102,272 KB
testcase_15 AC 180 ms
98,084 KB
testcase_16 AC 221 ms
92,416 KB
testcase_17 AC 226 ms
96,400 KB
testcase_18 AC 228 ms
108,852 KB
testcase_19 AC 280 ms
120,168 KB
testcase_20 AC 237 ms
130,764 KB
testcase_21 AC 257 ms
129,440 KB
testcase_22 AC 220 ms
110,964 KB
testcase_23 AC 251 ms
130,420 KB
testcase_24 AC 258 ms
110,568 KB
testcase_25 AC 255 ms
110,680 KB
testcase_26 AC 228 ms
128,580 KB
testcase_27 AC 251 ms
110,696 KB
testcase_28 AC 273 ms
122,884 KB
testcase_29 AC 250 ms
122,044 KB
testcase_30 AC 275 ms
113,472 KB
testcase_31 AC 230 ms
130,620 KB
testcase_32 AC 231 ms
130,900 KB
testcase_33 AC 213 ms
120,212 KB
testcase_34 AC 242 ms
117,952 KB
testcase_35 AC 272 ms
116,184 KB
testcase_36 AC 259 ms
124,288 KB
testcase_37 AC 257 ms
111,520 KB
testcase_38 AC 513 ms
77,912 KB
testcase_39 AC 672 ms
80,392 KB
testcase_40 AC 222 ms
77,860 KB
testcase_41 AC 265 ms
78,904 KB
testcase_42 AC 280 ms
119,832 KB
testcase_43 AC 270 ms
119,972 KB
testcase_44 AC 208 ms
130,668 KB
testcase_45 AC 210 ms
130,652 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[i])
                    print('Red', A_double[i])
                else:
                    print('Red', A_double[i])
                    print('Blue', B_double[i])
0