結果

問題 No.2148 ひとりUNO
ユーザー ntudantuda
提出日時 2022-12-26 22:20:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 1,423 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 78,744 KB
最終ジャッジ日時 2024-11-21 08:54:52
合計ジャッジ時間 9,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,492 KB
testcase_01 AC 180 ms
77,700 KB
testcase_02 AC 178 ms
77,788 KB
testcase_03 AC 181 ms
77,452 KB
testcase_04 AC 179 ms
77,636 KB
testcase_05 AC 192 ms
78,040 KB
testcase_06 AC 182 ms
77,916 KB
testcase_07 AC 174 ms
77,568 KB
testcase_08 AC 185 ms
78,036 KB
testcase_09 AC 181 ms
77,580 KB
testcase_10 AC 175 ms
77,444 KB
testcase_11 AC 182 ms
77,680 KB
testcase_12 AC 183 ms
78,084 KB
testcase_13 AC 191 ms
78,360 KB
testcase_14 AC 166 ms
77,920 KB
testcase_15 AC 190 ms
78,264 KB
testcase_16 AC 223 ms
77,540 KB
testcase_17 AC 246 ms
78,156 KB
testcase_18 AC 249 ms
78,300 KB
testcase_19 AC 237 ms
78,584 KB
testcase_20 AC 227 ms
77,892 KB
testcase_21 AC 240 ms
78,248 KB
testcase_22 AC 241 ms
77,924 KB
testcase_23 AC 227 ms
77,884 KB
testcase_24 AC 248 ms
78,572 KB
testcase_25 AC 248 ms
77,852 KB
testcase_26 AC 197 ms
78,084 KB
testcase_27 AC 190 ms
77,948 KB
testcase_28 AC 196 ms
78,052 KB
testcase_29 AC 194 ms
78,744 KB
testcase_30 AC 189 ms
77,700 KB
testcase_31 AC 185 ms
78,164 KB
testcase_32 AC 193 ms
78,284 KB
testcase_33 AC 194 ms
78,268 KB
testcase_34 AC 187 ms
78,088 KB
testcase_35 AC 192 ms
77,828 KB
testcase_36 AC 183 ms
77,792 KB
testcase_37 AC 185 ms
77,972 KB
testcase_38 AC 194 ms
77,948 KB
testcase_39 AC 43 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
T = int(input())
dic = {"R":0,"G":1,"B":2}
from collections import defaultdict
dic2 = defaultdict(lambda:[0,0,0])

def ok():
    print("YES")

def ng():
    print("NO")

def solve():
    N = int(input())
    dic2 = defaultdict(lambda: [0, 0, 0])
    Y = 0
    CN = [0] * 3
    for _ in range(N):
        c,d = input().split()
        dic2[int(d)][dic[c]] += 1
        CN[dic[c]] += 1
    D = Counter(CN)
    if D[0] == 2:
        ok()
        return

    if D[0] == 1:
        for i in range(3):
            if CN[i] == 0:
                a,b = (i+1)%3, (i+2)%3
        for x in dic2.values():
            if x[a] > 0 and x[b] > 0:
                ok()
                return
        ng()
        return

    for X in dic2.values():
        D = Counter(X)
        if D[0] > 1:
            continue
        elif D[0] == 1:
            for i in range(3):
                if X[i] == 0:
                    if Y == 0 or Y == i+1:
                        Y = i+1
                    else:
                        ok()
                        return
        elif D[1] == 3:
            for i in range(3):
                if CN[i] - X[i] == 0:
                    ok()
                    return
            if Y == 0:
                Y = 4
            else:
                ok()
                return
        else:
            ok()
            return
    ng()

for i in range(T):
    solve()




0