結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 22:18:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,665 bytes
コンパイル時間 559 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 131,124 KB
最終ジャッジ日時 2024-06-01 01:15:31
合計ジャッジ時間 30,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 WA -
testcase_03 AC 204 ms
80,704 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 196 ms
81,340 KB
testcase_07 WA -
testcase_08 AC 216 ms
96,776 KB
testcase_09 AC 208 ms
97,792 KB
testcase_10 WA -
testcase_11 AC 232 ms
96,636 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 208 ms
102,124 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 231 ms
108,784 KB
testcase_19 AC 286 ms
119,968 KB
testcase_20 AC 230 ms
131,124 KB
testcase_21 AC 253 ms
129,420 KB
testcase_22 AC 226 ms
110,740 KB
testcase_23 AC 253 ms
130,752 KB
testcase_24 AC 263 ms
110,464 KB
testcase_25 AC 255 ms
110,764 KB
testcase_26 AC 223 ms
129,196 KB
testcase_27 AC 244 ms
110,720 KB
testcase_28 AC 245 ms
122,912 KB
testcase_29 AC 244 ms
121,840 KB
testcase_30 AC 274 ms
113,104 KB
testcase_31 AC 225 ms
130,808 KB
testcase_32 AC 223 ms
130,760 KB
testcase_33 WA -
testcase_34 AC 256 ms
118,400 KB
testcase_35 AC 283 ms
116,164 KB
testcase_36 AC 255 ms
124,184 KB
testcase_37 AC 252 ms
111,380 KB
testcase_38 AC 514 ms
77,948 KB
testcase_39 AC 681 ms
80,644 KB
testcase_40 AC 223 ms
78,016 KB
testcase_41 AC 273 ms
78,988 KB
testcase_42 AC 270 ms
119,868 KB
testcase_43 AC 270 ms
119,688 KB
testcase_44 AC 205 ms
130,588 KB
testcase_45 AC 204 ms
130,428 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 i in range(len(A_double)):
                if i == 0:
                    for b in B_solo:
                        print('Blue', b)                    
                    print('Blue', B_double[i])
                    print('Red', A_double[i])
                elif i == 1:                    
                    for a in A_solo:
                        print('Red', a)
                    print('Red', A_double[i])
                    print('Blue', B_double[i])                    
                elif 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