結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー koarakko5555koarakko5555
提出日時 2023-05-20 00:09:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 743 ms / 2,000 ms
コード長 1,750 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 144,416 KB
最終ジャッジ日時 2024-06-01 01:56:58
合計ジャッジ時間 33,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,192 KB
testcase_01 AC 44 ms
55,352 KB
testcase_02 AC 378 ms
78,964 KB
testcase_03 AC 231 ms
81,940 KB
testcase_04 AC 211 ms
82,424 KB
testcase_05 AC 237 ms
82,744 KB
testcase_06 AC 235 ms
84,204 KB
testcase_07 AC 191 ms
81,436 KB
testcase_08 AC 265 ms
100,688 KB
testcase_09 AC 236 ms
102,484 KB
testcase_10 AC 217 ms
112,684 KB
testcase_11 AC 270 ms
103,572 KB
testcase_12 AC 250 ms
116,012 KB
testcase_13 AC 296 ms
102,320 KB
testcase_14 AC 267 ms
106,112 KB
testcase_15 AC 219 ms
114,328 KB
testcase_16 AC 271 ms
96,060 KB
testcase_17 AC 268 ms
100,244 KB
testcase_18 AC 291 ms
129,572 KB
testcase_19 AC 312 ms
121,288 KB
testcase_20 AC 300 ms
144,116 KB
testcase_21 AC 317 ms
140,692 KB
testcase_22 AC 291 ms
125,660 KB
testcase_23 AC 316 ms
144,160 KB
testcase_24 AC 316 ms
116,756 KB
testcase_25 AC 325 ms
122,916 KB
testcase_26 AC 303 ms
144,116 KB
testcase_27 AC 327 ms
125,240 KB
testcase_28 AC 330 ms
141,540 KB
testcase_29 AC 309 ms
139,848 KB
testcase_30 AC 321 ms
118,080 KB
testcase_31 AC 297 ms
144,360 KB
testcase_32 AC 300 ms
144,416 KB
testcase_33 AC 299 ms
138,544 KB
testcase_34 AC 341 ms
136,152 KB
testcase_35 AC 322 ms
119,420 KB
testcase_36 AC 306 ms
136,048 KB
testcase_37 AC 322 ms
132,160 KB
testcase_38 AC 674 ms
78,836 KB
testcase_39 AC 743 ms
78,852 KB
testcase_40 AC 245 ms
78,104 KB
testcase_41 AC 283 ms
79,420 KB
testcase_42 AC 284 ms
114,852 KB
testcase_43 AC 292 ms
114,972 KB
testcase_44 AC 235 ms
139,276 KB
testcase_45 AC 234 ms
138,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

T = int(input())
for _ in range(T):
    N, M = map(int, input().split())
    try:
        A = list(map(int, input().split()))
        B = list(map(int, input().split()))
    except:
        if N==0:
            A = []
        if M==0:
            B = []

    #辞書型の生成
    AB = collections.Counter(A+B)
    AB_keys = list(AB.keys())
    AB_values = list(AB.values())

    #何もない
    if N==0 and M==0:
        print("Yes")
        continue

    #Noのパターン
    if max(AB_values)==1 and N>0 and M>0:
        print("No")
        continue

    #Yesのパターン
    print("Yes")
    #Redのみ
    if M==0:
        for i in range(N):
            print("Red", A[i])
    
    #Blueのみ
    if N==0:
        for i in range(M):
            print("Blue", B[i])

    #大本命
    if N>0 and M>0:
        #Redで1つしかないやつを表示する。
        for i in range(N):
            if AB[A[i]]==1:
                print("Red", A[i])
        #1回目の共通項を表示する
        cnt = 0
        for i in range(N):
            if AB[A[i]]>1:
                print("Red", A[i])
                print("Blue", A[i])
                cnt += 1
                save_point = i
                break
            
        #Blueで1つしかないやつを表示する。
        for i in range(M):
            if AB[B[i]]==1:
                print("Blue", B[i])

        #2回目の共通項
        for i in range(save_point+1, N):
            if AB[A[i]]>1 and cnt%2==0:
                print("Red", A[i])
                print("Blue", A[i])
                cnt += 1
            elif AB[A[i]]>1 and cnt%2==1:
                print("Blue", A[i])
                print("Red", A[i])
                cnt += 1
0