using System; using System.Collections.Generic; class Program { static void Main(string[] args) { //入力 int N = int.Parse(Console.ReadLine()); //N行の入力 string[] s = new string[N]; int[] A = new int[N]; int[] B = new int[N]; int[] C = new int[N]; int[] D = new int[N]; string[] R = new string[N]; for (int i = 0; i < N; i++) { s[i] = Console.ReadLine(); A[i] = int.Parse(s[i].Split(' ')[0]); B[i] = int.Parse(s[i].Split(' ')[1]); C[i] = int.Parse(s[i].Split(' ')[2]); D[i] = int.Parse(s[i].Split(' ')[3]); R[i] = s[i].Split(' ')[4]; } //回答となりうる数字のリスト List ans = new List { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; //回答が一つになるまで続ける while(ans.Count != 1) { for (int i = 0; i < N; i++) { if (R[i] == "YES") { List temp = new List {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; //6つの数字よりなる、取り除く数字のリストを作る temp.Remove(A[i]); temp.Remove(B[i]); temp.Remove(C[i]); temp.Remove(D[i]); //ansリストから、6つの数字を取り除く for (int j = 0; j < 6; j++) { if (ans.Contains(temp[j])){ ans.Remove(temp[j]); } } } else if (R[i] == "NO") { //ansリストから、4つの数字を取り除く if (ans.Contains(A[i])) ans.Remove(A[i]); if (ans.Contains(B[i])) ans.Remove(B[i]); if (ans.Contains(C[i])) ans.Remove(C[i]); if (ans.Contains(D[i])) ans.Remove(D[i]); } } } //出力 Console.WriteLine(ans[0]); } }