結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー miya145592miya145592
提出日時 2023-05-19 23:08:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 705 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 144,472 KB
最終ジャッジ日時 2024-06-01 01:44:05
合計ジャッジ時間 31,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 289 ms
78,712 KB
testcase_03 AC 194 ms
80,664 KB
testcase_04 AC 180 ms
79,360 KB
testcase_05 AC 190 ms
80,332 KB
testcase_06 AC 188 ms
80,772 KB
testcase_07 AC 160 ms
79,104 KB
testcase_08 AC 212 ms
97,152 KB
testcase_09 AC 199 ms
98,156 KB
testcase_10 AC 188 ms
108,004 KB
testcase_11 AC 220 ms
94,072 KB
testcase_12 AC 189 ms
107,956 KB
testcase_13 AC 267 ms
107,592 KB
testcase_14 AC 201 ms
102,292 KB
testcase_15 AC 188 ms
98,004 KB
testcase_16 AC 218 ms
94,976 KB
testcase_17 AC 223 ms
99,936 KB
testcase_18 AC 236 ms
120,196 KB
testcase_19 AC 261 ms
128,480 KB
testcase_20 AC 246 ms
144,472 KB
testcase_21 AC 257 ms
141,980 KB
testcase_22 AC 240 ms
117,436 KB
testcase_23 AC 262 ms
142,964 KB
testcase_24 AC 263 ms
116,576 KB
testcase_25 AC 265 ms
119,404 KB
testcase_26 AC 239 ms
142,648 KB
testcase_27 AC 265 ms
116,276 KB
testcase_28 AC 254 ms
136,804 KB
testcase_29 AC 259 ms
134,304 KB
testcase_30 AC 266 ms
122,656 KB
testcase_31 AC 237 ms
143,116 KB
testcase_32 AC 239 ms
144,036 KB
testcase_33 AC 225 ms
107,988 KB
testcase_34 AC 255 ms
110,168 KB
testcase_35 AC 256 ms
126,588 KB
testcase_36 AC 250 ms
135,988 KB
testcase_37 AC 265 ms
125,404 KB
testcase_38 AC 502 ms
77,312 KB
testcase_39 AC 705 ms
81,320 KB
testcase_40 AC 200 ms
76,800 KB
testcase_41 AC 242 ms
77,892 KB
testcase_42 AC 238 ms
127,196 KB
testcase_43 AC 239 ms
127,584 KB
testcase_44 AC 174 ms
102,272 KB
testcase_45 AC 173 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))
    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)
    else:
        print("Yes")
        for b in B:
            print("Blue", b)
0