結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー FromBooskaFromBooska
提出日時 2023-05-19 23:15:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 681 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 130,848 KB
最終ジャッジ日時 2024-06-01 01:47:41
合計ジャッジ時間 31,193 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 295 ms
78,444 KB
testcase_03 AC 196 ms
79,540 KB
testcase_04 AC 184 ms
79,872 KB
testcase_05 AC 193 ms
80,308 KB
testcase_06 AC 212 ms
81,664 KB
testcase_07 AC 166 ms
78,792 KB
testcase_08 AC 220 ms
96,256 KB
testcase_09 AC 208 ms
97,572 KB
testcase_10 AC 200 ms
104,572 KB
testcase_11 AC 229 ms
97,504 KB
testcase_12 AC 204 ms
108,444 KB
testcase_13 AC 263 ms
102,140 KB
testcase_14 AC 205 ms
101,892 KB
testcase_15 AC 183 ms
98,064 KB
testcase_16 AC 226 ms
92,472 KB
testcase_17 AC 228 ms
95,896 KB
testcase_18 AC 234 ms
108,856 KB
testcase_19 AC 260 ms
112,308 KB
testcase_20 AC 239 ms
130,848 KB
testcase_21 AC 261 ms
129,060 KB
testcase_22 AC 222 ms
110,620 KB
testcase_23 AC 259 ms
130,312 KB
testcase_24 AC 251 ms
110,760 KB
testcase_25 AC 250 ms
110,732 KB
testcase_26 AC 229 ms
128,952 KB
testcase_27 AC 245 ms
110,796 KB
testcase_28 AC 266 ms
122,552 KB
testcase_29 AC 250 ms
121,824 KB
testcase_30 AC 262 ms
108,080 KB
testcase_31 AC 233 ms
130,816 KB
testcase_32 AC 234 ms
130,768 KB
testcase_33 AC 213 ms
120,320 KB
testcase_34 AC 259 ms
117,976 KB
testcase_35 AC 259 ms
110,284 KB
testcase_36 AC 258 ms
122,760 KB
testcase_37 AC 253 ms
111,400 KB
testcase_38 AC 539 ms
77,668 KB
testcase_39 AC 681 ms
79,760 KB
testcase_40 AC 221 ms
77,848 KB
testcase_41 AC 254 ms
78,220 KB
testcase_42 AC 252 ms
111,596 KB
testcase_43 AC 248 ms
111,912 KB
testcase_44 AC 212 ms
130,656 KB
testcase_45 AC 214 ms
130,644 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