結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 297 ms
11,008 KB
testcase_03 AC 242 ms
13,324 KB
testcase_04 AC 231 ms
13,112 KB
testcase_05 AC 225 ms
13,448 KB
testcase_06 AC 235 ms
13,408 KB
testcase_07 AC 198 ms
13,668 KB
testcase_08 AC 264 ms
24,936 KB
testcase_09 AC 267 ms
21,180 KB
testcase_10 AC 232 ms
24,752 KB
testcase_11 AC 324 ms
24,388 KB
testcase_12 AC 232 ms
24,972 KB
testcase_13 AC 382 ms
24,356 KB
testcase_14 AC 273 ms
23,056 KB
testcase_15 AC 215 ms
23,372 KB
testcase_16 AC 319 ms
21,064 KB
testcase_17 AC 264 ms
24,364 KB
testcase_18 AC 409 ms
28,804 KB
testcase_19 AC 450 ms
33,432 KB
testcase_20 AC 417 ms
37,512 KB
testcase_21 AC 420 ms
36,600 KB
testcase_22 AC 411 ms
29,552 KB
testcase_23 AC 418 ms
36,408 KB
testcase_24 AC 434 ms
29,380 KB
testcase_25 AC 419 ms
29,088 KB
testcase_26 AC 412 ms
37,348 KB
testcase_27 AC 418 ms
29,532 KB
testcase_28 AC 412 ms
30,716 KB
testcase_29 AC 406 ms
30,588 KB
testcase_30 AC 446 ms
29,036 KB
testcase_31 AC 403 ms
36,388 KB
testcase_32 AC 414 ms
36,588 KB
testcase_33 AC 416 ms
34,644 KB
testcase_34 AC 433 ms
34,228 KB
testcase_35 AC 450 ms
32,912 KB
testcase_36 AC 427 ms
37,108 KB
testcase_37 AC 421 ms
31,936 KB
testcase_38 AC 1,436 ms
10,880 KB
testcase_39 AC 1,588 ms
10,880 KB
testcase_40 AC 334 ms
11,136 KB
testcase_41 AC 392 ms
11,136 KB
testcase_42 AC 447 ms
33,076 KB
testcase_43 AC 452 ms
33,204 KB
testcase_44 AC 407 ms
34,036 KB
testcase_45 AC 407 ms
34,056 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