結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 302 ms
78,296 KB
testcase_03 AC 199 ms
80,592 KB
testcase_04 AC 187 ms
80,168 KB
testcase_05 AC 195 ms
80,504 KB
testcase_06 AC 204 ms
81,472 KB
testcase_07 AC 170 ms
79,972 KB
testcase_08 AC 222 ms
99,456 KB
testcase_09 AC 210 ms
99,968 KB
testcase_10 AC 191 ms
109,656 KB
testcase_11 AC 221 ms
95,228 KB
testcase_12 AC 203 ms
113,448 KB
testcase_13 AC 266 ms
104,020 KB
testcase_14 AC 206 ms
107,136 KB
testcase_15 AC 181 ms
96,036 KB
testcase_16 AC 221 ms
94,540 KB
testcase_17 AC 235 ms
99,588 KB
testcase_18 AC 235 ms
128,404 KB
testcase_19 AC 270 ms
130,388 KB
testcase_20 AC 241 ms
144,648 KB
testcase_21 AC 262 ms
142,028 KB
testcase_22 AC 228 ms
127,000 KB
testcase_23 AC 262 ms
144,440 KB
testcase_24 AC 256 ms
124,268 KB
testcase_25 AC 258 ms
127,272 KB
testcase_26 AC 237 ms
143,244 KB
testcase_27 AC 264 ms
125,684 KB
testcase_28 AC 266 ms
137,776 KB
testcase_29 AC 258 ms
137,156 KB
testcase_30 AC 265 ms
127,484 KB
testcase_31 AC 240 ms
144,616 KB
testcase_32 AC 237 ms
144,716 KB
testcase_33 AC 227 ms
119,800 KB
testcase_34 AC 251 ms
120,784 KB
testcase_35 AC 266 ms
130,268 KB
testcase_36 AC 258 ms
137,244 KB
testcase_37 AC 256 ms
132,036 KB
testcase_38 AC 550 ms
77,568 KB
testcase_39 AC 703 ms
78,776 KB
testcase_40 AC 214 ms
77,696 KB
testcase_41 AC 255 ms
78,472 KB
testcase_42 AC 254 ms
129,340 KB
testcase_43 AC 255 ms
129,664 KB
testcase_44 AC 227 ms
143,872 KB
testcase_45 AC 224 ms
144,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# test case 00 RE出る、なんでだろうね

T = int(input())
for t in range(T):
    N, M = map(int, input().split())
    A_list = list(map(int, input().split()))
    B_list = list(map(int, input().split()))
    A_set = set(A_list)
    B_set = set(B_list)
    A_solo = []
    double = []
    for a in A_list:
        if a in B_set:
            double.append(a)
        else:
            A_solo.append(a)
    B_solo = []
    for b in B_list:
        if b not in A_set:
            B_solo.append(b)
            
    #print(A_solo, double, B_solo)

    if N == 0 and M > 0:
        print('Yes')
        for b in B_list:
            print('Blue', b)
    elif N > 0 and M == 0:
        print('Yes')
        for a in A_list:
            print('Red', a)
    else:
        if len(double) == 0:
            print('No')
        else:
            print('Yes')
            double = sorted(list(double))
            for a in A_solo:
                print('Red', a)
            print('Red', double[0])
            print('Blue', double[0])
            for b in B_solo:
                print('Blue', b)
            for i in range(1, len(double)):
                if i%2 == 1:
                    print('Blue', double[i])
                    print('Red', double[i])
                else:
                    print('Red', double[i])
                    print('Blue', double[i])
0