結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー 👑 p-adicp-adic
提出日時 2023-05-20 16:58:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,474 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 43,904 KB
最終ジャッジ日時 2024-06-01 07:23:34
合計ジャッジ時間 39,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 292 ms
11,008 KB
testcase_03 AC 240 ms
12,992 KB
testcase_04 AC 234 ms
13,204 KB
testcase_05 AC 226 ms
12,676 KB
testcase_06 AC 231 ms
12,976 KB
testcase_07 AC 200 ms
13,468 KB
testcase_08 AC 256 ms
21,740 KB
testcase_09 AC 253 ms
20,384 KB
testcase_10 AC 240 ms
24,088 KB
testcase_11 AC 315 ms
21,532 KB
testcase_12 AC 222 ms
24,892 KB
testcase_13 AC 393 ms
22,784 KB
testcase_14 AC 261 ms
26,652 KB
testcase_15 AC 217 ms
19,644 KB
testcase_16 AC 313 ms
18,560 KB
testcase_17 AC 265 ms
19,720 KB
testcase_18 AC 405 ms
29,764 KB
testcase_19 AC 447 ms
36,092 KB
testcase_20 AC 441 ms
43,888 KB
testcase_21 AC 460 ms
43,888 KB
testcase_22 AC 418 ms
30,960 KB
testcase_23 AC 456 ms
43,904 KB
testcase_24 AC 427 ms
30,964 KB
testcase_25 AC 417 ms
30,380 KB
testcase_26 AC 453 ms
43,692 KB
testcase_27 AC 408 ms
31,080 KB
testcase_28 AC 446 ms
34,928 KB
testcase_29 AC 428 ms
34,080 KB
testcase_30 AC 436 ms
29,560 KB
testcase_31 AC 453 ms
43,788 KB
testcase_32 AC 453 ms
43,836 KB
testcase_33 AC 396 ms
42,840 KB
testcase_34 AC 413 ms
41,924 KB
testcase_35 AC 438 ms
31,380 KB
testcase_36 AC 440 ms
36,404 KB
testcase_37 AC 417 ms
29,780 KB
testcase_38 AC 1,344 ms
10,880 KB
testcase_39 AC 1,474 ms
10,752 KB
testcase_40 AC 344 ms
11,136 KB
testcase_41 AC 379 ms
11,136 KB
testcase_42 AC 441 ms
31,848 KB
testcase_43 AC 445 ms
31,888 KB
testcase_44 AC 405 ms
42,824 KB
testcase_45 AC 435 ms
42,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R,S,P,L=input,range,set,print,len
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 L(A)>0 and L(B)>0 and L(C)<1:
		P("No")
		continue
	P("Yes")
	for i in A:P(r,i)
	if L(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:P(r,i),P(b,i)
		else:P(b,i),P(r,i)
		c=1-c
0