結果

問題 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
コンパイル時間 275 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 37,644 KB
最終ジャッジ日時 2024-12-21 03:21:36
合計ジャッジ時間 33,384 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 33 ms
10,880 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 230 ms
20,824 KB
testcase_09 WA -
testcase_10 AC 206 ms
22,528 KB
testcase_11 AC 277 ms
22,432 KB
testcase_12 AC 185 ms
20,972 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 322 ms
28,576 KB
testcase_19 AC 399 ms
33,400 KB
testcase_20 AC 330 ms
37,644 KB
testcase_21 AC 332 ms
36,572 KB
testcase_22 AC 308 ms
28,824 KB
testcase_23 AC 340 ms
36,440 KB
testcase_24 AC 335 ms
29,716 KB
testcase_25 AC 327 ms
28,968 KB
testcase_26 AC 322 ms
37,256 KB
testcase_27 AC 328 ms
29,580 KB
testcase_28 AC 327 ms
31,280 KB
testcase_29 AC 321 ms
30,380 KB
testcase_30 AC 334 ms
28,732 KB
testcase_31 AC 324 ms
36,376 KB
testcase_32 AC 333 ms
36,620 KB
testcase_33 AC 320 ms
33,936 KB
testcase_34 AC 330 ms
33,816 KB
testcase_35 AC 350 ms
32,444 KB
testcase_36 AC 350 ms
36,616 KB
testcase_37 AC 338 ms
32,096 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 303 ms
11,136 KB
testcase_42 AC 349 ms
32,952 KB
testcase_43 AC 351 ms
33,128 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