結果
問題 | No.2148 ひとりUNO |
ユーザー | ygd. |
提出日時 | 2022-12-05 23:34:30 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 229 ms / 2,000 ms |
コード長 | 2,761 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 82,164 KB |
実行使用メモリ | 78,368 KB |
最終ジャッジ日時 | 2024-10-12 19:44:25 |
合計ジャッジ時間 | 8,196 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
54,992 KB |
testcase_01 | AC | 174 ms
78,140 KB |
testcase_02 | AC | 155 ms
77,812 KB |
testcase_03 | AC | 147 ms
77,732 KB |
testcase_04 | AC | 162 ms
78,088 KB |
testcase_05 | AC | 148 ms
77,692 KB |
testcase_06 | AC | 160 ms
77,916 KB |
testcase_07 | AC | 151 ms
77,688 KB |
testcase_08 | AC | 163 ms
77,840 KB |
testcase_09 | AC | 170 ms
77,788 KB |
testcase_10 | AC | 148 ms
77,760 KB |
testcase_11 | AC | 154 ms
77,848 KB |
testcase_12 | AC | 168 ms
78,368 KB |
testcase_13 | AC | 158 ms
77,912 KB |
testcase_14 | AC | 155 ms
77,732 KB |
testcase_15 | AC | 158 ms
77,900 KB |
testcase_16 | AC | 204 ms
77,572 KB |
testcase_17 | AC | 210 ms
77,620 KB |
testcase_18 | AC | 206 ms
78,216 KB |
testcase_19 | AC | 204 ms
77,664 KB |
testcase_20 | AC | 229 ms
77,692 KB |
testcase_21 | AC | 217 ms
77,804 KB |
testcase_22 | AC | 210 ms
78,000 KB |
testcase_23 | AC | 197 ms
77,568 KB |
testcase_24 | AC | 206 ms
77,500 KB |
testcase_25 | AC | 216 ms
77,820 KB |
testcase_26 | AC | 168 ms
77,744 KB |
testcase_27 | AC | 183 ms
77,816 KB |
testcase_28 | AC | 168 ms
77,192 KB |
testcase_29 | AC | 164 ms
77,496 KB |
testcase_30 | AC | 164 ms
77,840 KB |
testcase_31 | AC | 171 ms
78,000 KB |
testcase_32 | AC | 167 ms
77,568 KB |
testcase_33 | AC | 168 ms
77,516 KB |
testcase_34 | AC | 171 ms
77,792 KB |
testcase_35 | AC | 168 ms
77,692 KB |
testcase_36 | AC | 161 ms
77,300 KB |
testcase_37 | AC | 169 ms
77,644 KB |
testcase_38 | AC | 170 ms
77,924 KB |
testcase_39 | AC | 41 ms
55,248 KB |
ソースコード
import sys #input = sys.stdin.readline #input = sys.stdin.buffer.readline #文字列はダメ #sys.setrecursionlimit(1000000) import math import bisect #import itertools #import random #from heapq import heapify, heappop, heappush from collections import defaultdict from collections import deque #import copy #DeepCopy: hoge = [_[:] for _ in hogehoge] #from functools import lru_cache #@lru_cache(maxsize=None) #MOD = pow(10,9) + 7 MOD = 998244353 #dx = [1,0,-1,0] #dy = [0,1,0,-1] #dx8 = [1,1,0,-1,-1,-1,0,1] #dy8 = [0,1,1,1,0,-1,-1,-1] def main(): T = int(input()) for _ in range(T): N = int(input()) dic = defaultdict(list) R = set([]); G = set([]); B = set([]) for i in range(N): c,d = input().split() d = int(d) dic[d].append(c) if c == 'R': R.add(d) if c == 'G': G.add(d) if c == 'B': B.add(d) # print(R,G,B) RGB = set([]) RG = set([]); GB = set([]); BR = set([]) for v,L in dic.items(): if len(L) == 3: RGB.add(v) elif len(L) == 2: if 'R' in L and 'G' in L: RG.add(v) if 'G' in L and 'B' in L: GB.add(v) if 'B' in L and 'R' in L: BR.add(v) # print(RGB,RG,GB,BR) # 1色のみの場合 if len(G) == len(B) == 0: print('YES') elif len(B) == len(R) == 0: print('YES') elif len(R) == len(G) == 0: print('YES') # 2色のみの場合 elif len(R) == 0: if len(GB) >= 1: print('YES') else: print('NO') elif len(G) == 0: if len(BR) >= 1: print('YES') else: print('NO') elif len(B) == 0: if len(RG) >= 1: print('YES') else: print('NO') # 3色ある場合 elif len(RGB) >= 2: print('YES') elif len(RGB) == 1: if len(RG) >= 1 or len(GB) >= 1 or len(BR) >= 1: print('YES') else: # [RN...R3,R2,R1,G1,B1,B2,B3...BN]ならいける if len(R) == 1 or len(G) == 1 or len(B) == 1: print('YES') else: print('NO') else: if len(RG) >= 1 and len(GB) >= 1: print('YES') elif len(GB) >= 1 and len(BR) >= 1: print('YES') elif len(BR) >= 1 and len(RG) >= 1: print('YES') else: print('NO') if __name__ == '__main__': main()