結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー ニックネームニックネーム
提出日時 2023-05-19 21:45:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,540 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,932 KB
最終ジャッジ日時 2024-06-01 00:29:24
合計ジャッジ時間 37,594 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 280 ms
11,008 KB
testcase_03 AC 222 ms
12,992 KB
testcase_04 AC 221 ms
13,164 KB
testcase_05 AC 214 ms
13,196 KB
testcase_06 AC 222 ms
13,368 KB
testcase_07 AC 187 ms
13,744 KB
testcase_08 AC 251 ms
23,288 KB
testcase_09 AC 248 ms
20,096 KB
testcase_10 AC 220 ms
24,204 KB
testcase_11 AC 302 ms
24,720 KB
testcase_12 AC 221 ms
24,444 KB
testcase_13 AC 366 ms
23,012 KB
testcase_14 AC 253 ms
26,604 KB
testcase_15 AC 205 ms
22,464 KB
testcase_16 AC 298 ms
20,256 KB
testcase_17 AC 248 ms
22,872 KB
testcase_18 AC 391 ms
29,316 KB
testcase_19 AC 421 ms
35,716 KB
testcase_20 AC 400 ms
43,812 KB
testcase_21 AC 413 ms
43,932 KB
testcase_22 AC 403 ms
30,276 KB
testcase_23 AC 410 ms
43,920 KB
testcase_24 AC 412 ms
31,968 KB
testcase_25 AC 401 ms
29,884 KB
testcase_26 AC 403 ms
43,596 KB
testcase_27 AC 404 ms
30,540 KB
testcase_28 AC 398 ms
34,916 KB
testcase_29 AC 399 ms
34,068 KB
testcase_30 AC 415 ms
31,084 KB
testcase_31 AC 401 ms
43,652 KB
testcase_32 AC 397 ms
43,916 KB
testcase_33 AC 403 ms
41,892 KB
testcase_34 AC 418 ms
40,960 KB
testcase_35 AC 420 ms
34,708 KB
testcase_36 AC 418 ms
43,244 KB
testcase_37 AC 403 ms
33,852 KB
testcase_38 AC 1,331 ms
10,752 KB
testcase_39 AC 1,540 ms
10,752 KB
testcase_40 AC 335 ms
11,136 KB
testcase_41 AC 369 ms
11,264 KB
testcase_42 AC 419 ms
36,140 KB
testcase_43 AC 422 ms
35,868 KB
testcase_44 AC 396 ms
42,604 KB
testcase_45 AC 409 ms
42,656 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