結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー chankei271828chankei271828
提出日時 2023-05-19 22:20:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,869 ms / 2,000 ms
コード長 1,601 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 37,512 KB
最終ジャッジ日時 2024-12-21 03:05:31
合計ジャッジ時間 41,945 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 316 ms
10,880 KB
testcase_03 AC 248 ms
13,332 KB
testcase_04 AC 243 ms
13,108 KB
testcase_05 AC 238 ms
13,572 KB
testcase_06 AC 243 ms
13,412 KB
testcase_07 AC 212 ms
13,540 KB
testcase_08 AC 277 ms
24,864 KB
testcase_09 AC 270 ms
21,340 KB
testcase_10 AC 240 ms
24,752 KB
testcase_11 AC 344 ms
24,520 KB
testcase_12 AC 236 ms
24,972 KB
testcase_13 AC 404 ms
24,484 KB
testcase_14 AC 295 ms
23,072 KB
testcase_15 AC 220 ms
23,500 KB
testcase_16 AC 333 ms
21,192 KB
testcase_17 AC 278 ms
24,384 KB
testcase_18 AC 429 ms
28,692 KB
testcase_19 AC 472 ms
33,516 KB
testcase_20 AC 443 ms
37,512 KB
testcase_21 AC 448 ms
36,596 KB
testcase_22 AC 446 ms
29,552 KB
testcase_23 AC 430 ms
36,400 KB
testcase_24 AC 445 ms
28,688 KB
testcase_25 AC 449 ms
28,972 KB
testcase_26 AC 439 ms
37,352 KB
testcase_27 AC 443 ms
29,532 KB
testcase_28 AC 438 ms
30,768 KB
testcase_29 AC 467 ms
30,492 KB
testcase_30 AC 462 ms
28,984 KB
testcase_31 AC 435 ms
36,408 KB
testcase_32 AC 424 ms
36,476 KB
testcase_33 AC 446 ms
34,536 KB
testcase_34 AC 457 ms
34,036 KB
testcase_35 AC 474 ms
32,872 KB
testcase_36 AC 464 ms
37,428 KB
testcase_37 AC 457 ms
31,936 KB
testcase_38 AC 1,470 ms
10,752 KB
testcase_39 AC 1,869 ms
10,752 KB
testcase_40 AC 345 ms
11,008 KB
testcase_41 AC 414 ms
11,136 KB
testcase_42 AC 491 ms
33,156 KB
testcase_43 AC 478 ms
33,076 KB
testcase_44 AC 435 ms
34,048 KB
testcase_45 AC 449 ms
33,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
    N,M=map(int,input().split())
    A=list(map(int,input().split()))
    B=list(map(int,input().split()))
    s_A=set(A)
    s_B=set(B)
    if  not s_A:
        print('Yes')
        for t in s_B:
            print('Blue',t)
        continue
    if not s_B:
        print('Yes')
        for t in s_A:
            print('Red',t)
        continue
    for t in A:
        if t in s_B:
            break
    else:
        print('No')
        continue
    print('Yes')
    cnt=0
    ans=[]
    for t in A:
        if t in s_B:
            s_A.remove(t)
            s_B.remove(t)
            cnt+=1
            ans.append(t)
    if not s_A:
        for t in s_B:
            print('Blue',t)
        for i in range(cnt):
            if i%2==0:
                print('Blue',ans[i])
                print('Red',ans[i])
            else:
                print('Red',ans[i])
                print('Blue',ans[i])
    elif not s_B:
        for t in s_A:
            print('Red',t)
        for i in range(cnt):
            if i%2==0:
                print('Red',ans[i])
                print('Blue',ans[i])
            else:
                print('Blue',ans[i])
                print('Red',ans[i])
    else:
        for t in s_A:
            print('Red',t)
        print('Red',ans[0])
        print('Blue',ans[0])
        for t in s_B:
            print('Blue',t)
        for i in range(1,cnt):
            if i%2==1:
                print('Blue',ans[i])
                print('Red',ans[i])
            else:
                print('Red',ans[i])
                print('Blue',ans[i])
0