結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー chankei271828chankei271828
提出日時 2023-05-19 21:59:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 802 ms / 2,000 ms
コード長 1,601 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 132,700 KB
最終ジャッジ日時 2024-12-21 02:31:42
合計ジャッジ時間 34,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,580 KB
testcase_01 AC 48 ms
52,224 KB
testcase_02 AC 357 ms
79,488 KB
testcase_03 AC 217 ms
80,316 KB
testcase_04 AC 207 ms
80,000 KB
testcase_05 AC 223 ms
80,352 KB
testcase_06 AC 233 ms
80,080 KB
testcase_07 AC 189 ms
79,744 KB
testcase_08 AC 242 ms
96,440 KB
testcase_09 AC 221 ms
97,596 KB
testcase_10 AC 193 ms
104,372 KB
testcase_11 AC 263 ms
100,632 KB
testcase_12 AC 219 ms
107,920 KB
testcase_13 AC 292 ms
104,212 KB
testcase_14 AC 233 ms
102,016 KB
testcase_15 AC 216 ms
100,992 KB
testcase_16 AC 256 ms
94,336 KB
testcase_17 AC 243 ms
97,168 KB
testcase_18 AC 245 ms
116,524 KB
testcase_19 AC 312 ms
127,928 KB
testcase_20 AC 263 ms
132,376 KB
testcase_21 AC 291 ms
132,700 KB
testcase_22 AC 264 ms
114,392 KB
testcase_23 AC 289 ms
132,572 KB
testcase_24 AC 283 ms
116,212 KB
testcase_25 AC 279 ms
117,084 KB
testcase_26 AC 258 ms
130,856 KB
testcase_27 AC 277 ms
114,436 KB
testcase_28 AC 280 ms
127,428 KB
testcase_29 AC 277 ms
125,200 KB
testcase_30 AC 292 ms
123,240 KB
testcase_31 AC 265 ms
132,216 KB
testcase_32 AC 258 ms
132,168 KB
testcase_33 AC 243 ms
107,576 KB
testcase_34 AC 282 ms
110,364 KB
testcase_35 AC 289 ms
126,496 KB
testcase_36 AC 280 ms
128,048 KB
testcase_37 AC 283 ms
121,620 KB
testcase_38 AC 564 ms
77,312 KB
testcase_39 AC 802 ms
79,844 KB
testcase_40 AC 245 ms
77,184 KB
testcase_41 AC 291 ms
78,880 KB
testcase_42 AC 285 ms
127,560 KB
testcase_43 AC 283 ms
127,824 KB
testcase_44 AC 240 ms
130,284 KB
testcase_45 AC 265 ms
130,416 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()))
    s_A=set(A)
    s_B=set(B)
    if  not s_A:
        print('Yes')
        for t in s_B:
            print('Blue',t)
        continue
    if not s_B:
        print('Yes')
        for t in s_A:
            print('Red',t)
        continue
    for t in A:
        if t in s_B:
            break
    else:
        print('No')
        continue
    print('Yes')
    cnt=0
    ans=[]
    for t in A:
        if t in s_B:
            s_A.remove(t)
            s_B.remove(t)
            cnt+=1
            ans.append(t)
    if not s_A:
        for t in s_B:
            print('Blue',t)
        for i in range(cnt):
            if i%2==0:
                print('Blue',ans[i])
                print('Red',ans[i])
            else:
                print('Red',ans[i])
                print('Blue',ans[i])
    elif not s_B:
        for t in s_A:
            print('Red',t)
        for i in range(cnt):
            if i%2==0:
                print('Red',ans[i])
                print('Blue',ans[i])
            else:
                print('Blue',ans[i])
                print('Red',ans[i])
    else:
        for t in s_A:
            print('Red',t)
        print('Red',ans[0])
        print('Blue',ans[0])
        for t in s_B:
            print('Blue',t)
        for i in range(1,cnt):
            if i%2==1:
                print('Blue',ans[i])
                print('Red',ans[i])
            else:
                print('Red',ans[i])
                print('Blue',ans[i])
0