結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー miho-4miho-4
提出日時 2023-05-19 22:15:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 137,192 KB
最終ジャッジ日時 2024-06-01 01:12:51
合計ジャッジ時間 30,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 330 ms
78,848 KB
testcase_03 AC 191 ms
79,872 KB
testcase_04 AC 174 ms
79,812 KB
testcase_05 AC 183 ms
80,312 KB
testcase_06 AC 180 ms
80,244 KB
testcase_07 AC 148 ms
79,052 KB
testcase_08 AC 207 ms
96,236 KB
testcase_09 AC 185 ms
96,896 KB
testcase_10 AC 166 ms
103,844 KB
testcase_11 AC 221 ms
104,372 KB
testcase_12 AC 174 ms
106,112 KB
testcase_13 AC 252 ms
103,892 KB
testcase_14 AC 184 ms
102,032 KB
testcase_15 AC 167 ms
97,864 KB
testcase_16 AC 200 ms
92,672 KB
testcase_17 AC 205 ms
98,088 KB
testcase_18 AC 208 ms
116,428 KB
testcase_19 AC 264 ms
136,432 KB
testcase_20 AC 221 ms
132,440 KB
testcase_21 AC 245 ms
133,032 KB
testcase_22 AC 215 ms
114,412 KB
testcase_23 AC 243 ms
131,564 KB
testcase_24 AC 242 ms
119,700 KB
testcase_25 AC 236 ms
118,976 KB
testcase_26 AC 216 ms
130,364 KB
testcase_27 AC 229 ms
115,072 KB
testcase_28 AC 236 ms
128,272 KB
testcase_29 AC 229 ms
125,232 KB
testcase_30 AC 254 ms
129,748 KB
testcase_31 AC 221 ms
131,460 KB
testcase_32 AC 220 ms
132,504 KB
testcase_33 AC 203 ms
107,516 KB
testcase_34 AC 229 ms
111,820 KB
testcase_35 AC 259 ms
133,376 KB
testcase_36 AC 242 ms
129,768 KB
testcase_37 AC 237 ms
121,824 KB
testcase_38 AC 513 ms
77,056 KB
testcase_39 AC 774 ms
79,728 KB
testcase_40 AC 207 ms
77,572 KB
testcase_41 AC 235 ms
77,312 KB
testcase_42 AC 251 ms
136,804 KB
testcase_43 AC 252 ms
137,192 KB
testcase_44 AC 200 ms
130,516 KB
testcase_45 AC 198 ms
130,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
  n,m=map(int,input().split())
  A=list(map(int,input().split()))
  B=list(map(int,input().split()))
  SA,SB=set(A),set(B)
  S=SA&SB
  
  if 0<n and 0<m and len(S)==0:
    print("No")
    continue
  
  print("Yes")
  if n==0:
    for e in SB:
      print("Blue",e)
    continue
    
  if m==0:
    for e in SA:
      print("Red",e)
    continue
      
  LS=list(S)
  SA-=S
  SB-=S
  for e in SA:
    print("Red",e)
  print("Red",LS[0])
  print("Blue",LS[0])
  for e in SB:
    print("Blue",e)
  if 1<len(LS):
    for i in range(1,len(LS)):
      e=LS[i]
      if i%2==1:
        print("Blue",e)
        print("Red",e)
      else:
        print("Red",e)
        print("Blue",e)
0