結果

問題 No.2148 ひとりUNO
ユーザー qibqib
提出日時 2022-12-18 00:41:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 778 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 78,884 KB
最終ジャッジ日時 2024-04-28 15:40:45
合計ジャッジ時間 7,911 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,684 KB
testcase_01 WA -
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 AC 218 ms
77,332 KB
testcase_17 AC 212 ms
77,572 KB
testcase_18 AC 205 ms
76,916 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 225 ms
77,572 KB
testcase_22 AC 201 ms
77,304 KB
testcase_23 AC 232 ms
77,964 KB
testcase_24 AC 236 ms
77,268 KB
testcase_25 AC 207 ms
77,076 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 39 ms
52,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for _ in range(t):
  n = int(input())
  r = set()
  g = set()
  b = set()
  for _ in range(n):
    c, d = input().split()
    if c == 'R':
      r.add(int(d))
    elif c == 'G':
      g.add(int(d))
    elif c == 'B':
      b.add(int(d))
  rg = len(r & g) > 0
  gb = len(g & b) > 0
  br = len(b & r) > 0
  re = len(r) == 0
  ge = len(g) == 0
  be = len(b) == 0
  if (re and ge) or (ge and be) or (be and re):
    print("YES")
  elif re:
    if gb:
      print("YES")
    else:
      print("NO")
  elif ge:
    if br:
      print("YES")
    else:
      print("NO")
  elif be:
    if rg:
      print("YES")
    else:
      print("NO")
  elif rg and gb:
    print("YES")
  elif gb and br:
    print("YES")
  elif br and rg:
    print("YES")
  else:
    print("NO")
0