結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,096 KB
testcase_01 AC 47 ms
52,096 KB
testcase_02 AC 347 ms
78,684 KB
testcase_03 AC 209 ms
80,716 KB
testcase_04 AC 222 ms
80,312 KB
testcase_05 AC 225 ms
80,752 KB
testcase_06 AC 233 ms
81,600 KB
testcase_07 AC 183 ms
79,744 KB
testcase_08 AC 243 ms
98,888 KB
testcase_09 AC 223 ms
100,040 KB
testcase_10 AC 211 ms
110,260 KB
testcase_11 AC 248 ms
95,588 KB
testcase_12 AC 226 ms
113,320 KB
testcase_13 AC 278 ms
104,016 KB
testcase_14 AC 226 ms
107,008 KB
testcase_15 AC 205 ms
95,360 KB
testcase_16 AC 271 ms
94,500 KB
testcase_17 AC 262 ms
100,040 KB
testcase_18 AC 265 ms
128,548 KB
testcase_19 AC 316 ms
130,796 KB
testcase_20 AC 276 ms
145,268 KB
testcase_21 AC 283 ms
142,416 KB
testcase_22 AC 252 ms
126,632 KB
testcase_23 AC 311 ms
144,616 KB
testcase_24 AC 274 ms
124,240 KB
testcase_25 AC 269 ms
127,440 KB
testcase_26 AC 274 ms
143,288 KB
testcase_27 AC 284 ms
125,656 KB
testcase_28 AC 278 ms
138,340 KB
testcase_29 AC 268 ms
137,672 KB
testcase_30 AC 291 ms
127,668 KB
testcase_31 AC 258 ms
144,836 KB
testcase_32 AC 257 ms
145,216 KB
testcase_33 AC 237 ms
119,884 KB
testcase_34 AC 277 ms
120,912 KB
testcase_35 AC 282 ms
130,368 KB
testcase_36 AC 287 ms
137,636 KB
testcase_37 AC 273 ms
132,180 KB
testcase_38 AC 589 ms
77,588 KB
testcase_39 AC 797 ms
79,028 KB
testcase_40 AC 261 ms
78,096 KB
testcase_41 AC 307 ms
78,272 KB
testcase_42 AC 300 ms
129,388 KB
testcase_43 AC 295 ms
129,460 KB
testcase_44 AC 238 ms
144,196 KB
testcase_45 AC 238 ms
143,940 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