結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 23:15:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 718 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 130,820 KB
最終ジャッジ日時 2024-12-21 04:00:11
合計ジャッジ時間 33,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 45 ms
52,224 KB
testcase_02 AC 322 ms
78,216 KB
testcase_03 AC 217 ms
79,664 KB
testcase_04 AC 204 ms
79,616 KB
testcase_05 AC 206 ms
79,920 KB
testcase_06 AC 222 ms
81,792 KB
testcase_07 AC 183 ms
79,232 KB
testcase_08 AC 245 ms
96,640 KB
testcase_09 AC 222 ms
97,280 KB
testcase_10 AC 208 ms
104,408 KB
testcase_11 AC 246 ms
97,388 KB
testcase_12 AC 224 ms
108,560 KB
testcase_13 AC 274 ms
102,008 KB
testcase_14 AC 226 ms
101,888 KB
testcase_15 AC 201 ms
97,852 KB
testcase_16 AC 251 ms
92,544 KB
testcase_17 AC 256 ms
96,340 KB
testcase_18 AC 240 ms
108,696 KB
testcase_19 AC 282 ms
112,568 KB
testcase_20 AC 262 ms
130,736 KB
testcase_21 AC 277 ms
129,236 KB
testcase_22 AC 252 ms
110,848 KB
testcase_23 AC 277 ms
130,476 KB
testcase_24 AC 270 ms
110,720 KB
testcase_25 AC 270 ms
110,464 KB
testcase_26 AC 249 ms
128,588 KB
testcase_27 AC 279 ms
110,464 KB
testcase_28 AC 282 ms
122,584 KB
testcase_29 AC 265 ms
121,740 KB
testcase_30 AC 277 ms
108,288 KB
testcase_31 AC 250 ms
130,772 KB
testcase_32 AC 248 ms
130,820 KB
testcase_33 AC 232 ms
120,064 KB
testcase_34 AC 261 ms
118,144 KB
testcase_35 AC 281 ms
110,232 KB
testcase_36 AC 276 ms
122,724 KB
testcase_37 AC 285 ms
111,600 KB
testcase_38 AC 580 ms
77,696 KB
testcase_39 AC 718 ms
79,564 KB
testcase_40 AC 252 ms
78,080 KB
testcase_41 AC 283 ms
78,016 KB
testcase_42 AC 269 ms
111,716 KB
testcase_43 AC 274 ms
111,836 KB
testcase_44 AC 231 ms
130,408 KB
testcase_45 AC 228 ms
130,672 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 = []
    double = []
    for a in A:
        if a in B:
            double.append(a)
        else:
            A_solo.append(a)
    B_solo = []
    for b in B:
        if b not in A:
            B_solo.append(b)

    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(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