結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ntudantuda
提出日時 2023-05-20 11:35:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 148,888 KB
最終ジャッジ日時 2024-06-01 06:18:54
合計ジャッジ時間 32,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 303 ms
77,824 KB
testcase_03 AC 194 ms
80,528 KB
testcase_04 AC 182 ms
80,456 KB
testcase_05 AC 181 ms
80,280 KB
testcase_06 AC 186 ms
81,360 KB
testcase_07 AC 172 ms
80,512 KB
testcase_08 AC 211 ms
101,888 KB
testcase_09 AC 202 ms
104,192 KB
testcase_10 AC 182 ms
113,848 KB
testcase_11 AC 216 ms
103,184 KB
testcase_12 AC 199 ms
116,944 KB
testcase_13 AC 269 ms
111,180 KB
testcase_14 AC 201 ms
109,024 KB
testcase_15 AC 184 ms
103,584 KB
testcase_16 AC 215 ms
97,184 KB
testcase_17 AC 218 ms
102,024 KB
testcase_18 AC 240 ms
124,696 KB
testcase_19 AC 300 ms
120,188 KB
testcase_20 AC 249 ms
148,888 KB
testcase_21 AC 260 ms
142,860 KB
testcase_22 AC 231 ms
122,192 KB
testcase_23 AC 267 ms
146,176 KB
testcase_24 AC 257 ms
115,992 KB
testcase_25 AC 259 ms
121,704 KB
testcase_26 AC 259 ms
145,084 KB
testcase_27 AC 253 ms
120,024 KB
testcase_28 AC 259 ms
137,052 KB
testcase_29 AC 257 ms
137,884 KB
testcase_30 AC 260 ms
117,752 KB
testcase_31 AC 246 ms
148,632 KB
testcase_32 AC 251 ms
148,848 KB
testcase_33 AC 232 ms
120,244 KB
testcase_34 AC 246 ms
118,328 KB
testcase_35 AC 250 ms
119,408 KB
testcase_36 AC 256 ms
136,416 KB
testcase_37 AC 258 ms
127,124 KB
testcase_38 AC 528 ms
77,636 KB
testcase_39 AC 602 ms
77,768 KB
testcase_40 AC 205 ms
77,572 KB
testcase_41 AC 230 ms
78,016 KB
testcase_42 AC 236 ms
116,936 KB
testcase_43 AC 236 ms
117,556 KB
testcase_44 AC 196 ms
122,368 KB
testcase_45 AC 198 ms
122,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for t in range(T):
    N,M = map(int,input().split())
    A = set(map(int,input().split()))
    B = set(map(int,input().split()))
    CO = A & B
    AO = A - CO
    BO = B - CO
    NC = len(CO)
    NA = len(AO)
    NB = len(BO)

    if NC == 0 and NA * NB > 0:
        print("No")
        continue

    print("Yes")

    for i in AO:
        print("Red",i)

    if NC > 0:
        i = next(iter(CO))
        print("Red", i)
        print("Blue", i)
        CO.remove(i)

    for i in BO:
        print("Blue",i)

    st = 1
    for i in CO:
        if st == 0:
            print("Red",i)
            print("Blue",i)
        else:
            print("Blue",i)
            print("Red",i)
        st ^= 1

0