結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー 👑 rin204rin204
提出日時 2024-05-04 16:07:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,936 KB
最終ジャッジ日時 2024-11-26 04:36:52
合計ジャッジ時間 31,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 256 ms
77,568 KB
testcase_03 AC 186 ms
79,160 KB
testcase_04 AC 171 ms
78,976 KB
testcase_05 AC 160 ms
79,616 KB
testcase_06 AC 157 ms
78,464 KB
testcase_07 AC 138 ms
78,464 KB
testcase_08 AC 169 ms
96,256 KB
testcase_09 AC 172 ms
93,568 KB
testcase_10 AC 174 ms
94,732 KB
testcase_11 AC 184 ms
98,484 KB
testcase_12 AC 159 ms
100,572 KB
testcase_13 AC 210 ms
99,044 KB
testcase_14 AC 172 ms
96,640 KB
testcase_15 AC 147 ms
94,092 KB
testcase_16 AC 183 ms
89,984 KB
testcase_17 AC 190 ms
94,208 KB
testcase_18 AC 191 ms
108,160 KB
testcase_19 AC 228 ms
116,744 KB
testcase_20 AC 202 ms
117,876 KB
testcase_21 AC 213 ms
119,604 KB
testcase_22 AC 188 ms
110,592 KB
testcase_23 AC 222 ms
118,396 KB
testcase_24 AC 210 ms
110,848 KB
testcase_25 AC 209 ms
110,208 KB
testcase_26 AC 200 ms
115,748 KB
testcase_27 AC 203 ms
110,208 KB
testcase_28 AC 207 ms
113,056 KB
testcase_29 AC 216 ms
109,924 KB
testcase_30 AC 228 ms
108,860 KB
testcase_31 AC 201 ms
118,184 KB
testcase_32 AC 209 ms
118,508 KB
testcase_33 AC 184 ms
119,936 KB
testcase_34 AC 203 ms
118,016 KB
testcase_35 AC 227 ms
112,492 KB
testcase_36 AC 211 ms
115,092 KB
testcase_37 AC 210 ms
109,312 KB
testcase_38 AC 458 ms
76,672 KB
testcase_39 AC 568 ms
77,824 KB
testcase_40 AC 198 ms
77,440 KB
testcase_41 AC 212 ms
76,796 KB
testcase_42 AC 220 ms
116,352 KB
testcase_43 AC 223 ms
116,356 KB
testcase_44 AC 188 ms
117,040 KB
testcase_45 AC 191 ms
117,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    if not A:
        print("Yes")
        for b in B:
            print("Blue", b)
        return
    if not B:
        print("Yes")
        for a in A:
            print("Red", a)
        return

    same = A & B
    if len(same) == 0:
        print("No")
        return
    print("Yes")
    A -= same
    B -= same
    p = same.pop()
    for a in A:
        print("Red", a)
    print("Red", p)
    print("Blue", p)
    for b in B:
        print("Blue", b)

    r = "Red"
    b = "Blue"
    for p in same:
        print(b, p)
        print(r, p)
        r, b = b, r


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