結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー miya145592miya145592
提出日時 2023-05-19 23:39:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 1,456 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 144,540 KB
最終ジャッジ日時 2024-12-21 04:03:11
合計ジャッジ時間 35,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 48 ms
52,352 KB
testcase_02 AC 302 ms
80,744 KB
testcase_03 AC 206 ms
80,072 KB
testcase_04 AC 206 ms
80,896 KB
testcase_05 AC 220 ms
81,488 KB
testcase_06 AC 226 ms
81,432 KB
testcase_07 AC 184 ms
80,128 KB
testcase_08 AC 247 ms
101,112 KB
testcase_09 AC 234 ms
93,216 KB
testcase_10 AC 194 ms
100,740 KB
testcase_11 AC 249 ms
99,100 KB
testcase_12 AC 231 ms
115,136 KB
testcase_13 AC 283 ms
104,052 KB
testcase_14 AC 230 ms
92,084 KB
testcase_15 AC 226 ms
98,944 KB
testcase_16 AC 259 ms
92,860 KB
testcase_17 AC 268 ms
96,696 KB
testcase_18 AC 284 ms
120,420 KB
testcase_19 AC 301 ms
128,348 KB
testcase_20 AC 288 ms
144,344 KB
testcase_21 AC 299 ms
142,916 KB
testcase_22 AC 285 ms
117,584 KB
testcase_23 AC 304 ms
144,540 KB
testcase_24 AC 308 ms
116,524 KB
testcase_25 AC 304 ms
119,020 KB
testcase_26 AC 270 ms
142,392 KB
testcase_27 AC 306 ms
116,424 KB
testcase_28 AC 295 ms
136,824 KB
testcase_29 AC 292 ms
134,432 KB
testcase_30 AC 303 ms
123,008 KB
testcase_31 AC 285 ms
143,928 KB
testcase_32 AC 277 ms
144,436 KB
testcase_33 AC 262 ms
107,508 KB
testcase_34 AC 301 ms
110,260 KB
testcase_35 AC 298 ms
127,196 KB
testcase_36 AC 297 ms
136,820 KB
testcase_37 AC 308 ms
125,268 KB
testcase_38 AC 452 ms
110,884 KB
testcase_39 AC 548 ms
112,696 KB
testcase_40 AC 222 ms
78,720 KB
testcase_41 AC 262 ms
79,744 KB
testcase_42 AC 277 ms
127,304 KB
testcase_43 AC 276 ms
127,344 KB
testcase_44 AC 201 ms
102,144 KB
testcase_45 AC 203 ms
102,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
NN = []
MM = []
AA = []
BB = []
for _ in range(T):
    n, m = map(int, input().split())
    a = list(map(int, input().split()))
    b = list(map(int, input().split()))
    NN.append(n)
    MM.append(m)
    AA.append(a)
    BB.append(b)
for i in range(T):
    try:
        N = NN[i]
        M = MM[i]
        A = AA[i]
        B = BB[i]
        if N>0 and M>0:
            setA = set(A)
            setB = set(B)
            same = []
            diff = []
            for b in B:
                if b in setA:
                    same.append(b)
                else:
                    diff.append(b)
            if len(same)==0:
                print("No")
                continue

            print("Yes")
            for d in diff:
                print("Blue", d)
            for i, s in enumerate(same):
                if i%2==0:
                    print("Blue", s)
                    print("Red", s)
                    if i==0:
                        for a in setA:
                            if a not in setB:
                                print("Red", a)
                else:
                    print("Red", s)
                    print("Blue", s)

        elif N>0:
            print("Yes")
            for a in A:
                print("Red", a)
        elif M>0:
            print("Yes")
            for b in B:
                print("Blue", b)
        else:
            print("Yes")
    except:
        print("No")
0