結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
52,096 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 269 ms
128,484 KB
testcase_19 AC 304 ms
134,408 KB
testcase_20 AC 288 ms
145,080 KB
testcase_21 AC 280 ms
142,464 KB
testcase_22 AC 253 ms
126,800 KB
testcase_23 AC 288 ms
144,448 KB
testcase_24 AC 281 ms
125,728 KB
testcase_25 AC 298 ms
127,468 KB
testcase_26 AC 270 ms
143,380 KB
testcase_27 AC 292 ms
125,988 KB
testcase_28 AC 281 ms
137,900 KB
testcase_29 AC 278 ms
137,344 KB
testcase_30 AC 293 ms
130,484 KB
testcase_31 AC 259 ms
145,136 KB
testcase_32 AC 283 ms
145,084 KB
testcase_33 AC 239 ms
120,008 KB
testcase_34 AC 283 ms
120,928 KB
testcase_35 AC 318 ms
133,144 KB
testcase_36 AC 280 ms
137,236 KB
testcase_37 AC 282 ms
132,032 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 294 ms
78,480 KB
testcase_42 AC 283 ms
134,080 KB
testcase_43 AC 279 ms
133,952 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