結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ntudantuda
提出日時 2023-05-20 11:35:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 148,976 KB
最終ジャッジ日時 2024-12-21 10:03:45
合計ジャッジ時間 28,882 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 287 ms
77,696 KB
testcase_03 AC 171 ms
80,396 KB
testcase_04 AC 164 ms
80,268 KB
testcase_05 AC 165 ms
80,272 KB
testcase_06 AC 167 ms
80,852 KB
testcase_07 AC 143 ms
80,032 KB
testcase_08 AC 195 ms
102,036 KB
testcase_09 AC 183 ms
104,192 KB
testcase_10 AC 170 ms
113,208 KB
testcase_11 AC 202 ms
103,100 KB
testcase_12 AC 180 ms
117,192 KB
testcase_13 AC 239 ms
111,212 KB
testcase_14 AC 183 ms
108,928 KB
testcase_15 AC 170 ms
103,584 KB
testcase_16 AC 201 ms
97,288 KB
testcase_17 AC 206 ms
102,144 KB
testcase_18 AC 210 ms
125,124 KB
testcase_19 AC 228 ms
120,076 KB
testcase_20 AC 242 ms
148,540 KB
testcase_21 AC 246 ms
142,900 KB
testcase_22 AC 218 ms
122,064 KB
testcase_23 AC 247 ms
145,400 KB
testcase_24 AC 239 ms
116,188 KB
testcase_25 AC 236 ms
121,824 KB
testcase_26 AC 219 ms
144,540 KB
testcase_27 AC 225 ms
120,080 KB
testcase_28 AC 249 ms
136,932 KB
testcase_29 AC 242 ms
137,988 KB
testcase_30 AC 239 ms
117,944 KB
testcase_31 AC 235 ms
148,704 KB
testcase_32 AC 224 ms
148,976 KB
testcase_33 AC 216 ms
119,936 KB
testcase_34 AC 234 ms
118,228 KB
testcase_35 AC 241 ms
119,404 KB
testcase_36 AC 248 ms
135,904 KB
testcase_37 AC 241 ms
127,032 KB
testcase_38 AC 490 ms
77,440 KB
testcase_39 AC 558 ms
77,568 KB
testcase_40 AC 188 ms
77,952 KB
testcase_41 AC 209 ms
77,824 KB
testcase_42 AC 214 ms
117,240 KB
testcase_43 AC 222 ms
117,420 KB
testcase_44 AC 177 ms
122,264 KB
testcase_45 AC 184 ms
122,472 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