結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー miya145592miya145592
提出日時 2023-05-19 23:33:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 1,250 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 144,240 KB
最終ジャッジ日時 2024-06-01 01:54:25
合計ジャッジ時間 30,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,824 KB
testcase_01 AC 38 ms
53,632 KB
testcase_02 AC 253 ms
80,744 KB
testcase_03 AC 175 ms
80,524 KB
testcase_04 AC 174 ms
80,768 KB
testcase_05 AC 185 ms
81,736 KB
testcase_06 AC 195 ms
81,304 KB
testcase_07 AC 163 ms
80,244 KB
testcase_08 AC 208 ms
101,292 KB
testcase_09 AC 194 ms
93,172 KB
testcase_10 AC 171 ms
100,664 KB
testcase_11 AC 210 ms
98,816 KB
testcase_12 AC 199 ms
115,540 KB
testcase_13 AC 243 ms
104,084 KB
testcase_14 AC 196 ms
91,708 KB
testcase_15 AC 192 ms
99,204 KB
testcase_16 AC 213 ms
93,500 KB
testcase_17 AC 220 ms
97,084 KB
testcase_18 AC 238 ms
120,488 KB
testcase_19 AC 261 ms
128,680 KB
testcase_20 AC 242 ms
144,240 KB
testcase_21 AC 255 ms
143,152 KB
testcase_22 AC 248 ms
117,656 KB
testcase_23 AC 256 ms
144,232 KB
testcase_24 AC 260 ms
116,452 KB
testcase_25 AC 258 ms
119,276 KB
testcase_26 AC 242 ms
142,752 KB
testcase_27 AC 257 ms
116,516 KB
testcase_28 AC 254 ms
136,652 KB
testcase_29 AC 255 ms
134,552 KB
testcase_30 AC 262 ms
122,704 KB
testcase_31 AC 239 ms
144,148 KB
testcase_32 AC 240 ms
143,984 KB
testcase_33 AC 221 ms
107,832 KB
testcase_34 AC 257 ms
110,080 KB
testcase_35 AC 258 ms
127,524 KB
testcase_36 AC 256 ms
137,012 KB
testcase_37 AC 272 ms
125,340 KB
testcase_38 AC 394 ms
110,500 KB
testcase_39 AC 469 ms
112,960 KB
testcase_40 AC 183 ms
78,852 KB
testcase_41 AC 220 ms
79,632 KB
testcase_42 AC 240 ms
127,064 KB
testcase_43 AC 240 ms
127,332 KB
testcase_44 AC 174 ms
101,776 KB
testcase_45 AC 174 ms
101,968 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):
    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")
0