結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー koarakko5555koarakko5555
提出日時 2023-05-20 00:09:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 834 ms / 2,000 ms
コード長 1,750 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 144,532 KB
最終ジャッジ日時 2024-12-21 04:10:52
合計ジャッジ時間 37,178 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,760 KB
testcase_01 AC 48 ms
54,400 KB
testcase_02 AC 400 ms
78,704 KB
testcase_03 AC 241 ms
82,068 KB
testcase_04 AC 237 ms
82,208 KB
testcase_05 AC 256 ms
82,752 KB
testcase_06 AC 251 ms
83,724 KB
testcase_07 AC 210 ms
81,576 KB
testcase_08 AC 304 ms
100,908 KB
testcase_09 AC 278 ms
102,804 KB
testcase_10 AC 261 ms
112,732 KB
testcase_11 AC 323 ms
103,448 KB
testcase_12 AC 293 ms
116,104 KB
testcase_13 AC 340 ms
102,272 KB
testcase_14 AC 298 ms
105,856 KB
testcase_15 AC 236 ms
114,432 KB
testcase_16 AC 287 ms
95,936 KB
testcase_17 AC 320 ms
100,684 KB
testcase_18 AC 310 ms
129,492 KB
testcase_19 AC 325 ms
121,092 KB
testcase_20 AC 321 ms
144,524 KB
testcase_21 AC 328 ms
140,628 KB
testcase_22 AC 296 ms
126,020 KB
testcase_23 AC 343 ms
143,928 KB
testcase_24 AC 348 ms
116,536 KB
testcase_25 AC 332 ms
123,204 KB
testcase_26 AC 305 ms
143,976 KB
testcase_27 AC 372 ms
125,344 KB
testcase_28 AC 329 ms
141,412 KB
testcase_29 AC 341 ms
139,808 KB
testcase_30 AC 306 ms
118,256 KB
testcase_31 AC 316 ms
144,204 KB
testcase_32 AC 339 ms
144,532 KB
testcase_33 AC 334 ms
138,676 KB
testcase_34 AC 334 ms
135,928 KB
testcase_35 AC 340 ms
119,484 KB
testcase_36 AC 306 ms
135,884 KB
testcase_37 AC 358 ms
132,220 KB
testcase_38 AC 738 ms
79,232 KB
testcase_39 AC 834 ms
78,724 KB
testcase_40 AC 263 ms
78,208 KB
testcase_41 AC 348 ms
79,744 KB
testcase_42 AC 303 ms
114,884 KB
testcase_43 AC 285 ms
115,004 KB
testcase_44 AC 253 ms
139,272 KB
testcase_45 AC 257 ms
139,264 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