結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,072 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 192 ms
77,956 KB
testcase_17 AC 187 ms
78,200 KB
testcase_18 AC 190 ms
77,024 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 197 ms
78,072 KB
testcase_22 AC 180 ms
77,704 KB
testcase_23 AC 209 ms
77,704 KB
testcase_24 AC 202 ms
77,788 KB
testcase_25 AC 180 ms
77,324 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 37 ms
53,484 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