結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 49 ms
52,352 KB
testcase_02 AC 362 ms
79,488 KB
testcase_03 AC 212 ms
80,308 KB
testcase_04 AC 222 ms
80,128 KB
testcase_05 AC 212 ms
80,212 KB
testcase_06 AC 209 ms
80,196 KB
testcase_07 AC 183 ms
79,616 KB
testcase_08 AC 239 ms
96,964 KB
testcase_09 AC 229 ms
97,280 KB
testcase_10 AC 210 ms
104,528 KB
testcase_11 AC 277 ms
100,760 KB
testcase_12 AC 206 ms
107,796 KB
testcase_13 AC 272 ms
104,208 KB
testcase_14 AC 239 ms
102,200 KB
testcase_15 AC 217 ms
100,868 KB
testcase_16 AC 252 ms
94,632 KB
testcase_17 AC 233 ms
97,024 KB
testcase_18 AC 239 ms
116,900 KB
testcase_19 AC 277 ms
127,884 KB
testcase_20 AC 250 ms
132,672 KB
testcase_21 AC 287 ms
132,744 KB
testcase_22 AC 235 ms
114,512 KB
testcase_23 AC 265 ms
132,944 KB
testcase_24 AC 268 ms
116,476 KB
testcase_25 AC 290 ms
117,216 KB
testcase_26 AC 262 ms
130,848 KB
testcase_27 AC 270 ms
114,544 KB
testcase_28 AC 271 ms
127,936 KB
testcase_29 AC 257 ms
125,456 KB
testcase_30 AC 302 ms
123,168 KB
testcase_31 AC 259 ms
132,464 KB
testcase_32 AC 246 ms
132,564 KB
testcase_33 AC 235 ms
107,592 KB
testcase_34 AC 262 ms
110,272 KB
testcase_35 AC 286 ms
126,688 KB
testcase_36 AC 266 ms
128,160 KB
testcase_37 AC 280 ms
121,416 KB
testcase_38 AC 614 ms
77,592 KB
testcase_39 AC 813 ms
79,704 KB
testcase_40 AC 227 ms
77,312 KB
testcase_41 AC 266 ms
78,580 KB
testcase_42 AC 260 ms
128,648 KB
testcase_43 AC 289 ms
128,592 KB
testcase_44 AC 242 ms
130,756 KB
testcase_45 AC 229 ms
130,388 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 and t in s_A:
            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])
print('\n')
0