結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 276 ms
78,712 KB
testcase_03 AC 187 ms
80,404 KB
testcase_04 AC 179 ms
79,104 KB
testcase_05 AC 187 ms
79,788 KB
testcase_06 AC 189 ms
80,512 KB
testcase_07 AC 156 ms
79,584 KB
testcase_08 AC 210 ms
96,752 KB
testcase_09 AC 204 ms
98,176 KB
testcase_10 AC 188 ms
107,868 KB
testcase_11 AC 209 ms
93,872 KB
testcase_12 AC 189 ms
107,944 KB
testcase_13 AC 263 ms
107,352 KB
testcase_14 AC 194 ms
102,016 KB
testcase_15 AC 184 ms
98,228 KB
testcase_16 AC 218 ms
94,748 KB
testcase_17 AC 224 ms
99,748 KB
testcase_18 AC 230 ms
120,636 KB
testcase_19 AC 245 ms
128,740 KB
testcase_20 AC 236 ms
143,956 KB
testcase_21 AC 248 ms
141,844 KB
testcase_22 AC 237 ms
117,440 KB
testcase_23 AC 247 ms
142,948 KB
testcase_24 AC 264 ms
116,496 KB
testcase_25 AC 257 ms
119,124 KB
testcase_26 AC 232 ms
142,712 KB
testcase_27 AC 253 ms
116,852 KB
testcase_28 AC 249 ms
136,660 KB
testcase_29 AC 246 ms
134,652 KB
testcase_30 AC 255 ms
122,648 KB
testcase_31 AC 233 ms
143,392 KB
testcase_32 AC 236 ms
144,096 KB
testcase_33 AC 220 ms
107,464 KB
testcase_34 AC 251 ms
110,080 KB
testcase_35 AC 253 ms
127,036 KB
testcase_36 AC 250 ms
135,844 KB
testcase_37 AC 258 ms
125,080 KB
testcase_38 AC 503 ms
77,488 KB
testcase_39 AC 702 ms
80,672 KB
testcase_40 AC 190 ms
77,476 KB
testcase_41 AC 236 ms
77,756 KB
testcase_42 AC 250 ms
127,520 KB
testcase_43 AC 239 ms
127,512 KB
testcase_44 AC 173 ms
101,820 KB
testcase_45 AC 175 ms
102,056 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