結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー miho-4miho-4
提出日時 2023-05-20 00:25:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 755 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 137,140 KB
最終ジャッジ日時 2024-05-10 08:11:49
合計ジャッジ時間 29,249 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,140 KB
testcase_01 AC 36 ms
52,556 KB
testcase_02 AC 305 ms
78,572 KB
testcase_03 AC 164 ms
79,732 KB
testcase_04 AC 162 ms
80,048 KB
testcase_05 AC 174 ms
80,184 KB
testcase_06 AC 169 ms
80,108 KB
testcase_07 AC 143 ms
79,100 KB
testcase_08 AC 194 ms
96,252 KB
testcase_09 AC 174 ms
97,020 KB
testcase_10 AC 155 ms
103,812 KB
testcase_11 AC 208 ms
104,364 KB
testcase_12 AC 165 ms
106,120 KB
testcase_13 AC 230 ms
103,952 KB
testcase_14 AC 169 ms
101,800 KB
testcase_15 AC 160 ms
98,144 KB
testcase_16 AC 195 ms
92,220 KB
testcase_17 AC 194 ms
98,052 KB
testcase_18 AC 198 ms
116,308 KB
testcase_19 AC 246 ms
136,296 KB
testcase_20 AC 208 ms
132,132 KB
testcase_21 AC 228 ms
132,940 KB
testcase_22 AC 202 ms
114,500 KB
testcase_23 AC 232 ms
131,544 KB
testcase_24 AC 227 ms
119,940 KB
testcase_25 AC 221 ms
118,592 KB
testcase_26 AC 214 ms
130,336 KB
testcase_27 AC 214 ms
115,072 KB
testcase_28 AC 228 ms
128,216 KB
testcase_29 AC 222 ms
125,172 KB
testcase_30 AC 238 ms
129,700 KB
testcase_31 AC 213 ms
131,176 KB
testcase_32 AC 207 ms
132,136 KB
testcase_33 AC 195 ms
107,484 KB
testcase_34 AC 217 ms
112,056 KB
testcase_35 AC 243 ms
133,048 KB
testcase_36 AC 226 ms
129,284 KB
testcase_37 AC 221 ms
122,104 KB
testcase_38 AC 507 ms
77,332 KB
testcase_39 AC 755 ms
79,584 KB
testcase_40 AC 199 ms
77,260 KB
testcase_41 AC 229 ms
77,284 KB
testcase_42 AC 236 ms
136,868 KB
testcase_43 AC 236 ms
137,140 KB
testcase_44 AC 193 ms
130,476 KB
testcase_45 AC 191 ms
130,280 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