結果

問題 No.2148 ひとりUNO
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-03 20:46:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 998 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,580 KB
最終ジャッジ日時 2024-08-03 20:46:12
合計ジャッジ時間 6,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,168 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 134 ms
77,036 KB
testcase_17 AC 134 ms
77,080 KB
testcase_18 AC 132 ms
77,024 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 131 ms
77,004 KB
testcase_22 AC 133 ms
77,020 KB
testcase_23 AC 132 ms
77,028 KB
testcase_24 AC 127 ms
77,036 KB
testcase_25 AC 129 ms
76,868 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 34 ms
53,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2148

import itertools

def solve(N, cd):
    # RGBごとにまとめる
    c_map = {}
    for c, d in cd:
        if c not in c_map:
            c_map[c] = []
        c_map[c].append(d)

    c_array = [valeus for valeus in c_map.values()]    
    if len(c_array) == 1:
        return "YES"

    ok_count = 0
    for p in itertools.combinations(c_array, 2):
        v1 = p[0]
        v2 = p[1]
        v2_set = set(v2)
        for v in v1:
            if v in v2_set:
                ok_count += 1
                break
    if ok_count >= len(c_array) - 1:
        return "YES"
    else:
        return "NO"




def main():
    T = int(input())
    answers = []
    for _ in range(T):
        N = int(input())
        cd = []
        for _ in range(N):
            c, d = input().split()
            cd.append((c, int(d)))
        ans = solve(N, cd)
        answers.append(ans)

    for ans in answers:
        print(ans)


if __name__ == '__main__':
    main()
0