結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー 👑 p-adicp-adic
提出日時 2023-05-20 16:56:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,405 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,040 KB
最終ジャッジ日時 2024-12-21 11:38:41
合計ジャッジ時間 36,681 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 293 ms
10,880 KB
testcase_03 AC 228 ms
12,992 KB
testcase_04 AC 232 ms
13,200 KB
testcase_05 AC 227 ms
12,688 KB
testcase_06 AC 227 ms
12,976 KB
testcase_07 AC 200 ms
13,392 KB
testcase_08 AC 243 ms
21,768 KB
testcase_09 AC 244 ms
20,480 KB
testcase_10 AC 232 ms
24,088 KB
testcase_11 AC 314 ms
21,528 KB
testcase_12 AC 217 ms
24,832 KB
testcase_13 AC 395 ms
22,788 KB
testcase_14 AC 248 ms
26,672 KB
testcase_15 AC 211 ms
19,592 KB
testcase_16 AC 304 ms
18,560 KB
testcase_17 AC 251 ms
19,724 KB
testcase_18 AC 389 ms
29,924 KB
testcase_19 AC 418 ms
36,060 KB
testcase_20 AC 439 ms
43,848 KB
testcase_21 AC 450 ms
43,844 KB
testcase_22 AC 371 ms
30,836 KB
testcase_23 AC 428 ms
44,040 KB
testcase_24 AC 400 ms
30,964 KB
testcase_25 AC 394 ms
30,452 KB
testcase_26 AC 420 ms
43,684 KB
testcase_27 AC 389 ms
31,076 KB
testcase_28 AC 411 ms
34,800 KB
testcase_29 AC 415 ms
34,076 KB
testcase_30 AC 408 ms
29,416 KB
testcase_31 AC 422 ms
43,828 KB
testcase_32 AC 426 ms
43,924 KB
testcase_33 AC 397 ms
42,796 KB
testcase_34 AC 397 ms
41,912 KB
testcase_35 AC 405 ms
31,420 KB
testcase_36 AC 415 ms
36,404 KB
testcase_37 AC 393 ms
29,772 KB
testcase_38 AC 1,338 ms
10,752 KB
testcase_39 AC 1,405 ms
10,880 KB
testcase_40 AC 339 ms
11,136 KB
testcase_41 AC 372 ms
11,008 KB
testcase_42 AC 412 ms
31,832 KB
testcase_43 AC 428 ms
31,904 KB
testcase_44 AC 385 ms
42,756 KB
testcase_45 AC 417 ms
42,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R,S,P=input,range,set,print
r,b="Red","Blue"
def J():
	return map(int,I().split())
for t in R(int(I())):
	N,M=J()
	A,B,C=S(J()),S(),S()
	for i in J():
		if i in A:A.remove(i),C.add(i)
		else:B.add(i)
	if len(A)>0 and len(B)>0 and len(C)<1:
		P("No")
		continue
	P("Yes")
	for i in A:P(r,i)
	if len(C)>0:
		i=C.pop()
		P(r,i),P(b,i)
	for i in B:P(b,i)
	c=0
	for i in C:
		if c<1:P(b,i),P(r,i)
		else:P(r,i),P(b,i)
		c=1-c
0