結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー rlangevinrlangevin
提出日時 2023-05-19 21:35:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 954 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 130,520 KB
最終ジャッジ日時 2024-05-10 08:09:29
合計ジャッジ時間 31,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 223 ms
78,464 KB
testcase_03 AC 187 ms
78,980 KB
testcase_04 AC 172 ms
78,720 KB
testcase_05 AC 181 ms
79,516 KB
testcase_06 AC 189 ms
79,368 KB
testcase_07 AC 164 ms
79,232 KB
testcase_08 AC 202 ms
88,572 KB
testcase_09 AC 199 ms
88,192 KB
testcase_10 AC 168 ms
97,448 KB
testcase_11 AC 226 ms
97,116 KB
testcase_12 AC 182 ms
93,820 KB
testcase_13 AC 250 ms
100,024 KB
testcase_14 AC 239 ms
88,576 KB
testcase_15 AC 209 ms
96,152 KB
testcase_16 AC 235 ms
93,824 KB
testcase_17 AC 294 ms
94,356 KB
testcase_18 AC 210 ms
98,288 KB
testcase_19 AC 295 ms
122,408 KB
testcase_20 AC 245 ms
129,900 KB
testcase_21 AC 270 ms
130,480 KB
testcase_22 AC 203 ms
97,280 KB
testcase_23 AC 265 ms
129,164 KB
testcase_24 AC 265 ms
99,512 KB
testcase_25 AC 229 ms
99,192 KB
testcase_26 AC 223 ms
127,656 KB
testcase_27 AC 243 ms
97,408 KB
testcase_28 AC 275 ms
123,212 KB
testcase_29 AC 232 ms
117,540 KB
testcase_30 AC 258 ms
111,564 KB
testcase_31 AC 247 ms
128,668 KB
testcase_32 AC 241 ms
130,176 KB
testcase_33 AC 197 ms
102,400 KB
testcase_34 AC 243 ms
102,144 KB
testcase_35 AC 282 ms
116,340 KB
testcase_36 AC 246 ms
124,832 KB
testcase_37 AC 259 ms
103,876 KB
testcase_38 AC 218 ms
77,568 KB
testcase_39 AC 290 ms
78,164 KB
testcase_40 AC 203 ms
77,696 KB
testcase_41 AC 246 ms
78,424 KB
testcase_42 AC 270 ms
121,308 KB
testcase_43 AC 260 ms
121,308 KB
testcase_44 AC 168 ms
100,352 KB
testcase_45 AC 204 ms
130,520 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