結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー navel_tosnavel_tos
提出日時 2023-05-19 23:56:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,467 ms / 2,000 ms
コード長 2,672 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-12-21 04:11:32
合計ジャッジ時間 37,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 46
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#yukicoder389C
'''
・・・
AiBj(N+M)
UNO
cool
1
1 _ 2 3 _ _ 6 : 6
1 1 _ _ 4 5 _ : 11
2
1 _ _ _ :
1 1 4 5 : 5,4,1,1,1 2
Corner Caseyukicoder
1
RE
'''
f=lambda:list(map(int,input().split()))
nyu=int(input())
for _ in range(nyu):
N,M=f()
if N==0:
input(); B=f(); print('Yes')
for i in B: print('Blue '+str(i))
continue
elif M==0:
A=f(); input(); print('Yes')
for i in A: print('Red '+str(i))
continue
A=f(); B=f(); P=set(A); matched=set()
for i in B:
if i in P: matched.add(i)
if len(matched)==0: print('No'); continue
elif len(matched)==1:
print('Yes')
if N==1:
for i in B:
if i not in matched: print('Blue '+str(i))
for i in matched: print('Blue '+str(i)); print('Red '+str(i))
continue
else:
for i in A:
if i not in matched: print('Red '+str(i))
for i in matched: print('Red '+str(i)); print('Blue '+str(i))
for i in B:
if i not in matched: print('Blue '+str(i))
continue
else:
print('Yes')
start=matched.pop(); print('Blue '+str(start)); print('Red '+str(start))
for i in A:
if i==start: continue
if i not in matched: print('Red '+str(i))
next=matched.pop(); print('Red '+str(next)); print('Blue '+str(next))
for i in B:
if i==start or i==next: continue
if i not in matched: print('Blue '+str(i))
next_is_BL = True
while len(matched):
now=matched.pop()
if next_is_BL==True: print('Blue '+str(now)); print('Red '+str(now)); next_is_BL=False
else: print('Red '+str(now)); print('Blue '+str(now)); next_is_BL=True
print()
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0