結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 293 ms
78,452 KB
testcase_03 AC 192 ms
80,680 KB
testcase_04 AC 184 ms
80,640 KB
testcase_05 AC 185 ms
80,764 KB
testcase_06 AC 212 ms
81,668 KB
testcase_07 AC 175 ms
80,036 KB
testcase_08 AC 214 ms
98,556 KB
testcase_09 AC 204 ms
99,616 KB
testcase_10 AC 189 ms
109,720 KB
testcase_11 AC 226 ms
95,076 KB
testcase_12 AC 199 ms
113,372 KB
testcase_13 AC 258 ms
103,760 KB
testcase_14 AC 205 ms
107,264 KB
testcase_15 AC 179 ms
95,392 KB
testcase_16 AC 217 ms
94,416 KB
testcase_17 AC 223 ms
99,612 KB
testcase_18 AC 239 ms
128,272 KB
testcase_19 AC 249 ms
128,324 KB
testcase_20 AC 247 ms
144,916 KB
testcase_21 AC 260 ms
142,040 KB
testcase_22 AC 233 ms
126,868 KB
testcase_23 AC 262 ms
144,288 KB
testcase_24 AC 248 ms
123,352 KB
testcase_25 AC 254 ms
127,156 KB
testcase_26 AC 247 ms
143,268 KB
testcase_27 AC 248 ms
126,048 KB
testcase_28 AC 261 ms
137,840 KB
testcase_29 AC 252 ms
137,276 KB
testcase_30 AC 257 ms
126,580 KB
testcase_31 AC 239 ms
145,048 KB
testcase_32 AC 239 ms
144,868 KB
testcase_33 AC 224 ms
119,700 KB
testcase_34 AC 247 ms
120,544 KB
testcase_35 AC 255 ms
128,732 KB
testcase_36 AC 259 ms
136,024 KB
testcase_37 AC 256 ms
131,980 KB
testcase_38 AC 540 ms
77,428 KB
testcase_39 AC 671 ms
79,260 KB
testcase_40 AC 232 ms
77,952 KB
testcase_41 AC 238 ms
78,396 KB
testcase_42 AC 239 ms
127,044 KB
testcase_43 AC 234 ms
127,612 KB
testcase_44 AC 217 ms
144,060 KB
testcase_45 AC 221 ms
144,116 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(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