結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,428 KB
testcase_01 AC 185 ms
77,332 KB
testcase_02 AC 183 ms
77,768 KB
testcase_03 AC 180 ms
77,464 KB
testcase_04 AC 179 ms
77,620 KB
testcase_05 AC 208 ms
78,392 KB
testcase_06 AC 192 ms
78,204 KB
testcase_07 AC 181 ms
77,384 KB
testcase_08 AC 186 ms
78,344 KB
testcase_09 AC 181 ms
78,000 KB
testcase_10 AC 178 ms
77,360 KB
testcase_11 AC 182 ms
78,196 KB
testcase_12 AC 183 ms
77,940 KB
testcase_13 AC 190 ms
78,008 KB
testcase_14 AC 168 ms
77,536 KB
testcase_15 AC 185 ms
78,136 KB
testcase_16 AC 218 ms
77,408 KB
testcase_17 AC 245 ms
78,232 KB
testcase_18 AC 248 ms
78,240 KB
testcase_19 AC 248 ms
78,484 KB
testcase_20 AC 237 ms
77,504 KB
testcase_21 AC 244 ms
78,532 KB
testcase_22 AC 243 ms
77,976 KB
testcase_23 AC 230 ms
77,608 KB
testcase_24 AC 254 ms
78,544 KB
testcase_25 AC 261 ms
78,148 KB
testcase_26 AC 205 ms
77,988 KB
testcase_27 AC 197 ms
77,872 KB
testcase_28 AC 209 ms
78,364 KB
testcase_29 AC 195 ms
78,612 KB
testcase_30 AC 191 ms
78,136 KB
testcase_31 AC 196 ms
77,916 KB
testcase_32 AC 197 ms
78,240 KB
testcase_33 AC 194 ms
78,076 KB
testcase_34 AC 190 ms
78,396 KB
testcase_35 AC 196 ms
78,336 KB
testcase_36 AC 188 ms
78,080 KB
testcase_37 AC 187 ms
77,820 KB
testcase_38 AC 196 ms
78,244 KB
testcase_39 AC 42 ms
55,772 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