結果
問題 | No.2148 ひとりUNO |
ユーザー | kakel-san |
提出日時 | 2023-01-15 20:27:28 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,242 bytes |
コンパイル時間 | 1,079 ms |
コンパイル使用メモリ | 115,732 KB |
実行使用メモリ | 36,476 KB |
最終ジャッジ日時 | 2024-06-09 08:08:13 |
合計ジャッジ時間 | 3,697 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
26,068 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 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 46 ms
30,340 KB |
testcase_27 | AC | 46 ms
30,472 KB |
testcase_28 | AC | 46 ms
30,092 KB |
testcase_29 | AC | 48 ms
30,096 KB |
testcase_30 | AC | 46 ms
30,336 KB |
testcase_31 | AC | 45 ms
30,604 KB |
testcase_32 | AC | 45 ms
30,220 KB |
testcase_33 | AC | 45 ms
30,080 KB |
testcase_34 | AC | 46 ms
32,512 KB |
testcase_35 | WA | - |
testcase_36 | AC | 50 ms
32,512 KB |
testcase_37 | AC | 48 ms
32,124 KB |
testcase_38 | AC | 47 ms
30,352 KB |
testcase_39 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray(); public static void Main() { Solve(); } static void Solve() { var t = int.Parse(ReadLine()); var ans = new bool[t]; for (var u = 0; u < t; ++u) { var n = int.Parse(ReadLine()); var map = SList(n); var b = new HashSet<int>(); var g = new HashSet<int>(); var r = new HashSet<int>(); foreach (var card in map) { var d = int.Parse(card.Substring(2)); if (card[0] == 'B') b.Add(d); else if (card[0] == 'G') g.Add(d); else r.Add(d); } if (Check(b, g, r)) ans[u] = true; else if (Check(b, r, g)) ans[u] = true; else if (Check(r, b, g)) ans[u] = true; else if (Check(r, g, b)) ans[u] = true; else if (Check(g, b, r)) ans[u] = true; else if (Check(g, r, b)) ans[u] = true; } WriteLine(string.Join("\n", ans.Select(f => f ? "YES" : "NO"))); } static bool Check(HashSet<int> list1, HashSet<int> list2, HashSet<int> list3) { if (list2.Count == 1) { foreach (var li in list2) if (list1.Contains(li) && list3.Contains(li)) return true; } else if (list2.Count > 1) { var f12 = new HashSet<int>(); var f23 = new HashSet<int>(); foreach (var li in list2) { if (list1.Contains(li)) f12.Add(li); if (list3.Contains(li)) f23.Add(li); } if (list3.Count == 0 && f12.Count > 0) return true; if (list3.Count > 0) { foreach (var f2 in f12) if (f23.Count - (f23.Contains(f2) ? 1 : 0) > 0) return true; } } else if (list3.Count == 0) return true; return false; } }