結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー qibqib
提出日時 2023-05-20 14:14:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 659 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 133,084 KB
最終ジャッジ日時 2024-12-21 11:16:32
合計ジャッジ時間 28,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 244 ms
77,440 KB
testcase_03 AC 151 ms
78,948 KB
testcase_04 AC 137 ms
77,952 KB
testcase_05 AC 143 ms
78,336 KB
testcase_06 AC 142 ms
78,292 KB
testcase_07 AC 129 ms
77,696 KB
testcase_08 AC 163 ms
96,128 KB
testcase_09 AC 156 ms
97,152 KB
testcase_10 AC 133 ms
97,664 KB
testcase_11 AC 172 ms
104,088 KB
testcase_12 AC 156 ms
105,868 KB
testcase_13 AC 192 ms
99,136 KB
testcase_14 AC 153 ms
101,760 KB
testcase_15 AC 143 ms
97,328 KB
testcase_16 AC 164 ms
91,520 KB
testcase_17 AC 171 ms
97,268 KB
testcase_18 AC 169 ms
114,944 KB
testcase_19 AC 218 ms
127,100 KB
testcase_20 AC 180 ms
131,520 KB
testcase_21 AC 192 ms
133,084 KB
testcase_22 AC 172 ms
119,680 KB
testcase_23 AC 189 ms
132,152 KB
testcase_24 AC 194 ms
119,680 KB
testcase_25 AC 189 ms
118,784 KB
testcase_26 AC 176 ms
129,348 KB
testcase_27 AC 188 ms
119,552 KB
testcase_28 AC 189 ms
125,724 KB
testcase_29 AC 186 ms
120,356 KB
testcase_30 AC 206 ms
115,120 KB
testcase_31 AC 179 ms
131,816 KB
testcase_32 AC 180 ms
131,744 KB
testcase_33 AC 197 ms
107,200 KB
testcase_34 AC 190 ms
129,152 KB
testcase_35 AC 220 ms
121,500 KB
testcase_36 AC 195 ms
127,512 KB
testcase_37 AC 189 ms
114,816 KB
testcase_38 AC 530 ms
76,800 KB
testcase_39 AC 659 ms
78,840 KB
testcase_40 AC 158 ms
76,536 KB
testcase_41 AC 183 ms
76,628 KB
testcase_42 AC 197 ms
126,376 KB
testcase_43 AC 194 ms
126,116 KB
testcase_44 AC 189 ms
130,136 KB
testcase_45 AC 171 ms
130,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

color = ["Red", "Blue"]

for _ in range(t):
  n, m = map(int, input().split())
  a = set(list(map(int, input().split())))
  b = set(list(map(int, input().split())))

  xs = a & b
  if len(a) > 0 and len(b) > 0 and len(xs) == 0:
    print("No")
    continue

  a -= xs
  b -= xs
  xs = list(xs)

  print("Yes")
  for x in b:
    print(f"{color[1]} {x}")

  if len(xs) > 0:
    x = xs.pop()
    print(f"{color[1]} {x}")
    print(f"{color[0]} {x}")

  for x in a:
    print(f"{color[0]} {x}")

  for i in range(len(xs)):
    print(f"{color[i % 2]} {xs[i]}")
    print(f"{color[1 - i % 2]} {xs[i]}")
0