結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー rlangevinrlangevin
提出日時 2023-05-19 21:35:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 954 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 130,404 KB
最終ジャッジ日時 2024-12-20 03:43:17
合計ジャッジ時間 29,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,888 KB
testcase_01 AC 38 ms
53,324 KB
testcase_02 AC 207 ms
78,308 KB
testcase_03 AC 173 ms
78,976 KB
testcase_04 AC 164 ms
78,620 KB
testcase_05 AC 185 ms
79,412 KB
testcase_06 AC 170 ms
79,348 KB
testcase_07 AC 160 ms
78,840 KB
testcase_08 AC 196 ms
88,336 KB
testcase_09 AC 181 ms
88,104 KB
testcase_10 AC 161 ms
97,492 KB
testcase_11 AC 203 ms
97,016 KB
testcase_12 AC 177 ms
93,360 KB
testcase_13 AC 245 ms
100,012 KB
testcase_14 AC 185 ms
88,352 KB
testcase_15 AC 182 ms
95,752 KB
testcase_16 AC 199 ms
93,788 KB
testcase_17 AC 210 ms
94,156 KB
testcase_18 AC 188 ms
98,764 KB
testcase_19 AC 245 ms
122,384 KB
testcase_20 AC 221 ms
129,928 KB
testcase_21 AC 239 ms
130,224 KB
testcase_22 AC 193 ms
97,380 KB
testcase_23 AC 235 ms
129,260 KB
testcase_24 AC 229 ms
98,936 KB
testcase_25 AC 230 ms
98,624 KB
testcase_26 AC 209 ms
127,672 KB
testcase_27 AC 211 ms
97,348 KB
testcase_28 AC 229 ms
123,156 KB
testcase_29 AC 219 ms
117,368 KB
testcase_30 AC 251 ms
110,984 KB
testcase_31 AC 216 ms
128,768 KB
testcase_32 AC 222 ms
129,676 KB
testcase_33 AC 177 ms
102,276 KB
testcase_34 AC 229 ms
102,320 KB
testcase_35 AC 246 ms
116,296 KB
testcase_36 AC 229 ms
124,392 KB
testcase_37 AC 242 ms
104,232 KB
testcase_38 AC 199 ms
77,836 KB
testcase_39 AC 257 ms
78,156 KB
testcase_40 AC 172 ms
77,384 KB
testcase_41 AC 235 ms
78,492 KB
testcase_42 AC 248 ms
121,128 KB
testcase_43 AC 233 ms
121,264 KB
testcase_44 AC 158 ms
100,120 KB
testcase_45 AC 194 ms
130,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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()))
    BS = set(B)
    if N == 0 or M == 0:
        print("Yes")
        for a in A:
            print("Red", a)
        for b in B:
            print("Blue", b)
        continue
    S = set()
    for a in A:
        if a in BS:
            S.add(a)
    if len(S) == 0:
        print("No")
        continue
    
    print("Yes")
    for a in A:
        if a not in S:
            print("Red", a)
    s = S.pop()
    print("Red", s)
    print("Blue", s)
    S.add(s)
    for b in B:
        if b not in S:
            print("Blue", b)
    S.discard(s)
    flag = 1
    while S:
        s = S.pop()
        if flag:
            print("Blue", s)
            print("Red", s)
        else:
            print("Red", s)
            print("Blue", s)
        flag = 1 - flag
0