結果

問題 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,497 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 37,572 KB
最終ジャッジ日時 2024-06-01 01:49:53
合計ジャッジ時間 37,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 302 ms
10,880 KB
testcase_03 AC 238 ms
13,432 KB
testcase_04 AC 239 ms
13,204 KB
testcase_05 AC 232 ms
13,424 KB
testcase_06 AC 234 ms
13,224 KB
testcase_07 AC 199 ms
13,328 KB
testcase_08 AC 260 ms
24,772 KB
testcase_09 AC 258 ms
20,836 KB
testcase_10 AC 236 ms
25,092 KB
testcase_11 AC 322 ms
25,036 KB
testcase_12 AC 229 ms
25,380 KB
testcase_13 AC 380 ms
24,560 KB
testcase_14 AC 266 ms
22,784 KB
testcase_15 AC 224 ms
23,300 KB
testcase_16 AC 312 ms
21,020 KB
testcase_17 AC 271 ms
24,732 KB
testcase_18 AC 403 ms
28,524 KB
testcase_19 AC 436 ms
33,252 KB
testcase_20 AC 411 ms
36,644 KB
testcase_21 AC 418 ms
36,500 KB
testcase_22 AC 402 ms
29,720 KB
testcase_23 AC 417 ms
36,624 KB
testcase_24 AC 420 ms
29,588 KB
testcase_25 AC 417 ms
28,896 KB
testcase_26 AC 418 ms
37,076 KB
testcase_27 AC 408 ms
29,544 KB
testcase_28 AC 406 ms
30,988 KB
testcase_29 AC 396 ms
30,292 KB
testcase_30 AC 430 ms
28,548 KB
testcase_31 AC 412 ms
36,276 KB
testcase_32 AC 409 ms
36,320 KB
testcase_33 AC 420 ms
34,448 KB
testcase_34 AC 422 ms
33,992 KB
testcase_35 AC 440 ms
32,508 KB
testcase_36 AC 422 ms
37,572 KB
testcase_37 AC 417 ms
31,976 KB
testcase_38 AC 1,355 ms
10,624 KB
testcase_39 AC 1,497 ms
10,752 KB
testcase_40 AC 319 ms
11,136 KB
testcase_41 AC 377 ms
11,136 KB
testcase_42 AC 438 ms
32,820 KB
testcase_43 AC 445 ms
33,012 KB
testcase_44 AC 330 ms
32,612 KB
testcase_45 AC 335 ms
32,612 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