結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-19 22:37:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 951 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 37,640 KB
最終ジャッジ日時 2024-06-01 01:29:08
合計ジャッジ時間 30,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
10,752 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 208 ms
20,884 KB
testcase_09 WA -
testcase_10 AC 193 ms
22,280 KB
testcase_11 AC 248 ms
22,180 KB
testcase_12 AC 179 ms
20,588 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 303 ms
28,548 KB
testcase_19 AC 348 ms
33,320 KB
testcase_20 AC 320 ms
37,640 KB
testcase_21 AC 333 ms
36,380 KB
testcase_22 AC 306 ms
29,732 KB
testcase_23 AC 325 ms
36,620 KB
testcase_24 AC 318 ms
28,800 KB
testcase_25 AC 317 ms
28,912 KB
testcase_26 AC 315 ms
37,260 KB
testcase_27 AC 315 ms
29,652 KB
testcase_28 AC 324 ms
31,188 KB
testcase_29 AC 320 ms
30,420 KB
testcase_30 AC 325 ms
28,656 KB
testcase_31 AC 318 ms
36,444 KB
testcase_32 AC 328 ms
36,368 KB
testcase_33 AC 293 ms
34,360 KB
testcase_34 AC 320 ms
33,820 KB
testcase_35 AC 338 ms
32,504 KB
testcase_36 AC 331 ms
37,520 KB
testcase_37 AC 328 ms
31,716 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 281 ms
11,136 KB
testcase_42 AC 346 ms
32,868 KB
testcase_43 AC 341 ms
32,864 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n,m = map(int,input().split())

    A = list(map(int,input().split()))
    B = list(map(int,input().split()))

    sA = set(A)
    sB = set(B)
    sames = []
    for b in B:
        if b in sA:
            sames.append(b)

    
    if n == 0 or m == 0:
        for a in A:
            print(f"Red {a}")

        for b in B:
            print(f"Blue {b}")
        
        return

    
    if sames == []:
        print("No")
        return

    
    print("Yes")

    for a in A:
        if a not in sB:
            print(f"Red {a}")
        
    l = sames.pop()

    print(f"Red {l}")
    print(f"Blue {l}")

    for b in B:
        if b not in sA:
            print(f"Blue {b}")
    
    for i,l in enumerate(sames):

        if i%2:
            print(f"Red {l}")
            print(f"Blue {l}")
        else:
            print(f"Blue {l}")
            print(f"Red {l}")

    return 


t = int(input())
for _ in range(t):
    solve()
0