結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 349 ms
78,608 KB
testcase_03 AC 206 ms
80,296 KB
testcase_04 AC 188 ms
79,488 KB
testcase_05 AC 199 ms
80,004 KB
testcase_06 AC 203 ms
81,408 KB
testcase_07 AC 170 ms
79,244 KB
testcase_08 AC 224 ms
96,128 KB
testcase_09 AC 238 ms
97,408 KB
testcase_10 AC 197 ms
104,448 KB
testcase_11 AC 232 ms
97,764 KB
testcase_12 AC 202 ms
108,056 KB
testcase_13 AC 258 ms
99,196 KB
testcase_14 AC 203 ms
102,096 KB
testcase_15 AC 185 ms
97,832 KB
testcase_16 AC 227 ms
92,032 KB
testcase_17 AC 247 ms
96,180 KB
testcase_18 AC 226 ms
108,732 KB
testcase_19 AC 272 ms
117,692 KB
testcase_20 AC 240 ms
130,996 KB
testcase_21 AC 256 ms
129,500 KB
testcase_22 AC 228 ms
110,720 KB
testcase_23 AC 260 ms
130,212 KB
testcase_24 AC 258 ms
110,336 KB
testcase_25 AC 255 ms
110,720 KB
testcase_26 AC 237 ms
128,516 KB
testcase_27 AC 248 ms
110,872 KB
testcase_28 AC 256 ms
122,892 KB
testcase_29 AC 252 ms
121,748 KB
testcase_30 AC 262 ms
111,492 KB
testcase_31 AC 234 ms
130,648 KB
testcase_32 AC 242 ms
130,680 KB
testcase_33 AC 220 ms
120,448 KB
testcase_34 AC 241 ms
117,888 KB
testcase_35 AC 267 ms
114,396 KB
testcase_36 AC 255 ms
123,872 KB
testcase_37 AC 254 ms
111,536 KB
testcase_38 AC 532 ms
77,568 KB
testcase_39 AC 674 ms
79,252 KB
testcase_40 AC 230 ms
77,864 KB
testcase_41 AC 263 ms
79,288 KB
testcase_42 AC 274 ms
117,476 KB
testcase_43 AC 264 ms
117,472 KB
testcase_44 AC 211 ms
130,504 KB
testcase_45 AC 214 ms
130,540 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)
    else:
        if 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 a in A_solo:
                print('Red', a)
            print('Red', A_double[0])
            print('Blue', A_double[0])
            for b in B_solo:
                print('Blue', b)
            for i in range(1, len(A_double)):
                if i%2 == 1:
                    print('Blue', A_double[i])
                    print('Red', A_double[i])
                else:
                    print('Red', A_double[i])
                    print('Blue', A_double[i])
0