結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,596 KB
testcase_01 AC 40 ms
53,176 KB
testcase_02 AC 341 ms
78,468 KB
testcase_03 AC 215 ms
79,752 KB
testcase_04 AC 178 ms
80,204 KB
testcase_05 AC 197 ms
80,568 KB
testcase_06 AC 203 ms
80,244 KB
testcase_07 AC 166 ms
79,012 KB
testcase_08 AC 236 ms
96,484 KB
testcase_09 AC 192 ms
97,264 KB
testcase_10 AC 173 ms
103,808 KB
testcase_11 AC 226 ms
104,332 KB
testcase_12 AC 199 ms
106,140 KB
testcase_13 AC 244 ms
103,908 KB
testcase_14 AC 190 ms
102,020 KB
testcase_15 AC 176 ms
98,176 KB
testcase_16 AC 207 ms
92,432 KB
testcase_17 AC 214 ms
98,452 KB
testcase_18 AC 218 ms
116,280 KB
testcase_19 AC 267 ms
136,456 KB
testcase_20 AC 226 ms
132,412 KB
testcase_21 AC 248 ms
133,148 KB
testcase_22 AC 219 ms
114,556 KB
testcase_23 AC 240 ms
131,936 KB
testcase_24 AC 243 ms
119,672 KB
testcase_25 AC 240 ms
118,864 KB
testcase_26 AC 227 ms
130,868 KB
testcase_27 AC 267 ms
115,180 KB
testcase_28 AC 283 ms
128,552 KB
testcase_29 AC 240 ms
125,292 KB
testcase_30 AC 297 ms
130,304 KB
testcase_31 AC 226 ms
131,184 KB
testcase_32 AC 227 ms
132,444 KB
testcase_33 AC 203 ms
107,344 KB
testcase_34 AC 236 ms
111,904 KB
testcase_35 AC 283 ms
132,936 KB
testcase_36 AC 244 ms
129,448 KB
testcase_37 AC 243 ms
121,876 KB
testcase_38 AC 523 ms
77,296 KB
testcase_39 AC 770 ms
80,104 KB
testcase_40 AC 210 ms
77,388 KB
testcase_41 AC 240 ms
77,944 KB
testcase_42 AC 257 ms
137,128 KB
testcase_43 AC 254 ms
136,980 KB
testcase_44 AC 207 ms
130,888 KB
testcase_45 AC 209 ms
130,636 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