結果

問題 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,637 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 37,520 KB
最終ジャッジ日時 2024-12-20 03:46:53
合計ジャッジ時間 39,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 321 ms
10,880 KB
testcase_03 AC 256 ms
13,140 KB
testcase_04 AC 256 ms
12,772 KB
testcase_05 AC 250 ms
13,024 KB
testcase_06 AC 251 ms
12,996 KB
testcase_07 AC 216 ms
13,352 KB
testcase_08 AC 274 ms
26,296 KB
testcase_09 AC 295 ms
20,832 KB
testcase_10 AC 244 ms
22,960 KB
testcase_11 AC 332 ms
26,760 KB
testcase_12 AC 236 ms
22,808 KB
testcase_13 AC 387 ms
24,184 KB
testcase_14 AC 276 ms
22,860 KB
testcase_15 AC 233 ms
21,904 KB
testcase_16 AC 322 ms
20,504 KB
testcase_17 AC 312 ms
22,844 KB
testcase_18 AC 394 ms
28,588 KB
testcase_19 AC 461 ms
37,368 KB
testcase_20 AC 400 ms
37,468 KB
testcase_21 AC 416 ms
36,504 KB
testcase_22 AC 407 ms
29,784 KB
testcase_23 AC 412 ms
36,520 KB
testcase_24 AC 427 ms
31,624 KB
testcase_25 AC 412 ms
29,020 KB
testcase_26 AC 400 ms
37,220 KB
testcase_27 AC 405 ms
29,428 KB
testcase_28 AC 410 ms
31,204 KB
testcase_29 AC 392 ms
30,320 KB
testcase_30 AC 443 ms
30,468 KB
testcase_31 AC 411 ms
36,464 KB
testcase_32 AC 396 ms
36,472 KB
testcase_33 AC 408 ms
33,728 KB
testcase_34 AC 425 ms
35,200 KB
testcase_35 AC 446 ms
32,576 KB
testcase_36 AC 429 ms
37,520 KB
testcase_37 AC 423 ms
31,880 KB
testcase_38 AC 1,378 ms
10,624 KB
testcase_39 AC 1,637 ms
10,752 KB
testcase_40 AC 326 ms
11,136 KB
testcase_41 AC 401 ms
11,008 KB
testcase_42 AC 475 ms
36,692 KB
testcase_43 AC 458 ms
36,740 KB
testcase_44 AC 351 ms
32,720 KB
testcase_45 AC 342 ms
32,560 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