結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー titiatitia
提出日時 2023-05-19 22:34:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,441 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,064 KB
最終ジャッジ日時 2024-12-21 03:15:45
合計ジャッジ時間 49,376 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 411 ms
10,880 KB
testcase_03 AC 365 ms
13,540 KB
testcase_04 AC 346 ms
13,568 KB
testcase_05 AC 344 ms
13,704 KB
testcase_06 AC 348 ms
14,068 KB
testcase_07 AC 299 ms
13,852 KB
testcase_08 AC 436 ms
24,628 KB
testcase_09 AC 411 ms
21,260 KB
testcase_10 AC 334 ms
32,612 KB
testcase_11 AC 542 ms
32,340 KB
testcase_12 AC 363 ms
25,752 KB
testcase_13 AC 596 ms
27,720 KB
testcase_14 AC 442 ms
30,052 KB
testcase_15 AC 302 ms
22,376 KB
testcase_16 AC 489 ms
25,284 KB
testcase_17 AC 434 ms
31,392 KB
testcase_18 AC 670 ms
45,496 KB
testcase_19 AC 806 ms
47,004 KB
testcase_20 AC 599 ms
48,344 KB
testcase_21 AC 691 ms
48,032 KB
testcase_22 AC 664 ms
45,792 KB
testcase_23 AC 641 ms
48,176 KB
testcase_24 AC 743 ms
44,992 KB
testcase_25 AC 713 ms
45,276 KB
testcase_26 AC 604 ms
43,072 KB
testcase_27 AC 715 ms
45,460 KB
testcase_28 AC 634 ms
42,972 KB
testcase_29 AC 631 ms
43,908 KB
testcase_30 AC 800 ms
44,832 KB
testcase_31 AC 611 ms
48,348 KB
testcase_32 AC 619 ms
48,376 KB
testcase_33 AC 717 ms
49,064 KB
testcase_34 AC 736 ms
44,324 KB
testcase_35 AC 799 ms
47,144 KB
testcase_36 AC 654 ms
42,968 KB
testcase_37 AC 722 ms
45,048 KB
testcase_38 AC 1,222 ms
10,752 KB
testcase_39 AC 1,441 ms
10,752 KB
testcase_40 AC 528 ms
11,392 KB
testcase_41 AC 691 ms
11,136 KB
testcase_42 AC 838 ms
47,120 KB
testcase_43 AC 848 ms
47,028 KB
testcase_44 AC 709 ms
46,088 KB
testcase_45 AC 626 ms
46,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import Counter

T=int(input())
for tests in range(T):
    N,M=map(int,input().split())
    A=list(map(int,input().split()))
    B=list(map(int,input().split()))

    CA=Counter(A)
    CB=Counter(B)

    SAME=[]

    for c in CA:
        if CA[c]>0 and CB[c]>0:
            MIN=min(CA[c],CB[c])
            SAME+=[c]*MIN
            CA[c]-=MIN
            CB[c]-=MIN


    if len(SAME)==0 and A and B:
        print("No")
        continue
    
    print("Yes")

    ANS=[]
    for i in range(len(SAME)):
        if i%2==0:
            ANS.append(("Red",SAME[i]))
            ANS.append(("Blue",SAME[i]))
        else:
            ANS.append(("Blue",SAME[i]))
            ANS.append(("Red",SAME[i]))

    X=[]
    for c in CA:
        for i in range(CA[c]):
            X.append(("Red",c))

    Y=[]
    for c in CB:
        for i in range(CB[c]):
            Y.append(("Blue",c))

    ANS=X+ANS[0:2]+Y+ANS[2:]

    for x,y in ANS:
        print(x,y)


    
            
    

    
0