結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー qibqib
提出日時 2023-05-20 14:18:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 157,352 KB
最終ジャッジ日時 2024-06-01 07:10:44
合計ジャッジ時間 29,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 236 ms
90,944 KB
testcase_03 AC 137 ms
90,224 KB
testcase_04 AC 131 ms
89,340 KB
testcase_05 AC 134 ms
89,032 KB
testcase_06 AC 135 ms
90,740 KB
testcase_07 AC 120 ms
83,584 KB
testcase_08 AC 157 ms
102,568 KB
testcase_09 AC 149 ms
98,800 KB
testcase_10 AC 142 ms
105,188 KB
testcase_11 AC 177 ms
112,948 KB
testcase_12 AC 154 ms
112,644 KB
testcase_13 AC 190 ms
111,624 KB
testcase_14 AC 149 ms
104,832 KB
testcase_15 AC 132 ms
98,228 KB
testcase_16 AC 164 ms
106,216 KB
testcase_17 AC 156 ms
103,052 KB
testcase_18 AC 187 ms
122,132 KB
testcase_19 AC 222 ms
142,076 KB
testcase_20 AC 193 ms
152,376 KB
testcase_21 AC 206 ms
151,484 KB
testcase_22 AC 186 ms
119,636 KB
testcase_23 AC 207 ms
150,548 KB
testcase_24 AC 199 ms
119,596 KB
testcase_25 AC 200 ms
119,524 KB
testcase_26 AC 190 ms
150,384 KB
testcase_27 AC 207 ms
119,832 KB
testcase_28 AC 212 ms
143,732 KB
testcase_29 AC 205 ms
139,380 KB
testcase_30 AC 222 ms
130,028 KB
testcase_31 AC 205 ms
152,388 KB
testcase_32 AC 220 ms
150,840 KB
testcase_33 AC 195 ms
127,828 KB
testcase_34 AC 212 ms
129,564 KB
testcase_35 AC 237 ms
138,124 KB
testcase_36 AC 204 ms
143,764 KB
testcase_37 AC 209 ms
126,152 KB
testcase_38 AC 370 ms
105,144 KB
testcase_39 AC 437 ms
118,068 KB
testcase_40 AC 186 ms
101,664 KB
testcase_41 AC 207 ms
101,652 KB
testcase_42 AC 231 ms
144,592 KB
testcase_43 AC 222 ms
144,460 KB
testcase_44 AC 215 ms
157,352 KB
testcase_45 AC 224 ms
157,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

color = ["Red", "Blue"]

ans = []
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:
    ans.append("No")
    continue

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

  ans.append("Yes")
  for x in b:
    ans.append(color[1] + " " + str(x))

  if len(xs) > 0:
    x = xs.pop()
    ans.append(color[1] + " " + str(x))
    ans.append(color[0] + " " + str(x))

  for x in a:
    ans.append(color[0] + " " + str(x))

  for i in range(len(xs)):
    ans.append(color[i % 2] + " " + str(xs[i]))
    ans.append(color[1 - i % 2] + " " + str(xs[i]))

print(*ans, sep="\n")
0