結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ニックネームニックネーム
提出日時 2023-05-19 21:38:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,456 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,540 KB
最終ジャッジ日時 2024-05-10 08:13:57
合計ジャッジ時間 36,775 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 299 ms
10,880 KB
testcase_03 AC 247 ms
13,012 KB
testcase_04 AC 233 ms
12,904 KB
testcase_05 AC 237 ms
13,148 KB
testcase_06 AC 235 ms
12,924 KB
testcase_07 AC 194 ms
13,352 KB
testcase_08 AC 258 ms
26,036 KB
testcase_09 AC 263 ms
20,832 KB
testcase_10 AC 233 ms
22,960 KB
testcase_11 AC 287 ms
26,616 KB
testcase_12 AC 231 ms
22,872 KB
testcase_13 AC 354 ms
24,144 KB
testcase_14 AC 261 ms
22,832 KB
testcase_15 AC 208 ms
22,036 KB
testcase_16 AC 297 ms
20,628 KB
testcase_17 AC 265 ms
23,104 KB
testcase_18 AC 365 ms
28,748 KB
testcase_19 AC 428 ms
37,360 KB
testcase_20 AC 386 ms
37,540 KB
testcase_21 AC 400 ms
36,524 KB
testcase_22 AC 370 ms
29,840 KB
testcase_23 AC 391 ms
36,592 KB
testcase_24 AC 383 ms
31,748 KB
testcase_25 AC 375 ms
29,140 KB
testcase_26 AC 384 ms
37,500 KB
testcase_27 AC 381 ms
29,520 KB
testcase_28 AC 375 ms
31,148 KB
testcase_29 AC 380 ms
30,360 KB
testcase_30 AC 389 ms
30,436 KB
testcase_31 AC 395 ms
37,472 KB
testcase_32 AC 386 ms
36,572 KB
testcase_33 AC 375 ms
33,576 KB
testcase_34 AC 411 ms
35,292 KB
testcase_35 AC 400 ms
32,436 KB
testcase_36 AC 410 ms
36,716 KB
testcase_37 AC 386 ms
31,956 KB
testcase_38 AC 1,294 ms
10,752 KB
testcase_39 AC 1,456 ms
10,752 KB
testcase_40 AC 314 ms
11,136 KB
testcase_41 AC 384 ms
11,008 KB
testcase_42 AC 417 ms
36,696 KB
testcase_43 AC 396 ms
36,880 KB
testcase_44 AC 320 ms
32,592 KB
testcase_45 AC 317 ms
32,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n,m = map(int,input().split())
    a = list(map(int,input().split()))
    b = list(map(int,input().split()))
    if m==0:
        print("Yes")
        for v in a: print("Red",v)
        continue
    if n==0:
        print("Yes")
        for v in b: print("Blue",v)
        continue
    c = set(a)&set(b); d = []; e = []; f = 0
    for v in a:
        if v not in c: d.append(v)
    for v in b:
        if v not in c: e.append(v)
    if not c: print("No"); continue
    print("Yes")
    for v in d: print("Red",v)
    v = c.pop(); print("Red",v); print("Blue",v)
    for v in e: print("Blue",v)
    for v in c:
        if f: print("Red",v); print("Blue",v)
        else: print("Blue",v); print("Red",v)
        f ^= 1
0