結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー sepa38sepa38
提出日時 2023-05-19 21:42:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 885 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 144,916 KB
最終ジャッジ日時 2024-06-01 00:19:53
合計ジャッジ時間 27,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,608 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 246 ms
128,608 KB
testcase_19 AC 288 ms
134,416 KB
testcase_20 AC 261 ms
144,916 KB
testcase_21 AC 273 ms
142,072 KB
testcase_22 AC 240 ms
126,676 KB
testcase_23 AC 276 ms
144,532 KB
testcase_24 AC 270 ms
125,476 KB
testcase_25 AC 266 ms
127,568 KB
testcase_26 AC 247 ms
143,400 KB
testcase_27 AC 265 ms
126,120 KB
testcase_28 AC 269 ms
138,048 KB
testcase_29 AC 266 ms
137,348 KB
testcase_30 AC 287 ms
131,136 KB
testcase_31 AC 260 ms
144,884 KB
testcase_32 AC 279 ms
144,684 KB
testcase_33 AC 227 ms
120,132 KB
testcase_34 AC 255 ms
120,904 KB
testcase_35 AC 279 ms
133,008 KB
testcase_36 AC 268 ms
136,984 KB
testcase_37 AC 262 ms
132,032 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 271 ms
78,872 KB
testcase_42 AC 270 ms
133,948 KB
testcase_43 AC 264 ms
134,292 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
  n, m = map(int, input().split())
  a = list(map(int, input().split()))
  b = list(map(int, input().split()))
  sa = set(a)
  sb = set(b)
  flg = 1
  for v in sa:
    if v in sb:
      flg = 0
      break
  if flg:
    if n or m:
      for v in a:
        print("Red", v)
      for v in b:
        print("Blue", v)
      continue
    print("No")
    continue
  print("Yes")
  a1 = []
  a2 = []
  for v in a:
    if v in sb:
      a1.append(v)
    else:
      a2.append(v)
  b1 = []
  b2 = []
  for v in b:
    if v in sa:
      b1.append(v)
    else:
      b2.append(v)
  a1.sort()
  for v in a2:
    print("Red", v)
  x = a1.pop()
  print("Red", x)
  print("Blue", x)
  for v in b2:
    print("Blue", v)
  flg = 1
  for v in a1:
    if flg:
      print("Blue", v)
      print("Red", v)
    else:
      print("Red", v)
      print("Blue", v)
    flg ^= 1
0