結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー anonymouslyanonymously
提出日時 2023-05-19 22:51:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,480 ms / 2,000 ms
コード長 1,255 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 47,200 KB
最終ジャッジ日時 2024-06-01 01:35:24
合計ジャッジ時間 37,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 262 ms
11,008 KB
testcase_03 AC 206 ms
13,700 KB
testcase_04 AC 201 ms
13,900 KB
testcase_05 AC 200 ms
13,488 KB
testcase_06 AC 208 ms
14,208 KB
testcase_07 AC 171 ms
13,840 KB
testcase_08 AC 238 ms
24,736 KB
testcase_09 AC 235 ms
20,952 KB
testcase_10 AC 218 ms
28,220 KB
testcase_11 AC 289 ms
32,100 KB
testcase_12 AC 211 ms
26,684 KB
testcase_13 AC 354 ms
29,800 KB
testcase_14 AC 242 ms
27,148 KB
testcase_15 AC 194 ms
21,496 KB
testcase_16 AC 286 ms
22,188 KB
testcase_17 AC 236 ms
25,200 KB
testcase_18 AC 376 ms
35,880 KB
testcase_19 AC 419 ms
43,912 KB
testcase_20 AC 394 ms
47,200 KB
testcase_21 AC 398 ms
44,372 KB
testcase_22 AC 375 ms
34,036 KB
testcase_23 AC 403 ms
45,956 KB
testcase_24 AC 391 ms
36,104 KB
testcase_25 AC 384 ms
34,396 KB
testcase_26 AC 394 ms
47,028 KB
testcase_27 AC 377 ms
34,376 KB
testcase_28 AC 383 ms
35,280 KB
testcase_29 AC 382 ms
34,252 KB
testcase_30 AC 397 ms
37,384 KB
testcase_31 AC 402 ms
46,000 KB
testcase_32 AC 400 ms
46,364 KB
testcase_33 AC 391 ms
41,948 KB
testcase_34 AC 395 ms
45,112 KB
testcase_35 AC 410 ms
40,012 KB
testcase_36 AC 403 ms
43,316 KB
testcase_37 AC 388 ms
34,816 KB
testcase_38 AC 1,308 ms
10,752 KB
testcase_39 AC 1,480 ms
10,880 KB
testcase_40 AC 281 ms
11,136 KB
testcase_41 AC 336 ms
11,136 KB
testcase_42 AC 417 ms
44,292 KB
testcase_43 AC 419 ms
44,296 KB
testcase_44 AC 355 ms
42,812 KB
testcase_45 AC 362 ms
42,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8
#方針:
#赤・青両方にある数字の個数がかっこよさの最大値
#手順:
#1.赤にあり、青にない数字を全部食べる
#2.赤青ともにある数字を1個食べる
#3.青にあり、赤にない数字を全部食べる
#4.青⇒赤⇒赤⇒青⇒…の順に全部食べる

t=int(input())
for _ in range(t):
	n,m=map(int,input().split())
	a=set(map(int,input().split()))
	b=set()
	if _<t-1 or m>0:
		b=set(map(int,input().split()))
	if m==0:
		print("Yes")
		#赤すべて食べる
		for x in a:
			print(f"Red {x}")
	elif n==0:
		print("Yes")
		#青すべて食べる
		for y in b:
			print(f"Blue {y}")
	else:
		c=a & b
		if c:
			print("Yes")
			d = a ^ c # 赤にあって青にない
			for x in d:
				print(f"Red {x}")

			for x in c:
				#1回だけ出力
				print(f"Red {x}")
				print(f"Blue {x}")
				break
			
			
			e = b ^ c # 青にあって赤にない
			for y in e:
				print(f"Blue {y}")
			
			i=0
			for x in c:
				if i:
                    # 最初を除いて出力
					if i%2:
						print(f"Blue {x}")
						print(f"Red {x}")
					else:	
						print(f"Red {x}")
						print(f"Blue {x}")
				i+=1
		else:
			#全て食べることができない
			print("No")
		
0