結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー koarakko5555koarakko5555
提出日時 2023-05-19 22:49:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,944 ms / 2,000 ms
コード長 1,627 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-06-01 01:34:03
合計ジャッジ時間 41,775 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 342 ms
11,008 KB
testcase_03 AC 275 ms
13,332 KB
testcase_04 AC 265 ms
13,196 KB
testcase_05 AC 258 ms
13,300 KB
testcase_06 AC 270 ms
13,160 KB
testcase_07 AC 222 ms
12,968 KB
testcase_08 AC 302 ms
27,644 KB
testcase_09 AC 302 ms
21,020 KB
testcase_10 AC 273 ms
27,020 KB
testcase_11 AC 380 ms
28,136 KB
testcase_12 AC 290 ms
27,256 KB
testcase_13 AC 439 ms
24,400 KB
testcase_14 AC 340 ms
25,596 KB
testcase_15 AC 248 ms
26,260 KB
testcase_16 AC 376 ms
23,956 KB
testcase_17 AC 318 ms
28,080 KB
testcase_18 AC 523 ms
39,384 KB
testcase_19 AC 537 ms
32,324 KB
testcase_20 AC 469 ms
41,476 KB
testcase_21 AC 481 ms
40,556 KB
testcase_22 AC 522 ms
40,584 KB
testcase_23 AC 476 ms
40,220 KB
testcase_24 AC 547 ms
33,960 KB
testcase_25 AC 544 ms
40,924 KB
testcase_26 AC 472 ms
41,052 KB
testcase_27 AC 544 ms
41,528 KB
testcase_28 AC 491 ms
40,784 KB
testcase_29 AC 494 ms
40,324 KB
testcase_30 AC 553 ms
32,064 KB
testcase_31 AC 470 ms
40,188 KB
testcase_32 AC 470 ms
40,288 KB
testcase_33 AC 555 ms
39,936 KB
testcase_34 AC 564 ms
39,608 KB
testcase_35 AC 535 ms
32,252 KB
testcase_36 AC 485 ms
32,700 KB
testcase_37 AC 542 ms
39,364 KB
testcase_38 AC 1,824 ms
10,880 KB
testcase_39 AC 1,944 ms
10,752 KB
testcase_40 AC 356 ms
11,136 KB
testcase_41 AC 440 ms
11,136 KB
testcase_42 AC 529 ms
32,500 KB
testcase_43 AC 525 ms
32,448 KB
testcase_44 AC 398 ms
39,368 KB
testcase_45 AC 401 ms
39,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

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()))

    AB = collections.Counter(A+B)
    AB_keys = list(AB.keys())
    AB_values = list(AB.values())
    #何もない
    if N==0 and M==0:
        print("Yes")
        continue

    #Noのパターン
    if max(AB_values)==1 and N>0 and M>0:
        print("No")
        continue

    #Yesのパターン
    print("Yes")
    #Redのみ
    if M==0:
        for i in range(N):
            print("Red", A[i])
    
    #Blueのみ
    if N==0:
        for i in range(M):
            print("Blue", B[i])

    #大本命
    if N>0 and M>0:
        #Redで1つしかないやつを表示する。
        for i in range(N):
            if AB[A[i]]==1:
                print("Red", A[i])
        #1回目の共通項を表示する
        cnt = 0
        for i in range(N):
            if AB[A[i]]==2:
                print("Red", A[i])
                print("Blue", A[i])
                cnt += 1
                save_point = i
                break
            
        #Blueで1つしかないやつを表示する。
        for i in range(M):
            if AB[B[i]]==1:
                print("Blue", B[i])

        #2回目の共通項
        for i in range(save_point+1, N):
            if AB[A[i]]==2 and cnt%2==0:
                print("Red", A[i])
                print("Blue", A[i])
                cnt += 1
            elif AB[A[i]]==2 and cnt%2==1:
                print("Blue", A[i])
                print("Red", A[i])
                cnt += 1
0