結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ああいいああいい
提出日時 2023-05-22 22:56:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 646 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 135,228 KB
最終ジャッジ日時 2024-06-02 00:58:43
合計ジャッジ時間 27,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,956 KB
testcase_01 AC 34 ms
53,432 KB
testcase_02 AC 254 ms
78,340 KB
testcase_03 AC 162 ms
79,528 KB
testcase_04 AC 145 ms
79,928 KB
testcase_05 AC 153 ms
79,644 KB
testcase_06 AC 154 ms
79,920 KB
testcase_07 AC 131 ms
78,696 KB
testcase_08 AC 170 ms
96,492 KB
testcase_09 AC 171 ms
96,752 KB
testcase_10 AC 154 ms
103,772 KB
testcase_11 AC 183 ms
103,588 KB
testcase_12 AC 160 ms
106,016 KB
testcase_13 AC 214 ms
103,752 KB
testcase_14 AC 168 ms
101,732 KB
testcase_15 AC 151 ms
98,124 KB
testcase_16 AC 183 ms
94,396 KB
testcase_17 AC 186 ms
98,196 KB
testcase_18 AC 184 ms
116,172 KB
testcase_19 AC 222 ms
134,764 KB
testcase_20 AC 201 ms
132,004 KB
testcase_21 AC 212 ms
133,176 KB
testcase_22 AC 179 ms
114,288 KB
testcase_23 AC 207 ms
131,700 KB
testcase_24 AC 216 ms
119,036 KB
testcase_25 AC 218 ms
118,348 KB
testcase_26 AC 195 ms
130,332 KB
testcase_27 AC 205 ms
115,008 KB
testcase_28 AC 213 ms
128,716 KB
testcase_29 AC 212 ms
125,428 KB
testcase_30 AC 233 ms
128,552 KB
testcase_31 AC 194 ms
131,168 KB
testcase_32 AC 194 ms
132,152 KB
testcase_33 AC 180 ms
107,460 KB
testcase_34 AC 210 ms
111,436 KB
testcase_35 AC 232 ms
131,896 KB
testcase_36 AC 210 ms
129,000 KB
testcase_37 AC 209 ms
122,096 KB
testcase_38 AC 448 ms
77,540 KB
testcase_39 AC 646 ms
80,192 KB
testcase_40 AC 180 ms
77,504 KB
testcase_41 AC 222 ms
78,308 KB
testcase_42 AC 229 ms
135,228 KB
testcase_43 AC 225 ms
134,808 KB
testcase_44 AC 175 ms
130,284 KB
testcase_45 AC 184 ms
130,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()))
    a = set(A)
    b = set(B)
    c = a & b

    if N == 0:
        print('Yes')
        for bb in B:
            print('Blue',bb)
        continue
    if M == 0:
        print('Yes')
        for aa in A:
            print('Red',aa)
        continue
    if len(c) == 0:
        print('No')
        continue
    print('Yes')
    for aa in A:
        if aa not in c:
            print('Red',aa)

    u = c.pop()
    print('Red',u)
    print('Blue',u)
    for bb in B:
        if bb not in c and bb != u:
            print('Blue',bb)
    now = True
    while c:
        u = c.pop()
        if now:
            print("Blue",u)
            print("Red",u)
        else:
            print('Red',u)
            print('Blue',u)
        now = not now
            
0