結果

問題 No.2148 ひとりUNO
ユーザー trineutrontrineutron
提出日時 2022-12-05 04:30:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 1,124 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-12 03:34:39
合計ジャッジ時間 7,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 59 ms
10,624 KB
testcase_02 AC 59 ms
10,496 KB
testcase_03 AC 60 ms
10,752 KB
testcase_04 AC 59 ms
10,496 KB
testcase_05 AC 59 ms
10,624 KB
testcase_06 AC 59 ms
10,496 KB
testcase_07 AC 59 ms
10,496 KB
testcase_08 AC 59 ms
10,368 KB
testcase_09 AC 58 ms
10,624 KB
testcase_10 AC 59 ms
10,624 KB
testcase_11 AC 59 ms
10,624 KB
testcase_12 AC 58 ms
10,624 KB
testcase_13 AC 60 ms
10,496 KB
testcase_14 AC 59 ms
10,624 KB
testcase_15 AC 60 ms
10,496 KB
testcase_16 AC 305 ms
10,624 KB
testcase_17 AC 301 ms
10,624 KB
testcase_18 AC 305 ms
10,624 KB
testcase_19 AC 312 ms
10,752 KB
testcase_20 AC 296 ms
10,496 KB
testcase_21 AC 308 ms
10,752 KB
testcase_22 AC 301 ms
10,624 KB
testcase_23 AC 304 ms
10,752 KB
testcase_24 AC 296 ms
10,624 KB
testcase_25 AC 294 ms
10,624 KB
testcase_26 AC 138 ms
10,752 KB
testcase_27 AC 139 ms
10,624 KB
testcase_28 AC 132 ms
10,624 KB
testcase_29 AC 135 ms
10,752 KB
testcase_30 AC 137 ms
10,624 KB
testcase_31 AC 135 ms
10,752 KB
testcase_32 AC 133 ms
10,624 KB
testcase_33 AC 133 ms
10,624 KB
testcase_34 AC 136 ms
10,752 KB
testcase_35 AC 133 ms
10,752 KB
testcase_36 AC 131 ms
10,752 KB
testcase_37 AC 133 ms
10,624 KB
testcase_38 AC 132 ms
10,624 KB
testcase_39 AC 31 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    colors = [set() for _ in range(n)]
    for _ in range(n):
        c, d = input().split()
        d = int(d)
        d -= 1
        colors[d].add(c)
    count_r = 0
    count_g = 0
    count_b = 0
    rg = 0
    gb = 0
    br = 0
    rgb = 0
    for cs in colors:
        if 'R' in cs:
            count_r += 1
        if 'G' in cs:
            count_g += 1
        if 'B' in cs:
            count_b += 1
        if cs == {'R', 'G'}:
            rg = 1
        if cs == {'G', 'B'}:
            gb = 1
        if cs == {'B', 'R'}:
            br = 1
        if cs == {'R', 'G', 'B'}:
            rgb += 1
    # 1 color
    if count_r + count_g == 0 or count_g + count_b == 0 or count_b + count_r == 0:
        return True
    # 2 colors
    if count_r == 0 or count_g == 0 or count_b == 0:
        return rg + gb + br > 0
    # 3 colors
    if rg + gb + br + rgb >= 2:
        return True
    if rgb == 0:
        return False
    return count_r == 1 or count_g == 1 or count_b == 1


t = int(input())
for _ in range(t):
    if solve():
        print('YES')
    else:
        print('NO')
0