結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ニックネームニックネーム
提出日時 2023-05-19 21:45:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,604 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,908 KB
最終ジャッジ日時 2024-12-21 02:08:25
合計ジャッジ時間 42,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 304 ms
10,880 KB
testcase_03 AC 244 ms
12,988 KB
testcase_04 AC 242 ms
13,032 KB
testcase_05 AC 235 ms
13,060 KB
testcase_06 AC 237 ms
13,368 KB
testcase_07 AC 200 ms
13,620 KB
testcase_08 AC 273 ms
23,160 KB
testcase_09 AC 279 ms
20,092 KB
testcase_10 AC 248 ms
24,200 KB
testcase_11 AC 337 ms
24,716 KB
testcase_12 AC 240 ms
24,404 KB
testcase_13 AC 405 ms
22,916 KB
testcase_14 AC 281 ms
26,420 KB
testcase_15 AC 219 ms
22,212 KB
testcase_16 AC 333 ms
20,124 KB
testcase_17 AC 278 ms
22,748 KB
testcase_18 AC 419 ms
29,280 KB
testcase_19 AC 451 ms
35,460 KB
testcase_20 AC 430 ms
43,796 KB
testcase_21 AC 446 ms
43,908 KB
testcase_22 AC 427 ms
30,160 KB
testcase_23 AC 454 ms
43,764 KB
testcase_24 AC 457 ms
31,836 KB
testcase_25 AC 439 ms
29,712 KB
testcase_26 AC 436 ms
43,412 KB
testcase_27 AC 436 ms
30,416 KB
testcase_28 AC 445 ms
34,784 KB
testcase_29 AC 442 ms
33,944 KB
testcase_30 AC 465 ms
31,084 KB
testcase_31 AC 447 ms
43,728 KB
testcase_32 AC 446 ms
43,768 KB
testcase_33 AC 436 ms
41,784 KB
testcase_34 AC 466 ms
40,948 KB
testcase_35 AC 465 ms
34,620 KB
testcase_36 AC 465 ms
43,116 KB
testcase_37 AC 448 ms
33,812 KB
testcase_38 AC 1,423 ms
10,624 KB
testcase_39 AC 1,604 ms
10,624 KB
testcase_40 AC 364 ms
11,008 KB
testcase_41 AC 393 ms
11,008 KB
testcase_42 AC 468 ms
36,080 KB
testcase_43 AC 469 ms
35,900 KB
testcase_44 AC 442 ms
42,732 KB
testcase_45 AC 448 ms
42,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n,m = map(int,input().split())
    a = set(map(int,input().split()))
    b = set(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 = a&b; a -= c; b -= c; f = 0
    if not c: print("No"); continue
    print("Yes")
    for v in a: print("Red",v)
    v = c.pop(); print("Red",v); print("Blue",v)
    for v in b: 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