結果

問題 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,332 ms / 2,000 ms
コード長 1,035 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 49,196 KB
最終ジャッジ日時 2024-06-01 01:24:38
合計ジャッジ時間 46,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 382 ms
10,880 KB
testcase_03 AC 353 ms
13,412 KB
testcase_04 AC 330 ms
13,568 KB
testcase_05 AC 331 ms
13,828 KB
testcase_06 AC 337 ms
13,944 KB
testcase_07 AC 287 ms
13,720 KB
testcase_08 AC 409 ms
24,628 KB
testcase_09 AC 394 ms
21,136 KB
testcase_10 AC 323 ms
32,616 KB
testcase_11 AC 506 ms
32,460 KB
testcase_12 AC 338 ms
25,752 KB
testcase_13 AC 549 ms
27,848 KB
testcase_14 AC 406 ms
29,952 KB
testcase_15 AC 291 ms
22,380 KB
testcase_16 AC 465 ms
24,456 KB
testcase_17 AC 399 ms
31,224 KB
testcase_18 AC 642 ms
45,484 KB
testcase_19 AC 775 ms
47,088 KB
testcase_20 AC 565 ms
48,340 KB
testcase_21 AC 611 ms
48,028 KB
testcase_22 AC 633 ms
45,740 KB
testcase_23 AC 588 ms
48,228 KB
testcase_24 AC 709 ms
44,992 KB
testcase_25 AC 668 ms
45,276 KB
testcase_26 AC 564 ms
43,200 KB
testcase_27 AC 667 ms
45,580 KB
testcase_28 AC 600 ms
42,940 KB
testcase_29 AC 599 ms
43,984 KB
testcase_30 AC 756 ms
44,864 KB
testcase_31 AC 568 ms
48,312 KB
testcase_32 AC 576 ms
48,376 KB
testcase_33 AC 674 ms
49,196 KB
testcase_34 AC 698 ms
44,328 KB
testcase_35 AC 745 ms
47,116 KB
testcase_36 AC 631 ms
42,972 KB
testcase_37 AC 650 ms
45,124 KB
testcase_38 AC 1,149 ms
10,752 KB
testcase_39 AC 1,332 ms
10,752 KB
testcase_40 AC 491 ms
11,264 KB
testcase_41 AC 656 ms
11,264 KB
testcase_42 AC 797 ms
46,952 KB
testcase_43 AC 791 ms
47,024 KB
testcase_44 AC 676 ms
45,988 KB
testcase_45 AC 558 ms
46,192 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