結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー miya145592miya145592
提出日時 2023-05-19 23:19:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,655 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 37,572 KB
最終ジャッジ日時 2024-12-21 04:02:36
合計ジャッジ時間 42,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 333 ms
10,752 KB
testcase_03 AC 255 ms
13,432 KB
testcase_04 AC 258 ms
13,200 KB
testcase_05 AC 252 ms
13,424 KB
testcase_06 AC 253 ms
13,352 KB
testcase_07 AC 216 ms
13,328 KB
testcase_08 AC 269 ms
24,520 KB
testcase_09 AC 268 ms
20,680 KB
testcase_10 AC 262 ms
25,080 KB
testcase_11 AC 352 ms
25,032 KB
testcase_12 AC 257 ms
25,372 KB
testcase_13 AC 416 ms
24,692 KB
testcase_14 AC 297 ms
22,756 KB
testcase_15 AC 241 ms
23,420 KB
testcase_16 AC 338 ms
21,128 KB
testcase_17 AC 387 ms
24,576 KB
testcase_18 AC 451 ms
28,480 KB
testcase_19 AC 455 ms
33,336 KB
testcase_20 AC 440 ms
36,420 KB
testcase_21 AC 436 ms
36,528 KB
testcase_22 AC 433 ms
29,720 KB
testcase_23 AC 442 ms
36,416 KB
testcase_24 AC 452 ms
29,660 KB
testcase_25 AC 439 ms
29,128 KB
testcase_26 AC 439 ms
37,368 KB
testcase_27 AC 455 ms
29,524 KB
testcase_28 AC 450 ms
30,988 KB
testcase_29 AC 439 ms
30,368 KB
testcase_30 AC 458 ms
28,532 KB
testcase_31 AC 434 ms
36,452 KB
testcase_32 AC 431 ms
36,364 KB
testcase_33 AC 433 ms
34,348 KB
testcase_34 AC 452 ms
33,856 KB
testcase_35 AC 462 ms
32,608 KB
testcase_36 AC 462 ms
37,572 KB
testcase_37 AC 436 ms
31,840 KB
testcase_38 AC 1,470 ms
10,752 KB
testcase_39 AC 1,655 ms
10,752 KB
testcase_40 AC 349 ms
11,136 KB
testcase_41 AC 408 ms
11,136 KB
testcase_42 AC 464 ms
32,876 KB
testcase_43 AC 482 ms
32,996 KB
testcase_44 AC 359 ms
32,736 KB
testcase_45 AC 360 ms
32,436 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()))
    if N>0 and M>0:
        setA = set(A)
        setB = set(B)
        same = []
        diff = []
        for b in B:
            if b in setA:
                same.append(b)
            else:
                diff.append(b)
        if len(same)==0:
            print("No")
            continue

        print("Yes")
        for d in diff:
            print("Blue", d)
        for i, s in enumerate(same):
            if i%2==0:
                print("Blue", s)
                print("Red", s)
                if i==0:
                    for a in setA:
                        if a not in setB:
                            print("Red", a)
            else:
                print("Red", s)
                print("Blue", s)

    elif N>0:
        print("Yes")
        for a in A:
            print("Red", a)
    elif M>0:
        print("Yes")
        for b in B:
            print("Blue", b)
    else:
        print("Yes")
0