結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー miya145592miya145592
提出日時 2023-05-19 23:18:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 761 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 144,332 KB
最終ジャッジ日時 2024-12-21 04:01:53
合計ジャッジ時間 34,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 300 ms
78,840 KB
testcase_03 AC 206 ms
80,280 KB
testcase_04 AC 194 ms
79,488 KB
testcase_05 AC 203 ms
79,948 KB
testcase_06 AC 209 ms
80,904 KB
testcase_07 AC 177 ms
79,232 KB
testcase_08 AC 230 ms
96,504 KB
testcase_09 AC 225 ms
98,176 KB
testcase_10 AC 208 ms
107,800 KB
testcase_11 AC 242 ms
94,324 KB
testcase_12 AC 204 ms
108,316 KB
testcase_13 AC 284 ms
107,376 KB
testcase_14 AC 221 ms
102,272 KB
testcase_15 AC 208 ms
98,224 KB
testcase_16 AC 243 ms
95,104 KB
testcase_17 AC 245 ms
99,436 KB
testcase_18 AC 271 ms
120,300 KB
testcase_19 AC 272 ms
128,292 KB
testcase_20 AC 263 ms
144,332 KB
testcase_21 AC 281 ms
141,852 KB
testcase_22 AC 266 ms
117,436 KB
testcase_23 AC 280 ms
143,084 KB
testcase_24 AC 285 ms
116,540 KB
testcase_25 AC 295 ms
119,032 KB
testcase_26 AC 262 ms
142,772 KB
testcase_27 AC 278 ms
116,772 KB
testcase_28 AC 292 ms
137,028 KB
testcase_29 AC 288 ms
134,424 KB
testcase_30 AC 284 ms
122,568 KB
testcase_31 AC 271 ms
143,356 KB
testcase_32 AC 254 ms
144,100 KB
testcase_33 AC 240 ms
107,800 KB
testcase_34 AC 256 ms
110,192 KB
testcase_35 AC 270 ms
127,160 KB
testcase_36 AC 254 ms
136,096 KB
testcase_37 AC 267 ms
125,008 KB
testcase_38 AC 556 ms
77,184 KB
testcase_39 AC 761 ms
81,184 KB
testcase_40 AC 211 ms
77,184 KB
testcase_41 AC 257 ms
77,888 KB
testcase_42 AC 263 ms
127,192 KB
testcase_43 AC 252 ms
127,320 KB
testcase_44 AC 199 ms
101,760 KB
testcase_45 AC 188 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)
    elif M>0:
        print("Yes")
        for b in B:
            print("Blue", b)
    else:
        print("Yes")
0