結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー miya145592miya145592
提出日時 2023-05-19 23:08:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 731 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 144,340 KB
最終ジャッジ日時 2024-12-21 03:49:54
合計ジャッジ時間 33,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 45 ms
52,352 KB
testcase_02 AC 301 ms
79,164 KB
testcase_03 AC 208 ms
80,660 KB
testcase_04 AC 203 ms
78,848 KB
testcase_05 AC 210 ms
79,940 KB
testcase_06 AC 201 ms
80,636 KB
testcase_07 AC 179 ms
79,232 KB
testcase_08 AC 233 ms
97,404 KB
testcase_09 AC 220 ms
98,048 KB
testcase_10 AC 206 ms
108,064 KB
testcase_11 AC 237 ms
93,740 KB
testcase_12 AC 217 ms
108,172 KB
testcase_13 AC 284 ms
107,592 KB
testcase_14 AC 220 ms
101,760 KB
testcase_15 AC 207 ms
98,480 KB
testcase_16 AC 236 ms
94,848 KB
testcase_17 AC 253 ms
99,424 KB
testcase_18 AC 258 ms
120,328 KB
testcase_19 AC 270 ms
128,172 KB
testcase_20 AC 275 ms
144,340 KB
testcase_21 AC 288 ms
141,968 KB
testcase_22 AC 256 ms
117,808 KB
testcase_23 AC 285 ms
143,340 KB
testcase_24 AC 290 ms
116,544 KB
testcase_25 AC 284 ms
119,008 KB
testcase_26 AC 257 ms
142,384 KB
testcase_27 AC 285 ms
116,660 KB
testcase_28 AC 280 ms
136,660 KB
testcase_29 AC 273 ms
134,820 KB
testcase_30 AC 286 ms
122,572 KB
testcase_31 AC 261 ms
143,112 KB
testcase_32 AC 267 ms
144,104 KB
testcase_33 AC 245 ms
107,600 KB
testcase_34 AC 277 ms
110,020 KB
testcase_35 AC 282 ms
127,100 KB
testcase_36 AC 279 ms
136,032 KB
testcase_37 AC 295 ms
124,896 KB
testcase_38 AC 544 ms
76,928 KB
testcase_39 AC 731 ms
80,596 KB
testcase_40 AC 213 ms
77,056 KB
testcase_41 AC 263 ms
78,784 KB
testcase_42 AC 260 ms
127,208 KB
testcase_43 AC 260 ms
127,204 KB
testcase_44 AC 194 ms
102,016 KB
testcase_45 AC 192 ms
101,760 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