Problem Statement
A finite automaton is a mathematical object that consists of the following components:
- Alphabet A. This is simply a set of characters.
- Set of states S. One of the states is called starting and some of the states are called accepting.
- Transition function F. For each state i from S and for each character j from A the result of this function is some state F(i, j) from S.
For each string composed of alphabet characters, an automaton either accepts or rejects it. This is done as follows. First, the automaton is set to its starting state. Then it subsequently reads all the characters from the given string. For each character c it reads, the automaton's state is changed to F(cur, c), where cur is the automaton's state immediately before reading this character. After all characters are read, the automaton checks its final state. If it is accepting, then the string is accepted, otherwise it is rejected.
You are given a
The transition function is defined as follows. From the i-th state (where state 0 is 'A'), the j-th symbol (where symbol 0 is 'a') will lead to the X-th state, where X = transitions[i][j].
First, the automaton is given an input string of length stringLength consisting entirely of 'a' symbols. The automaton either accepts or rejects the string. Then, the following happens modifications times. One of the symbols in the input string is modified, the automaton is reset to its starting state, and it is then given the new input string, which it either accepts or rejects.
To generate the sequence of modifications you should generate arrays x and c using the following code:
int initElements = length(x0); int letters = length(transitions[0]); for (int i = 0; i < initElements; i++) { x[i] = x0[i] mod stringLength; c[i] = c0[i] mod letters; } for (int i = initElements; i < modifications; i++) { x[i] = 0; c[i] = 0; for (int j = i - initElements; j < i; j++) { x[i] = (x[i] + xa[j - i + initElements] * x[j]) mod stringLength; c[i] = (c[i] + ca[j - i + initElements] * c[j]) mod letters; } }
The i-th element of the array x is the position where the i-th modification occurs. The symbol at position x[i] of the string should be modified to the c[i]-th symbol of the alphabet (where symbol 0 is 'a'). All indices are 0-based.
Return the number of times the automaton accepts a string.
Definition
- Class:
- Automaton
- Method:
- numberOfMatchings
- Parameters:
- String[], int, int[], int[], int[], int[], int
- Returns:
- int
- Method signature:
- int numberOfMatchings(String[] transitions, int stringLength, int[] x0, int[] xa, int[] c0, int[] ca, int modifications)
- (be sure your method is public)
Constraints
- transitions will contain between 1 and 10 elements, inclusive.
- Each element of transitions will contain between 1 and 10 charactes, inclusive.
- All elements of transitions will contain the same number of characters.
- transitions will only contain uppercase letters between 'A' and 'A' + n - 1, inclusive, where n is the number of elements in transitions.
- stringLength and modifications will each be between 1 and 125000, inclusive.
- ca will contain between 1 and 50 elements, inclusive.
- ca will contain at most modifications elements.
- ca, xa, x0 and c0 will each contain the same number of elements.
- Each element of ca, xa, x0 and c0 will be between 0 and 10000, inclusive.
Examples
{"AA"}
1
{0, 0, 0, 0, 0}
{0, 0, 0, 0, 0}
{1, 0, 1, 0, 1}
{0, 0, 0, 0, 0}
5
Returns: 6
An automaton with only one state accepts all strings, so the answer is 6.
{"BA", "AB"}
1
{0, 0, 0, 0, 0}
{0, 0, 0, 0, 0}
{1, 0, 1, 0, 1}
{0, 0, 0, 0, 0}
5
Returns: 3
This automaton has 2 states. It changes state on the symbol 'a' and does nothing on the symbol 'b', so it only accepts strings containing an odd number of 'a's. Of the 6 given strings ("a", "b", "a", "b", "a" and "b"), it accepts only 3.
{"BC", "CA", "AB"}
5
{0, 1, 2, 3, 4}
{0, 0, 0, 0, 0}
{1, 1, 1, 1, 1}
{0, 0, 0, 0, 0}
5
Returns: 2
The automaton is consecutively given 6 strings: "aaaaa", "baaaa", "bbaaa", "bbbaa", "bbbba" and "bbbbb". Two of them ("aaaaa" and "bbbaa") are accepted.
{"ABB", "BAA"}
2
{0, 1}
{1, 1}
{0, 1}
{1, 1}
10
Returns: 5
The automaton is consecutively given 11 strings: "aa", "aa", "ab", "ab", "cb", "ca", "cc", "cc", "cb", "ca", "ba". Five of them ("ab", "ab", "ca", "ca", "ba") are accepted.
{"BA", "AB"}
2
{0, 3, 5}
{10, 9, 7}
{1, 2, 4}
{5, 1, 3}
2400
Returns: 1601
{"AA"}
1
{0,0,0,0,0}
{0,0,0,0,0}
{1,0,1,0,1}
{0,0,0,0,0}
125000
Returns: 125001
{"BA","AB"}
125000
{0,0,0,0,0}
{0,0,0,0,0}
{1,0,1,0,1}
{0,0,0,0,0}
125000
Returns: 3
{"BC", "CA", "AB"}
5
{0, 1, 2, 3, 4}
{0, 0, 0, 0, 0}
{1, 1, 1, 1, 1}
{0, 0, 0, 0, 0}
125000
Returns: 2
{"BA", "AB"}
2
{0, 1, 1}
{0, 1, 1}
{1, 0, 0}
{1, 1, 1}
48000
Returns: 32001
{"JJEAEEGCDD", "CECEECHJFI", "JGFDBFECED", "AFEGFIDBCG", "GEAJJGBIIH", "IHFDCGAJBE", "CDJGBGGEJJ", "CFFDGGBIGJ", "HEJCJBABAD", "HCGGAIEHED"}
10
{1288, 6257}
{8441, 3095}
{9022, 4597}
{1922, 4523}
20
Returns: 2
{"AIGBIBDCHH", "HFEFJHEFFC", "JJIADFBJBF", "DDFBEDEJHC", "HHJBCIBGFG", "AFFJFAGGCJ", "DHEIJIEFJD", "HGAIACHDJC", "JJHGACJIAB", "HFIBGJBAHB"}
10
{8983, 8514, 5819, 1526, 753, 3211, 9228, 3042, 8684, 6719, 3484, 6675, 7801, 8054, 9302, 1791, 5418, 2631, 6042, 1571, 1794, 3099, 6596, 6364, 4793, 5062, 2654, 9416, 6284, 9781, 5969, 1620, 4647, 1789, 3146, 1752, 1352, 2374, 1146, 37, 9094, 983, 6712, 6895, 9037, 2366, 5038, 807, 4997, 1080}
{2378, 6791, 532, 8975, 3156, 5325, 4037, 2162, 1093, 322, 8295, 7063, 8294, 9294, 8852, 1440, 7399, 6556, 3814, 8545, 6593, 9260, 9528, 9658, 2507, 4917, 2024, 3898, 5725, 3374, 1330, 8103, 6517, 1862, 3430, 6025, 3539, 7468, 4539, 4633, 4142, 2834, 1696, 2436, 8481, 6900, 228, 2232, 3456, 4042}
{777, 6402, 9655, 6658, 6060, 8514, 7927, 4436, 2412, 3652, 7810, 3743, 8108, 680, 1957, 1538, 6705, 5497, 5358, 1245, 6482, 5852, 431, 8178, 8288, 5264, 1430, 4868, 7496, 4886, 5263, 8274, 1288, 4918, 1284, 3700, 9784, 9211, 8137, 2197, 9216, 2299, 2292, 3676, 2979, 601, 1566, 9685, 2450, 6925}
{7282, 8932, 2777, 4065, 3462, 7418, 9330, 4892, 2286, 6826, 6131, 7549, 1452, 3771, 8819, 2736, 7472, 8604, 8300, 1961, 7153, 3868, 4260, 5797, 7544, 3592, 6398, 9110, 9629, 8849, 2387, 6911, 4133, 1517, 976, 7596, 5287, 6658, 2488, 3925, 3485, 4971, 7827, 1289, 8743, 2998, 4026, 6215, 7954, 8678}
50
Returns: 1
{"AAC", "ABB", "BAC"}
3
{3743, 5874, 3143, 9717, 4504, 3696, 9762, 9892, 9448, 698, 1259, 3867, 6352, 7809, 1033, 5727, 9579, 1169, 6504, 2141, 176, 6433, 8307, 2916, 5314, 7900, 280, 8424, 6921, 5221, 8960, 665, 7447, 8455, 6734, 1951, 2151, 6497, 1843, 1600, 3547, 9454, 1819, 9900, 7263, 9204, 1979, 3195, 6725, 8483}
{1688, 6901, 1269, 9995, 6170, 2935, 4247, 6450, 1360, 7520, 8023, 320, 8185, 1822, 5127, 1272, 3773, 7278, 4121, 1969, 5230, 7668, 1423, 3401, 3920, 5039, 2605, 5899, 8234, 5682, 735, 9922, 2584, 8356, 6269, 5106, 1291, 516, 7908, 2651, 8036, 2284, 9323, 2574, 4106, 4450, 198, 7880, 8081, 4319}
{9849, 9663, 8339, 7624, 3065, 2260, 2663, 2022, 4511, 7249, 7705, 1598, 7171, 6641, 9954, 9792, 8099, 1246, 6660, 6007, 249, 1049, 8291, 5925, 9975, 2398, 6727, 173, 6630, 1160, 4492, 2831, 824, 2831, 455, 3889, 1443, 9471, 2263, 2307, 6720, 6320, 3905, 244, 2961, 212, 6388, 1060, 7810, 3049}
{7068, 8059, 4098, 1711, 336, 4073, 4109, 7064, 598, 7091, 8224, 5090, 9922, 5400, 4273, 6730, 9289, 2069, 6201, 7905, 4376, 9273, 4225, 8281, 5869, 3539, 8493, 2258, 4599, 6303, 1659, 8019, 715, 5757, 6083, 7403, 6182, 6544, 4467, 6780, 3636, 9044, 8222, 9910, 4444, 8847, 6640, 86, 916, 9193}
125000
Returns: 37344
{"AAB", "CBA", "BCB"}
125000
{715, 8861, 615, 5477, 6296, 2403, 1123, 9493, 5705, 1535, 3382, 2859, 110, 9508, 9684, 7786, 4283, 5748, 4766, 6788, 1107, 6875, 6553, 7880, 1896, 9348, 8520, 172, 330, 8564, 6626, 7398, 3777, 7241, 9227, 73, 9644, 350, 5918, 5349, 8237, 9301, 4560, 4700, 8809, 4244, 2486, 9444, 6344, 7253}
{6232, 7451, 480, 9137, 1683, 8728, 8486, 6555, 5253, 5168, 1471, 1879, 2566, 5248, 9120, 1794, 1673, 5116, 8496, 7592, 6817, 3086, 3245, 1377, 7786, 2054, 1973, 272, 7850, 8317, 3877, 434, 2121, 4357, 9571, 156, 3086, 8057, 6712, 8339, 3226, 8183, 6570, 2144, 3432, 5690, 290, 1457, 7158, 8787}
{5401, 3975, 8225, 8646, 1704, 6011, 7052, 3677, 6283, 4902, 8346, 6513, 1688, 6819, 870, 7612, 6976, 308, 5669, 3688, 4999, 5247, 1871, 1569, 3744, 1655, 3611, 4034, 9465, 769, 9173, 4866, 1096, 7398, 3513, 9152, 3409, 565, 2829, 6045, 1820, 7528, 2558, 9860, 4347, 9780, 7472, 1323, 6441, 9494}
{1363, 1440, 4741, 9587, 9362, 4837, 7594, 9325, 5224, 7059, 6447, 4397, 1926, 7543, 8148, 1791, 6696, 7909, 8708, 5877, 306, 6880, 9757, 9216, 6741, 4105, 8997, 565, 1780, 5438, 59, 3144, 3230, 1153, 9083, 8944, 5990, 6677, 8270, 1214, 3737, 4717, 1964, 2015, 8612, 6464, 3806, 1660, 4373, 8866}
125000
Returns: 61055
{"A"}
125000
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
{10, 9, 8, 7, 6, 5, 4, 3 ,2 ,1, 0}
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
{10, 9, 8, 7, 6, 5, 4, 3 ,2 ,1, 0}
125000
Returns: 125001
{"AB","BA"}
500
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
{10, 9, 8, 7, 6, 5, 4, 3 ,2 ,1, 0}
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
{10, 9, 8, 7, 6, 5, 4, 3 ,2 ,1, 0}
500
Returns: 246
{"ABC", "ABC", "ABC"}
50000
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
{10, 9, 8, 7, 6, 5, 4, 3 ,2 ,1, 0}
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
{10, 9, 8, 7, 6, 5, 4, 3 ,2 ,1, 0}
50000
Returns: 0
{"J","J","J","J","J","J","J","J","J","J"}
125000
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
{10, 9, 8, 7, 6, 5, 4, 3 ,2 ,1, 0}
{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
{10, 9, 8, 7, 6, 5, 4, 3 ,2 ,1, 0}
125000
Returns: 125001
{"GJAC", "ABDG", "BFCJ", "BBCJ", "IEGF", "JFHE", "DCAE", "HJDF", "AGJA", "HCGA"}
50
{208, 3141, 2032, 7769, 982}
{6884, 3968, 7900, 6730, 1535}
{5375, 2022, 5642, 8742, 2716}
{4827, 2466, 5158, 6901, 1925}
5
Returns: 0
{"AIGB", "IBDC", "HHHF", "EFJH", "EFFC", "JJIA", "DFBJ", "BFDD", "FBED", "EJHC"}
50
{7337, 2077, 4499, 5421, 1512, 3698, 8081, 3436, 4505, 6166, 3590, 7775, 4635, 2909, 2795, 4350, 7556, 2436, 9482, 9159, 8873, 5407, 8284, 7088, 1719, 6578, 6404, 4485, 1929, 4113, 1387, 9266, 6190, 2238, 1040, 7702, 5937, 5473, 1139, 442, 1639, 4729, 8217, 2626, 3990, 1012, 3329, 7898, 9800, 2811}
{7057, 5025, 8218, 5341, 8466, 6289, 8271, 4870, 7127, 201, 8983, 8514, 5819, 1526, 753, 3211, 9228, 3042, 8684, 6719, 3484, 6675, 7801, 8054, 9302, 1791, 5418, 2631, 6042, 1571, 1794, 3099, 6596, 6364, 4793, 5062, 2654, 9416, 6284, 9781, 5969, 1620, 4647, 1789, 3146, 1752, 1352, 2374, 1146, 37}
{9094, 983, 6712, 6895, 9037, 2366, 5038, 807, 4997, 1080, 2378, 6791, 532, 8975, 3156, 5325, 4037, 2162, 1093, 322, 8295, 7063, 8294, 9294, 8852, 1440, 7399, 6556, 3814, 8545, 6593, 9260, 9528, 9658, 2507, 4917, 2024, 3898, 5725, 3374, 1330, 8103, 6517, 1862, 3430, 6025, 3539, 7468, 4539, 4633}
{4142, 2834, 1696, 2436, 8481, 6900, 228, 2232, 3456, 4042, 777, 6402, 9655, 6658, 6060, 8514, 7927, 4436, 2412, 3652, 7810, 3743, 8108, 680, 1957, 1538, 6705, 5497, 5358, 1245, 6482, 5852, 431, 8178, 8288, 5264, 1430, 4868, 7496, 4886, 5263, 8274, 1288, 4918, 1284, 3700, 9784, 9211, 8137, 2197}
50
Returns: 40
{"CEEE", "ECEJ", "FJGH", "EDJB", "HBGD", "DBEI", "CCDD", "EJFG", "FBDJ", "GHIB"}
50
{8498, 5526, 7328, 9695, 6809, 7700, 1706, 8617, 7053, 4642, 9152, 3526, 9696, 7026, 6537, 6590, 4880, 4470, 7376, 7674, 2641, 1543, 371, 6347, 9244, 9646, 6988, 8400, 8153, 7249, 9364, 6652, 2775, 3044, 6347, 5937, 744, 8053, 906, 7798, 9048, 58, 7676, 5096, 7085, 565, 8038, 1965, 1388, 5414}
{9640, 4029, 3309, 6363, 6728, 2554, 6009, 3717, 7306, 514, 966, 6670, 3518, 93, 9715, 9865, 6030, 6811, 4271, 6936, 961, 9671, 6995, 8638, 1119, 432, 9203, 9157, 8749, 6943, 924, 4741, 973, 4233, 7456, 7701, 3139, 9817, 7770, 446, 332, 5088, 3468, 3850, 5182, 9535, 68, 7564, 2699, 691}
{4501, 3660, 6714, 7848, 8650, 7833, 4632, 4206, 6990, 9733, 1149, 4266, 4475, 2122, 4852, 8283, 6176, 7991, 8101, 298, 4789, 4785, 5387, 8258, 4987, 6921, 4145, 5055, 4485, 6844, 2098, 5338, 6857, 8812, 9538, 5507, 6645, 4170, 9713, 9988, 3904, 7215, 4254, 4731, 9337, 5458, 3014, 1865, 3450, 7467}
{8516, 8239, 2252, 3903, 2849, 7240, 7176, 3347, 8647, 1661, 191, 746, 7000, 3400, 9558, 6538, 8908, 2556, 7061, 4973, 2544, 7317, 2188, 3150, 2048, 7878, 8609, 1414, 6095, 8411, 8882, 4611, 3002, 7486, 4866, 5852, 4726, 2042, 5551, 9726, 3704, 5742, 472, 7056, 5495, 6382, 3594, 4403, 8938, 7007}
500
Returns: 36
{"DJGJ", "DBCD", "DFGA", "AGCC", "DIFI", "IEAD", "EIIH", "JHID", "IEED", "HIGC"}
50
{6573, 7282, 2972, 6974, 4831, 6677, 1828, 8436, 3475, 2424, 7095, 683, 5060, 5745, 1799, 784, 5866, 1117, 4202, 4457, 3896, 6182, 7922, 9934, 2578, 1416, 9249, 1775, 3684, 5476, 5107, 6610, 2758, 4432, 3584, 3941, 1109, 5412, 2378, 936, 4188, 9473, 1619, 9249, 1570, 3418, 33, 7436, 887, 587}
{8246, 1135, 6769, 6168, 7421, 9347, 7585, 6671, 7474, 7621, 2147, 2582, 4231, 1257, 3366, 4167, 5199, 827, 9580, 7577, 1763, 120, 3402, 9734, 9369, 4972, 3153, 5755, 8761, 392, 6342, 7007, 1528, 3112, 3175, 5301, 8811, 7112, 1972, 2638, 4734, 4119, 1572, 5317, 1729, 4938, 9485, 6928, 5765, 5417}
{857, 3880, 5537, 4259, 3614, 4907, 9231, 6767, 662, 4344, 3512, 3356, 1351, 1392, 6468, 879, 6693, 1632, 4343, 8666, 4270, 5429, 9137, 2194, 747, 866, 7132, 6584, 4146, 9249, 2001, 5003, 3129, 7538, 9262, 6743, 8797, 4846, 9863, 5811, 5542, 9727, 9168, 3246, 7471, 1988, 477, 4164, 9972, 4820}
{9182, 594, 6602, 4672, 2788, 3701, 5538, 6272, 285, 6037, 5521, 2286, 1040, 5002, 6176, 6655, 8098, 4974, 7853, 7961, 7137, 3395, 4040, 6305, 2993, 1511, 8294, 3470, 5675, 4618, 4643, 1210, 5213, 1245, 5882, 8001, 4946, 7772, 4274, 5231, 3809, 6147, 3869, 1202, 1150, 45, 4209, 9248, 1371, 2062}
5000
Returns: 331
{"BIAI", "ADFC", "GCFE", "FHEC", "DCGJ", "EFII", "CCDH", "FDBI", "DBJD", "HGHD"}
50
{3791, 2632, 367, 5288, 2341, 4784, 5922, 2216, 9166, 9799, 8738, 8982, 2106, 1268, 4680, 580, 3632, 8236, 6937, 958, 589, 5171, 3048, 1082, 4712, 3659, 535, 3799, 2786, 8444, 2425, 6577, 7428, 9144, 8217, 9769, 3928, 4139, 8338, 9447, 290, 7076, 4781, 2397, 8344, 9462, 2977, 1976, 4050, 6267}
{9286, 4639, 1438, 2335, 2073, 2502, 5994, 8960, 2654, 5132, 7404, 5079, 8061, 4832, 4223, 6278, 953, 4504, 418, 9291, 3951, 708, 2719, 5084, 9457, 1063, 4546, 8787, 9392, 8596, 5054, 8678, 9587, 2844, 7365, 1660, 5346, 9712, 620, 8000, 1196, 8024, 9431, 9258, 9208, 3655, 1888, 162, 4511, 8658}
{9453, 4814, 9367, 2173, 9898, 5176, 9588, 4445, 3963, 8980, 9393, 5369, 4011, 5333, 8213, 7728, 6993, 9912, 3792, 3966, 4264, 4989, 1990, 48, 599, 7551, 3703, 2487, 7713, 4566, 1146, 3518, 9380, 6865, 2043, 9278, 8393, 1632, 75, 2357, 6964, 5821, 4078, 7327, 1154, 8644, 1408, 8147, 8556, 5200}
{2113, 9172, 6541, 456, 9220, 7140, 8007, 9275, 5980, 2072, 3841, 3478, 5590, 9573, 6695, 7634, 5204, 5088, 9266, 5279, 3797, 2582, 7452, 7876, 9910, 8606, 6520, 7670, 3106, 1428, 2870, 1571, 6952, 5764, 8379, 6173, 2904, 2738, 1800, 5236, 4810, 1994, 5066, 401, 1567, 1761, 4387, 6771, 6850, 5}
125000
Returns: 6954
{"GJ", "AC", "AB", "DG", "BF", "CJ", "BB", "CJ", "IE", "GF"}
50
{8939, 7755, 3367, 694, 2833}
{7372, 6090, 2074, 3107, 579}
{413, 515, 50, 8856, 2789}
{8210, 8247, 6152, 3276, 910}
5
Returns: 0
{"AI", "GB", "IB", "DC", "HH", "HF", "EF", "JH", "EF", "FC"}
50
{3269, 8469, 9318, 5020, 3363, 8295, 9641, 8779, 5251, 85, 9573, 2773, 8215, 6311, 8294, 2963, 6414, 8999, 1357, 6902, 7337, 2077, 4499, 5421, 1512, 3698, 8081, 3436, 4505, 6166, 3590, 7775, 4635, 2909, 2795, 4350, 7556, 2436, 9482, 9159, 8873, 5407, 8284, 7088, 1719, 6578, 6404, 4485, 1929, 4113}
{1387, 9266, 6190, 2238, 1040, 7702, 5937, 5473, 1139, 442, 1639, 4729, 8217, 2626, 3990, 1012, 3329, 7898, 9800, 2811, 7057, 5025, 8218, 5341, 8466, 6289, 8271, 4870, 7127, 201, 8983, 8514, 5819, 1526, 753, 3211, 9228, 3042, 8684, 6719, 3484, 6675, 7801, 8054, 9302, 1791, 5418, 2631, 6042, 1571}
{1794, 3099, 6596, 6364, 4793, 5062, 2654, 9416, 6284, 9781, 5969, 1620, 4647, 1789, 3146, 1752, 1352, 2374, 1146, 37, 9094, 983, 6712, 6895, 9037, 2366, 5038, 807, 4997, 1080, 2378, 6791, 532, 8975, 3156, 5325, 4037, 2162, 1093, 322, 8295, 7063, 8294, 9294, 8852, 1440, 7399, 6556, 3814, 8545}
{6593, 9260, 9528, 9658, 2507, 4917, 2024, 3898, 5725, 3374, 1330, 8103, 6517, 1862, 3430, 6025, 3539, 7468, 4539, 4633, 4142, 2834, 1696, 2436, 8481, 6900, 228, 2232, 3456, 4042, 777, 6402, 9655, 6658, 6060, 8514, 7927, 4436, 2412, 3652, 7810, 3743, 8108, 680, 1957, 1538, 6705, 5497, 5358, 1245}
50
Returns: 10
{"CE", "EE", "EC", "EJ", "FJ", "GH", "ED", "JB", "HB", "GD"}
50
{6473, 8701, 7874, 6658, 542, 1502, 7933, 4433, 2794, 1819, 7815, 2696, 3705, 7701, 2923, 4289, 9156, 8507, 3908, 4611, 8498, 5526, 7328, 9695, 6809, 7700, 1706, 8617, 7053, 4642, 9152, 3526, 9696, 7026, 6537, 6590, 4880, 4470, 7376, 7674, 2641, 1543, 371, 6347, 9244, 9646, 6988, 8400, 8153, 7249}
{9364, 6652, 2775, 3044, 6347, 5937, 744, 8053, 906, 7798, 9048, 58, 7676, 5096, 7085, 565, 8038, 1965, 1388, 5414, 9640, 4029, 3309, 6363, 6728, 2554, 6009, 3717, 7306, 514, 966, 6670, 3518, 93, 9715, 9865, 6030, 6811, 4271, 6936, 961, 9671, 6995, 8638, 1119, 432, 9203, 9157, 8749, 6943}
{924, 4741, 973, 4233, 7456, 7701, 3139, 9817, 7770, 446, 332, 5088, 3468, 3850, 5182, 9535, 68, 7564, 2699, 691, 4501, 3660, 6714, 7848, 8650, 7833, 4632, 4206, 6990, 9733, 1149, 4266, 4475, 2122, 4852, 8283, 6176, 7991, 8101, 298, 4789, 4785, 5387, 8258, 4987, 6921, 4145, 5055, 4485, 6844}
{2098, 5338, 6857, 8812, 9538, 5507, 6645, 4170, 9713, 9988, 3904, 7215, 4254, 4731, 9337, 5458, 3014, 1865, 3450, 7467, 8516, 8239, 2252, 3903, 2849, 7240, 7176, 3347, 8647, 1661, 191, 746, 7000, 3400, 9558, 6538, 8908, 2556, 7061, 4973, 2544, 7317, 2188, 3150, 2048, 7878, 8609, 1414, 6095, 8411}
500
Returns: 128
{"DJ", "GJ", "DB", "CD", "DF", "GA", "AG", "CC", "DI", "FI"}
50
{7208, 6284, 8650, 4763, 5724, 3768, 9318, 3417, 2239, 6427, 5628, 7113, 6038, 44, 3494, 2963, 9197, 2268, 6226, 3332, 6573, 7282, 2972, 6974, 4831, 6677, 1828, 8436, 3475, 2424, 7095, 683, 5060, 5745, 1799, 784, 5866, 1117, 4202, 4457, 3896, 6182, 7922, 9934, 2578, 1416, 9249, 1775, 3684, 5476}
{5107, 6610, 2758, 4432, 3584, 3941, 1109, 5412, 2378, 936, 4188, 9473, 1619, 9249, 1570, 3418, 33, 7436, 887, 587, 8246, 1135, 6769, 6168, 7421, 9347, 7585, 6671, 7474, 7621, 2147, 2582, 4231, 1257, 3366, 4167, 5199, 827, 9580, 7577, 1763, 120, 3402, 9734, 9369, 4972, 3153, 5755, 8761, 392}
{6342, 7007, 1528, 3112, 3175, 5301, 8811, 7112, 1972, 2638, 4734, 4119, 1572, 5317, 1729, 4938, 9485, 6928, 5765, 5417, 857, 3880, 5537, 4259, 3614, 4907, 9231, 6767, 662, 4344, 3512, 3356, 1351, 1392, 6468, 879, 6693, 1632, 4343, 8666, 4270, 5429, 9137, 2194, 747, 866, 7132, 6584, 4146, 9249}
{2001, 5003, 3129, 7538, 9262, 6743, 8797, 4846, 9863, 5811, 5542, 9727, 9168, 3246, 7471, 1988, 477, 4164, 9972, 4820, 9182, 594, 6602, 4672, 2788, 3701, 5538, 6272, 285, 6037, 5521, 2286, 1040, 5002, 6176, 6655, 8098, 4974, 7853, 7961, 7137, 3395, 4040, 6305, 2993, 1511, 8294, 3470, 5675, 4618}
5000
Returns: 454
{"BI", "AI", "AD", "FC", "GC", "FE", "FH", "EC", "DC", "GJ"}
50
{3464, 5955, 6178, 5698, 2122, 6012, 7203, 6357, 7325, 2353, 1881, 5738, 493, 9541, 4259, 9453, 9087, 9126, 1557, 2273, 3791, 2632, 367, 5288, 2341, 4784, 5922, 2216, 9166, 9799, 8738, 8982, 2106, 1268, 4680, 580, 3632, 8236, 6937, 958, 589, 5171, 3048, 1082, 4712, 3659, 535, 3799, 2786, 8444}
{2425, 6577, 7428, 9144, 8217, 9769, 3928, 4139, 8338, 9447, 290, 7076, 4781, 2397, 8344, 9462, 2977, 1976, 4050, 6267, 9286, 4639, 1438, 2335, 2073, 2502, 5994, 8960, 2654, 5132, 7404, 5079, 8061, 4832, 4223, 6278, 953, 4504, 418, 9291, 3951, 708, 2719, 5084, 9457, 1063, 4546, 8787, 9392, 8596}
{5054, 8678, 9587, 2844, 7365, 1660, 5346, 9712, 620, 8000, 1196, 8024, 9431, 9258, 9208, 3655, 1888, 162, 4511, 8658, 9453, 4814, 9367, 2173, 9898, 5176, 9588, 4445, 3963, 8980, 9393, 5369, 4011, 5333, 8213, 7728, 6993, 9912, 3792, 3966, 4264, 4989, 1990, 48, 599, 7551, 3703, 2487, 7713, 4566}
{1146, 3518, 9380, 6865, 2043, 9278, 8393, 1632, 75, 2357, 6964, 5821, 4078, 7327, 1154, 8644, 1408, 8147, 8556, 5200, 2113, 9172, 6541, 456, 9220, 7140, 8007, 9275, 5980, 2072, 3841, 3478, 5590, 9573, 6695, 7634, 5204, 5088, 9266, 5279, 3797, 2582, 7452, 7876, 9910, 8606, 6520, 7670, 3106, 1428}
125000
Returns: 0
{"AAB", "CBA", "BCB"}
125000
{715, 8861, 615, 5477, 6296, 2403, 1123, 9493, 5705, 1535, 3382, 2859, 110, 9508, 9684, 7786, 4283, 5748, 4766, 6788, 1107, 6875, 6553, 7880, 1896, 9348, 8520, 172, 330, 8564, 6626, 7398, 3777, 7241, 9227, 73, 9644, 350, 5918, 5349, 8237, 9301, 4560, 4700, 8809, 4244, 2486, 9444, 6344, 7253}
{6232, 7451, 480, 9137, 1683, 8728, 8486, 6555, 5253, 5168, 1471, 1879, 2566, 5248, 9120, 1794, 1673, 5116, 8496, 7592, 6817, 3086, 3245, 1377, 7786, 2054, 1973, 272, 7850, 8317, 3877, 434, 2121, 4357, 9571, 156, 3086, 8057, 6712, 8339, 3226, 8183, 6570, 2144, 3432, 5690, 290, 1457, 7158, 8787}
{5401, 3975, 8225, 8646, 1704, 6011, 7052, 3677, 6283, 4902, 8346, 6513, 1688, 6819, 870, 7612, 6976, 308, 5669, 3688, 4999, 5247, 1871, 1569, 3744, 1655, 3611, 4034, 9465, 769, 9173, 4866, 1096, 7398, 3513, 9152, 3409, 565, 2829, 6045, 1820, 7528, 2558, 9860, 4347, 9780, 7472, 1323, 6441, 9494}
{1363, 1440, 4741, 9587, 9362, 4837, 7594, 9325, 5224, 7059, 6447, 4397, 1926, 7543, 8148, 1791, 6696, 7909, 8708, 5877, 306, 6880, 9757, 9216, 6741, 4105, 8997, 565, 1780, 5438, 59, 3144, 3230, 1153, 9083, 8944, 5990, 6677, 8270, 1214, 3737, 4717, 1964, 2015, 8612, 6464, 3806, 1660, 4373, 8866}
125000
Returns: 61055
{"AAC", "ABB", "BAC"}
3
{3743, 5874, 3143, 9717, 4504, 3696, 9762, 9892, 9448, 698, 1259, 3867, 6352, 7809, 1033, 5727, 9579, 1169, 6504, 2141, 176, 6433, 8307, 2916, 5314, 7900, 280, 8424, 6921, 5221, 8960, 665, 7447, 8455, 6734, 1951, 2151, 6497, 1843, 1600, 3547, 9454, 1819, 9900, 7263, 9204, 1979, 3195, 6725, 8483}
{1688, 6901, 1269, 9995, 6170, 2935, 4247, 6450, 1360, 7520, 8023, 320, 8185, 1822, 5127, 1272, 3773, 7278, 4121, 1969, 5230, 7668, 1423, 3401, 3920, 5039, 2605, 5899, 8234, 5682, 735, 9922, 2584, 8356, 6269, 5106, 1291, 516, 7908, 2651, 8036, 2284, 9323, 2574, 4106, 4450, 198, 7880, 8081, 4319}
{9849, 9663, 8339, 7624, 3065, 2260, 2663, 2022, 4511, 7249, 7705, 1598, 7171, 6641, 9954, 9792, 8099, 1246, 6660, 6007, 249, 1049, 8291, 5925, 9975, 2398, 6727, 173, 6630, 1160, 4492, 2831, 824, 2831, 455, 3889, 1443, 9471, 2263, 2307, 6720, 6320, 3905, 244, 2961, 212, 6388, 1060, 7810, 3049}
{7068, 8059, 4098, 1711, 336, 4073, 4109, 7064, 598, 7091, 8224, 5090, 9922, 5400, 4273, 6730, 9289, 2069, 6201, 7905, 4376, 9273, 4225, 8281, 5869, 3539, 8493, 2258, 4599, 6303, 1659, 8019, 715, 5757, 6083, 7403, 6182, 6544, 4467, 6780, 3636, 9044, 8222, 9910, 4444, 8847, 6640, 86, 916, 9193}
125000
Returns: 37344
{"AIGBIBDCHH", "HFEFJHEFFC", "JJIADFBJBF", "DDFBEDEJHC", "HHJBCIBGFG", "AFFJFAGGCJ", "DHEIJIEFJD", "HGAIACHDJC", "JJHGACJIAB", "HFIBGJBAHB"}
10
{8983, 8514, 5819, 1526, 753, 3211, 9228, 3042, 8684, 6719, 3484, 6675, 7801, 8054, 9302, 1791, 5418, 2631, 6042, 1571, 1794, 3099, 6596, 6364, 4793, 5062, 2654, 9416, 6284, 9781, 5969, 1620, 4647, 1789, 3146, 1752, 1352, 2374, 1146, 37, 9094, 983, 6712, 6895, 9037, 2366, 5038, 807, 4997, 1080}
{2378, 6791, 532, 8975, 3156, 5325, 4037, 2162, 1093, 322, 8295, 7063, 8294, 9294, 8852, 1440, 7399, 6556, 3814, 8545, 6593, 9260, 9528, 9658, 2507, 4917, 2024, 3898, 5725, 3374, 1330, 8103, 6517, 1862, 3430, 6025, 3539, 7468, 4539, 4633, 4142, 2834, 1696, 2436, 8481, 6900, 228, 2232, 3456, 4042}
{777, 6402, 9655, 6658, 6060, 8514, 7927, 4436, 2412, 3652, 7810, 3743, 8108, 680, 1957, 1538, 6705, 5497, 5358, 1245, 6482, 5852, 431, 8178, 8288, 5264, 1430, 4868, 7496, 4886, 5263, 8274, 1288, 4918, 1284, 3700, 9784, 9211, 8137, 2197, 9216, 2299, 2292, 3676, 2979, 601, 1566, 9685, 2450, 6925}
{7282, 8932, 2777, 4065, 3462, 7418, 9330, 4892, 2286, 6826, 6131, 7549, 1452, 3771, 8819, 2736, 7472, 8604, 8300, 1961, 7153, 3868, 4260, 5797, 7544, 3592, 6398, 9110, 9629, 8849, 2387, 6911, 4133, 1517, 976, 7596, 5287, 6658, 2488, 3925, 3485, 4971, 7827, 1289, 8743, 2998, 4026, 6215, 7954, 8678}
50
Returns: 1
{"JJEAEEGCDD", "CECEECHJFI", "JGFDBFECED", "AFEGFIDBCG", "GEAJJGBIIH", "IHFDCGAJBE", "CDJGBGGEJJ", "CFFDGGBIGJ", "HEJCJBABAD", "HCGGAIEHED"}
10
{1288, 6257}
{8441, 3095}
{9022, 4597}
{1922, 4523}
20
Returns: 2
{"DGHGDCACHH", "GFDAHGCDGA", "BGGHDDGHGB", "EBJDHFFJJE", "IGJCGJAACI", "CDEJDJEBJB", "EFCEICBEDA", "ACICGHBGJF", "ECBADGBHHA", "IBFDHGFICA"}
125000
{51, 8202, 3972, 4019, 3574, 5450, 4528, 1237, 7506, 578, 7973, 3482, 1440, 9216, 8604, 6355, 7342, 1556, 1592, 4391, 9976, 4773, 4012, 2564, 6096, 3702, 3340, 9463, 3220, 8582, 4573, 9623, 6784, 4898, 9995, 359, 348, 4523, 1596, 4207, 5101, 5921, 7689, 2893, 1489, 2646, 9248, 5183, 4202, 7193}
{9574, 530, 1966, 3587, 9446, 4414, 7289, 2786, 229, 6861, 7720, 1154, 2837, 857, 2404, 2832, 7568, 2753, 3707, 5516, 3312, 5161, 7790, 7353, 8054, 9279, 9999, 3655, 4463, 553, 848, 4037, 1084, 9166, 3976, 530, 9932, 7617, 9669, 6513, 831, 3741, 7667, 3668, 4598, 72, 2852, 8518, 9177, 6559}
{4035, 2489, 8072, 1825, 6194, 6127, 1104, 6194, 6134, 1919, 6747, 3334, 5957, 4183, 8852, 6285, 1066, 8784, 3903, 7087, 5297, 1086, 828, 9316, 4754, 1779, 5740, 3958, 297, 4917, 6869, 684, 3758, 4942, 2509, 9953, 7421, 9966, 2499, 3555, 1885, 5598, 6889, 4194, 6134, 2093, 480, 3552, 7229, 735}
{639, 2526, 8173, 7819, 8194, 2927, 5950, 3935, 3237, 2600, 5204, 106, 3284, 8963, 1400, 5794, 5268, 8821, 5760, 4119, 2376, 3997, 6069, 5617, 8192, 2203, 4062, 5024, 2107, 1291, 2111, 2746, 169, 284, 6918, 8364, 9563, 9220, 2299, 2800, 1820, 3855, 9258, 5105, 9170, 659, 7251, 790, 9480, 9363}
125000
Returns: 0
{"GDIDCHGEDA", "DJEHIGHCIE", "EJDGBFIBGG", "HCBGFFDEJJ", "GDIAAHIJBG", "FIHIEIGFAE", "BJGEFEJBII", "AEDIGEHEFB", "CBJJBFIJAA", "DDJAHHGGIE"}
20000
{5197, 888, 6420, 9840, 8498, 3358, 7406, 5728, 7642, 2104, 5949, 7086, 2475, 5010, 5555, 8368, 4597, 4415, 638, 350, 8537, 1821, 4993, 87, 5413, 5773, 4314, 1199, 6901, 1684, 2745, 2098, 2572, 9165, 8291, 7422, 2523, 5697, 3150, 6517, 7801, 5451, 3603, 6628, 461, 5511, 4997, 5059, 9926, 5635}
{5409, 8464, 3808, 6754, 4903, 9222, 8879, 5569, 421, 5781, 7253, 3167, 4231, 6177, 8684, 2522, 3599, 1208, 4572, 3102, 4077, 8725, 8553, 7681, 5354, 5367, 3192, 6703, 6778, 9470, 8690, 2187, 4286, 2498, 5293, 5541, 8072, 4173, 7462, 4846, 6306, 4715, 8013, 537, 7244, 3049, 3060, 844, 609, 3984}
{3946, 4687, 2709, 8851, 8720, 8063, 4218, 8264, 1118, 996, 7734, 9808, 9535, 8373, 2307, 1181, 266, 379, 5354, 7729, 1577, 8012, 8796, 9590, 8549, 6041, 8992, 7961, 3237, 9601, 1945, 3535, 640, 4655, 8738, 9360, 9070, 2957, 7624, 189, 305, 1711, 9997, 9841, 6436, 8656, 1022, 6702, 5388, 2728}
{783, 6965, 740, 9580, 2908, 9289, 1973, 1900, 3603, 1562, 7853, 5548, 1449, 8494, 203, 187, 7854, 9274, 3144, 1831, 5815, 3450, 9894, 5812, 9643, 6330, 821, 665, 3032, 6209, 3393, 3816, 3174, 485, 9748, 2434, 6126, 1721, 4334, 9729, 9635, 8540, 5278, 1084, 7034, 1833, 1271, 1240, 1107, 4416}
125000
Returns: 13917
{"IEIGDHIDAE", "ADIEDDEHCJ", "GAHGCAJGHC", "CHHCGABGFD", "BIHBEAEJHG", "IFJHEDJDJJ", "GDGDGEFHBB", "DCJADDCAEJ", "GCHHBBABEA", "CCDIFBFBBG"}
125000
{6484, 4184, 3370, 4045, 8874, 2535, 1758, 9658, 5705, 8763, 1529, 964, 3797, 7666, 441, 1531, 309, 4982, 2214, 8354, 9504, 5216, 4666, 1867, 1856, 6144, 8829, 5101, 7407, 9692, 6677, 3891, 3876, 47, 7936, 9102, 8935, 6046, 8760, 4640, 1161, 289, 5604, 4959, 4308, 6046, 2842, 4617, 7380, 5056}
{2971, 6884, 272, 3990, 8751, 2128, 6486, 3932, 7230, 3893, 3624, 259, 7784, 3852, 6659, 5720, 2954, 5594, 1766, 8066, 234, 2928, 8356, 2191, 4239, 9016, 8237, 7081, 3633, 5617, 8489, 2957, 8853, 8761, 3299, 7604, 7241, 9785, 7889, 823, 3678, 7865, 1083, 1462, 1718, 4094, 3534, 1024, 9688, 1652}
{9091, 6274, 4580, 3799, 4817, 5171, 2815, 9406, 8604, 6448, 1375, 7093, 5757, 228, 2206, 9056, 7833, 9448, 8841, 2074, 271, 2519, 9939, 7706, 3981, 8009, 8152, 3867, 9034, 4192, 5520, 8125, 6819, 100, 1924, 1636, 1624, 1091, 1043, 228, 3891, 2418, 3674, 9649, 2647, 5880, 8705, 6832, 1680, 7547}
{5258, 1952, 6418, 5197, 6010, 400, 3207, 4163, 619, 2241, 4707, 6139, 6718, 1526, 2592, 8642, 3163, 4216, 6085, 4206, 796, 9976, 2976, 4470, 9625, 1975, 6703, 8331, 8807, 8383, 2230, 417, 6687, 8648, 5615, 9050, 5400, 5174, 9565, 6020, 3767, 4272, 2159, 485, 5799, 4751, 5479, 8962, 5319, 1564}
125000
Returns: 0
{"DED", "BDC", "DDA", "EAD", "DED"}
3
{6633, 6434, 7697, 1732, 8739}
{6826, 2130, 8317, 9536, 4492}
{250, 1599, 8566, 3017, 162}
{4212, 4967, 6897, 4052, 2966}
5
Returns: 2
{"GDAFEJBCHI","JFAIDHCGEB","EHCAFIDJBG","JHAIGBDCEF","HAGCIFBEDJ","BEGAIFCDJH","BGACJDIEFH","DHCBGFAIJE","DJIACBFEGH","JGAHIDBFCE"}
125000
{2594,7453,2212,5963,9597,514,8359,6038,4623,7479,9370,9423,19,2587,7808,7684,5963,5601,1739,5098,9682,7393,5773,8349,2227,1217,4250,8200,9362,7668,7696,1946,332,298,1805,3393,1447,437,6732,2294,7297,7018,8920,119,9207,1513,7136,8922,6898,9127}
{8625,4678,643,5730,1619,1012,1129,2767,5540,378,577,5705,6668,7374,8426,8646,4471,1428,3537,5642,2194,7825,3430,3905,1966,8803,9860,4244,1701,5762,6927,8386,9716,3932,110,2350,8759,9824,3999,630,2843,3157,4733,8193,1693,9504,9557,941,1991,9264}
{9584,69,2965,225,42,3819,1226,4447,3556,4599,6080,4289,2395,9138,9453,1713,3755,7782,4840,7267,9107,6236,4804,8012,7831,1972,1551,5040,6310,1450,8818,7350,8226,4992,7151,7566,4901,483,8030,1425,9808,7261,2081,8147,8991,4358,3848,4027,8787,3213}
{6745,6169,9945,9616,9780,4786,5321,8320,1349,4584,7228,1079,4896,9364,3116,2318,5539,4603,6505,8191,924,8106,6701,9404,2567,1381,9363,8959,424,6492,3617,8154,2493,7631,3416,4443,7564,9268,3839,6768,370,2431,5833,1368,8242,3777,7095,6580,1378,2910}
125000
Returns: 52367
{"HCDGEFAIJB","CFBEIDHGAJ","AFGEJCBDIH","FCEGDBAHIJ","FHIGEDCBAJ","FHGJECBAID","GIDEJFHCBA","AEBHFGICDJ","IDJCEABFHG","EJCAHBGDIF"}
125000
{1711,9014,8057,9266,5171,5654,8041,9250,2433,5919,9609,6878,6353,5103,9036,1013,7700,2624,4185,4622,9533,7723,1147,4425,5841,994,8172,4871,2146,5671,9011,5149,1116,5825,2051,7800,9959,1955,7436,4796,5046,9289,8132,7264,6438,6139,8118,8896,2951,5765}
{2252,5443,6645,4629,2577,6305,5693,6597,3022,6221,7376,1672,7339,3064,2735,3551,2229,1773,4994,7846,2491,3971,1659,9163,1715,213,4383,1333,6264,8932,2406,7550,254,2154,2619,5558,88,4508,7154,845,6519,1230,5222,8195,5076,651,1961,6876,1891,3637}
{6237,9649,5988,2597,5423,178,3663,7325,4071,3873,1490,6770,8693,3742,8915,2137,6097,5998,5146,9311,8906,3425,875,1505,4845,5509,5325,3918,6078,5553,712,5076,9367,2874,2396,5110,8337,8329,5956,8441,5825,5006,8335,499,6691,943,6432,160,8596,1645}
{1749,3636,9117,3233,6284,7203,1880,580,2915,1057,5851,9216,103,6264,4664,8267,9825,2349,2783,7488,7638,2438,7815,8403,7749,1535,542,4986,6948,440,5894,5398,8430,7982,7166,7101,9175,184,1913,5324,4646,6760,5043,5003,9427,1803,2568,9149,5429,6824}
125000
Returns: 0
{"AEBCIJGDHF","AGBDHEJCIF","IBFHDGJAEC","JFBEGIADCH","DHBFACEGIJ","HFIGBEJDAC","EBCGDFHAJI","EJIGFCHDAB","EGCJFBIDAH","IJBGACFEDH"}
125000
{760,4835,2499,3023,5028,387,6819,4403,8124,7001,5669,141,1401,7267,7972,2211,1660,1839,99,6289,1466,2317,5995,795,6825,1340,6813,1951,6593,2356,8814,3225,6567,6626,8809,1967,4610,7667,4885,3587,9098,7715,6408,5825,6072,1505,6028,8783,5330,8244}
{553,5154,5856,6472,2501,5600,7152,4931,2549,5078,6367,4744,5717,4785,5783,286,475,901,7840,9967,5890,7469,1582,2254,1012,2972,7121,7805,2983,1846,5220,9207,286,3395,603,6593,8589,2268,4379,5183,8053,3321,2768,1533,1571,413,7487,7119,904,2337}
{5217,836,6307,7760,3908,981,4502,9085,5117,9219,7684,790,6277,250,7823,8661,755,9541,73,5121,3845,8841,3890,3131,8821,4570,678,138,1315,8193,6829,3297,1023,8920,4573,1332,2700,6856,5864,1125,2679,5456,1480,1166,6865,9865,1235,6064,1104,7070}
{1479,1558,8489,1929,2084,1382,6455,9508,9703,702,3437,4137,5451,9414,1349,6212,8338,7484,7418,6504,4659,4224,6280,881,6047,1347,4926,4712,5307,7714,9028,3844,8391,446,6483,4066,1982,2594,9275,8738,922,1025,1680,7330,2565,9085,503,1789,2274,3107}
125000
Returns: 3277
{"FGAJBIDEHC","GICJHAEDBF","DHAGFBIJCE","FDJHGIBCAE","AHDICJBFEG","BEJDIAGFCH","ACEFJBDGHI","ADCGFIBJHE","DGABICJFHE","GHFBECDAJI"}
125000
{3656,8162,9217,6503,8393,1837,2177,5909,4118,345,2895,6031,6596,3507,2599,1124,409,4389,9825,8783,548,5580,6005,4013,5182,7441,6965,3510,7970,6271,3030,432,3550,2492,7251,7425,7239,5910,9985,3418,7937,6378,9144,3151,2851,8133,6379,8700,4607,8411}
{4755,4027,895,19,6651,1735,6801,8400,7858,3627,5840,8408,7191,4534,516,6494,3591,3969,3146,6604,3430,7182,5017,9495,5504,8193,7737,2596,5242,5048,2573,2095,9159,7270,5841,9640,6397,1379,6181,1588,2451,3355,4596,3736,4020,6125,8725,2995,839,3963}
{471,471,4776,447,5910,5814,6271,6259,4641,3605,9438,7182,1090,4456,1739,1404,2878,4689,3853,5210,3560,7907,9385,2663,449,1384,2479,9711,4659,5360,7018,5180,6044,9608,4330,9403,7287,3512,7033,5916,1610,8182,7451,1069,8902,3252,1521,9802,5845,72}
{231,3607,2710,9487,5955,3480,3759,7337,5870,6982,4105,5376,7383,2361,7539,4736,6501,1787,1081,1565,9568,5360,6357,7166,6704,1886,1252,146,1387,5993,2099,4173,2361,6638,580,1402,754,6537,9321,1831,2882,1856,3670,4929,1539,9681,9161,3933,6231,475}
125000
Returns: 0
{"JIGDEBCAFH","GEABFCJHDI","FAJEICHGBD","GIDCFEHJBA","CBAEGHIJDF","GBJFCIEHDA","DEACHJBFIG","EHJIBGAFCD","GJBIDCAHEF","FEHJCDBAIG"}
125000
{5889,6738,7561,1467,5761,7084,2514,9620,4209,4584,1159,4325,3229,3528,7145,8286,9741,4936,1464,9724,9732,2447,8701,6177,9854,4684,4391,46,2107,9435,2401,6030,8195,8336,587,8176,463,540,6932,9452,9838,4249,5833,4897,1736,19,7517,4833,5638,3760}
{5191,7498,3061,8941,2155,8759,7802,2179,3303,1970,3819,2793,933,2449,4308,9131,2240,3277,6339,9511,883,3,7336,5408,8458,9705,8899,9178,4333,3403,8273,4954,4130,5483,1084,1314,6484,5829,2040,5159,8280,8664,74,4898,2081,2177,9670,9831,7959,8616}
{3485,6014,2432,167,8194,8044,6182,6163,968,6274,6558,9614,8986,1299,6567,6336,2183,193,9021,2665,5659,4978,1433,4910,8625,4406,6040,6919,6830,4559,5514,1541,4658,9702,2993,8431,1387,1727,4053,699,5587,1730,3386,2707,8817,6228,6287,920,469,303}
{5216,6572,2864,3894,1387,6749,5514,4445,4206,4284,875,2580,5748,2948,8284,8510,6516,9294,7064,9824,327,8787,7983,4870,3976,2275,1358,6822,7055,4981,4076,7321,2328,4094,5953,254,2915,2156,4071,4419,8337,5940,8180,7167,1718,5803,1872,2469,3199,7442}
125000
Returns: 0
{"BHJBCAADHH","HCFCDHEJFJ","AGBFFGDBAB","FEDEIDBIDA","IJIGECIFII","EBHHAIHHBD","CDADBEFCGE","GACAJFCAJF","JFEJGJJGEG","DIGIHBGECC"}
125000
{4435,3633,3190,9812,7383,9703,4129,8817,381,7079,1490,7980,7133,5407,4978,9593,4326,6844,3851,767,7284,6998,882,2145,4317,9660,3461,4182,4275,1072,6932,3112,4722,768,2346,1059,4390,8212,8071,4138,9059,1700,7547,4237,7896,5317,6410,1494,6932,9816}
{1565,317,8732,7858,8838,3657,574,2692,3135,6880,5555,1819,5860,2100,9685,8926,1959,538,5166,8107,8445,5945,6397,7960,2454,7043,6488,817,4647,9593,9456,423,8158,5466,406,4467,6480,6944,5272,3959,795,5760,8372,3915,1790,9843,2548,1395,6339,8179}
{911,5205,1196,3626,5548,6317,9324,3117,1284,5724,3768,9579,9803,6466,6535,1489,9541,6231,1290,7077,4506,8819,4001,7404,6164,1648,761,4502,1191,2659,1693,3347,638,9251,1989,2811,7193,9308,7105,1330,3880,6501,6888,8867,7816,9182,1079,7955,782,7410}
{9328,9551,9279,5467,978,8903,8335,1560,1942,8120,4881,5457,549,7895,404,1570,2572,9994,8322,7945,4105,3677,9851,8635,1445,7936,9281,373,7349,3507,3598,4529,398,3574,8308,5234,6322,2119,5073,7005,8043,3848,633,253,5932,6045,2890,2360,423,6777}
125000
Returns: 12443
{"EAJHEEAGFA","DCAEHDGFAF","ABCCGIIECD","FJBDBJCABE","HIEICGEJDC","BHGGAAFCEG","JDIAJCJDHH","CFFJDHHIGI","IEHBIBDHJJ","GGDFFFBBIB"}
125000
{3805,6792,893,6008,7356,3392,6094,8775,8348,6255,6029,2137,8055,8462,2234,8010,7890,513,1304,8847,9715,9403,2903,2032,3234,6446,7852,5116,7969,3745,1921,573,8092,7850,2422,6318,6201,9873,3752,1019,5244,4083,1817,6694,9520,6565,6164,2513,6555,1210}
{4773,3498,3206,5518,851,3307,4849,3278,7471,127,4734,2442,6736,1670,6605,2150,9167,2475,712,3818,3184,5043,9331,7599,6319,9911,1576,5158,3211,5622,1298,8734,4489,8233,959,2015,6958,2341,8114,3557,1085,6327,153,9027,8800,6082,3981,8249,4379,2073}
{4305,7170,6905,1175,4204,7468,5302,826,3880,1816,5812,1347,4048,7157,728,8345,7311,870,783,8094,7294,7310,6950,3056,1021,207,9142,2583,2431,3332,5136,90,5087,3924,113,2079,5252,1645,9535,1925,3815,9567,3875,4004,7191,3240,1503,7561,9731,7096}
{3953,6020,6383,308,5515,2173,5048,5673,3366,2890,7911,9212,5658,4092,7614,3663,765,7426,4527,9082,3754,1134,5121,3357,2188,8280,6687,7393,8559,7146,6160,790,6405,9108,3236,8900,9514,844,1205,6012,6337,4404,4045,384,2870,7517,4560,3183,8023,6944}
125000
Returns: 12594
{"HIIEGFJJGG","GDJDAEDEEC","EAACEHBAIE","ACGIJBGICJ","CGFAHIEFHB","FJDGICICAH","JBEFDDFGFA","BHCJBJCDJF","IEBHCGHHBI","DFHBFAABDD"}
125000
{2697,6150,6469,3387,3236,4430,3183,7331,3586,5342,3802,4847,2820,1008,9789,9503,2023,9696,1835,453,3215,5346,7401,17,5643,7617,7110,4295,5352,9232,9886,6935,2781,7855,2865,9180,7583,1750,1028,153,6430,2697,705,8395,9037,4792,8529,7788,8597,7731}
{2402,721,2577,879,3354,8542,2420,5522,7815,5356,8921,3371,7148,8166,942,7479,6755,9217,3342,6252,1459,3179,7426,8834,3910,5687,7370,7716,132,4760,4617,3663,3740,9771,2312,2235,3719,609,4225,446,5437,1806,9981,2861,7744,6674,8933,7296,5509,5677}
{5784,2017,3015,9055,8423,4919,9820,8184,7147,4934,562,1974,9787,2795,4664,5244,927,728,8198,9902,6432,515,4941,5437,2521,3182,8431,8338,5281,8407,214,3879,3126,1062,2,3580,9668,5478,7283,939,8654,2493,9085,7974,199,7074,7905,5160,4372,4361}
{2766,5174,5040,2680,7088,3232,5999,1297,6633,4762,5605,4001,4075,3468,2461,4949,7214,3807,6726,7435,5243,4038,9549,587,7618,7089,1741,8378,9601,2842,7844,9175,2572,5308,9163,2743,9047,2066,3154,9694,4431,2877,6047,1925,7802,4768,7137,1399,6091,5573}
125000
Returns: 12494
{"AAGAFCHDEE","EGEDCFIBAI","IDDEDGFCBA","FJIHEADEIF","BCCCJDAIDD","DHHFIBCJGG","HBFIGHEAJB","CFBGBIBHCC","GEJJHJGFFJ","JIABAEJGHH"}
125000
{3616,6106,86,2978,5070,8929,9082,3659,8655,5739,9,6874,6721,8849,9864,6208,8149,781,9212,9589,7105,3942,8033,6706,1322,3414,1027,3793,5710,3942,213,3398,9998,4217,5964,4965,8133,195,5745,1048,72,8854,3274,343,4038,3167,2517,8925,8008,7147}
{6144,441,7282,525,3160,9679,9544,2766,1324,2775,1716,7213,2588,875,6572,8171,3766,4824,7019,5135,9032,5395,7161,5266,3613,9948,4247,9166,31,1710,4618,4117,1164,8261,4007,4535,6024,7960,5179,3755,2101,806,3566,2753,2130,5372,4033,1787,2453,5077}
{5810,5253,2780,3456,8383,1004,8436,9354,1686,9089,9563,3563,262,8850,7867,9947,4299,8265,1692,7045,8421,8259,6081,2520,6912,5086,788,487,4043,8714,5015,9186,485,9254,4160,6212,8120,2983,7571,9196,8579,7468,9982,9263,8520,562,6380,322,4489,4833}
{9430,5852,8274,9965,7889,2970,1913,9190,4694,5710,4893,7826,6506,4308,8777,8293,4897,7267,4712,1491,2177,5392,5582,2861,1213,706,6088,9964,4821,7709,1950,4534,6760,2823,3404,5978,223,9699,8279,6267,2605,1495,1221,1772,7685,9379,83,377,1526,8227}
125000
Returns: 12476
{"AEHCGCADJA","DFIHBFEBGG","HCDFJBIIAE","GAGEAGHFEF","JDEAIACHID","IIJIDJJECJ","CJFGCEBCBC","BHBJHIDJFH","EGADEDFAHB","FBCBFHGGDI"}
125000
{6444,6693,6868,5644,171,4792,8003,9238,9063,1571,561,3454,8109,61,5551,6005,5598,9037,7839,707,4352,8229,9274,6225,2419,4249,5590,3088,5352,8708,1439,2020,3005,4489,2933,9614,2404,2299,4132,6947,7985,6416,2598,9915,3345,4993,4328,4785,3286,8821}
{2206,9414,7448,2026,8840,4263,888,2557,3136,6926,8335,460,6596,1584,687,8869,2974,8738,5131,8987,7868,4647,7417,3373,1443,4979,6555,187,4779,8885,2586,5400,3822,1597,7321,5883,9143,5112,8436,8291,6604,9802,3855,6014,7706,9616,9807,265,3242,158}
{5387,230,6918,4020,2009,1028,4012,6164,1279,7108,3316,4464,8782,5887,4230,3316,1951,3430,4440,5136,4492,4643,6042,8814,1329,9461,7512,4380,6671,2555,1990,8569,1812,6634,8362,6480,8795,95,948,7505,8926,8712,320,7982,2951,2823,4056,9823,5148,917}
{6373,5363,2986,6586,4384,7256,4901,4523,4521,7885,5501,9423,9821,6356,4367,3810,1008,6202,522,5885,7580,5620,1275,6737,1291,3319,228,1492,4632,6491,6772,3644,2520,386,5112,4743,5848,9037,4436,17,6021,2418,5666,5713,7165,7024,9648,7958,9344,141}
125000
Returns: 12730
{"JBIEFJJHFF","DDJAJCDJJF","IBJECJJJJJ","JAFEDJAIJJ","JJFJJEGEFJ","JJFIDJJHJJ","JJJIJCJJJJ","DBJCCCJGBJ","JJCJJJJJDJ","BJJJGHJJAJ"}
125000
{7468,1319,1506,9713,2393,3282,9507,2275,7509,6990,3157,4466,7733,9894,5664,7917,5960,2773,2877,4894,5710,8717,1574,422,8710,4835,1773,7598,0,9730,5509,7696,6307,9895,6933,3650,5282,1817,3293,9567,6609,4071,796,5639,5348,8631,932,1932,9635,7359}
{2110,9826,5975,9518,4861,8592,8325,3879,6542,1882,4368,9040,2617,5421,9140,6034,6197,2864,3514,6842,7538,9282,9023,541,2124,7730,9120,6952,811,1900,867,5760,1300,4032,3045,4753,6496,3890,8657,9149,3265,4248,4529,1709,3655,7232,7222,5459,5607,3225}
{6781,2411,506,5096,7825,1659,9880,3305,8161,8984,3333,4725,2872,458,494,8995,8039,9158,1315,4951,6202,4616,4274,5146,705,2463,1588,8849,4333,711,2750,9626,7467,284,593,4066,5901,7830,3409,4330,1921,6416,2910,1850,8233,9727,7382,8021,3775,977}
{2565,5926,2199,420,9656,6112,1000,5277,2181,8317,1256,4431,8155,9987,9762,1464,872,73,2277,4586,1441,3489,4068,2891,125,1243,4175,1099,7471,2900,3911,1230,6309,878,1305,114,538,4988,6870,8749,766,2351,4776,6080,3377,3337,8513,5678,1412,8713}
125000
Returns: 50165
{"JFEJBJJJGE","AJJGJJJJGJ","JJJJAFJGAJ","JJJJJAJJJF","AJEJJFEAJJ","JHJBJIDFJJ","IJJJJJIAJJ","BGGBJJJJEJ","JAHAJJJFJJ","JJJJBAJJHJ"}
125000
{4164,304,9402,4954,3822,5401,921,2829,9216,139,5748,9085,5469,8321,3175,9612,2375,8077,7413,7718,116,8608,6782,6692,1032,5985,6338,8240,5891,5145,6973,2248,7126,6785,3467,336,1295,9937,652,8935,1386,6334,2535,5466,4949,7711,4420,9822,1499,201}
{3177,7058,9920,7380,659,72,2005,8505,5364,7816,455,770,8455,7583,2065,9716,3032,8943,9494,9958,8854,9040,4485,9572,7075,1573,4351,3530,2191,8823,1065,4831,5198,1890,1436,4888,8424,6953,663,3406,9424,8209,1612,3385,3606,927,8907,6640,3391,6994}
{929,4520,2264,3352,5038,6579,4475,2993,9294,8833,539,6141,4442,1389,1931,1596,2948,5551,7416,8413,7441,8725,159,5426,94,3481,2050,6927,4314,3192,7419,9576,6538,3069,375,7472,1790,5435,9555,2644,4527,7997,7337,5553,8099,2838,8513,959,6353,9360}
{9235,3074,4160,2393,8167,9425,4073,7461,4862,3042,8812,9257,3102,3869,6920,133,8842,563,6148,7587,9098,1285,7098,825,5798,9908,9985,7109,6653,9601,9365,9382,9217,4100,6046,8288,1889,4057,2214,4689,4761,9162,1654,3489,4862,965,736,7490,4559,7939}
125000
Returns: 99312
{"JJJJEJJHJG","JJDJJJJJJJ","JJJJJJFJJC","JJJJJJJEJI","HDJJDJJJJJ","BJJJJJJJJJ","JJGJJJJJDJ","JHJJAJJJJJ","JDJCACJJDJ","JBCJJJJCJJ"}
125000
{8980,5501,2217,5222,2006,9162,8236,3940,505,4952,2805,3320,5015,7361,148,9252,103,7999,2237,2962,9681,9176,341,8973,9929,9552,3016,5100,1160,7977,5847,1342,5348,9208,5728,6241,3420,6170,3217,4655,7948,3148,7277,8082,5913,3731,944,8039,7491,3582}
{4744,4190,9907,5781,123,4933,3844,7442,5867,105,2266,1728,1759,1442,6255,9321,9934,2015,5369,9081,6575,9850,9034,7339,9506,8577,5622,526,9027,1373,5219,9414,7910,7666,4551,179,4634,2298,8085,4803,7068,2378,6767,3767,6049,9150,728,3534,7270,9779}
{6559,3773,9799,9429,6392,8771,904,7533,204,2843,5623,1710,6890,7698,993,2757,5789,3249,8375,1237,3050,5841,9210,976,6416,9895,5666,6380,9655,921,4413,4047,5291,1348,6358,2577,1466,2584,8284,1931,7948,1346,9271,4907,2361,1356,8028,8544,1222,2779}
{8169,5566,2087,2153,8322,6172,781,2561,561,6427,5283,6937,4971,8878,5857,4451,9077,4960,8258,3752,1099,4183,169,4742,1432,8654,354,3683,3931,6559,2788,2284,5468,3338,8659,3170,392,2684,7919,1076,5782,589,7563,7413,1796,4037,2229,5027,6946,741}
125000
Returns: 125001
{"JHJJJJJJJJ","BJJJJJAJJJ","CJJJJJCJJH","JJJJJJJJJJ","HJJJJJJJJJ","JJJJJJGBJH","JJJJJJJJJJ","JAJBJJAJJJ","JJFHJJJJJF","IJJJDFJJJJ"}
125000
{2708,1569,9560,939,2685,5254,9449,1878,2122,6140,6249,2468,6293,4575,8858,8337,7546,9235,8479,3358,5226,6235,7245,9178,4818,5977,8451,8319,6531,766,5340,8736,3485,8813,6711,8385,795,2567,7640,5162,2621,7569,7560,4298,176,7152,8441,1274,2152,5761}
{7589,8915,1556,182,7753,6936,7352,410,372,7118,8688,4287,7301,6787,464,2158,4644,2124,8094,3886,2277,5555,1251,9232,7675,8251,3639,1870,5702,891,3598,7980,9979,4286,542,8537,1065,7260,2299,5687,7861,1300,305,1643,8960,5495,5352,9979,4460,1802}
{4620,8738,1858,181,4221,8276,9348,3209,6864,9918,4459,3828,9749,828,1997,436,2807,2068,2582,2338,8683,4118,8478,9364,9966,3370,6851,4024,3911,1084,6855,4943,7375,3009,5239,6519,3569,5144,67,8534,2847,640,1066,8699,1376,219,9059,7946,8412,6537}
{9977,4263,7728,103,6041,5411,1983,4875,5691,6451,5458,3824,3764,7987,3374,550,3088,594,5063,7172,264,8963,7798,6078,9970,8299,3834,2506,3012,9770,7654,1093,997,482,8006,8989,7316,8861,3928,4248,1976,8635,5480,1589,7772,1542,2344,1593,508,478}
125000
Returns: 120524
{"JJJJJJJJJJ","CDJJJJJJJJ","JCJJJJJJJJ","JJEJJJJJDJ","JHJJJJJJJJ","JJJFJEJJJJ","JJJJJJJJJH","JIJJJJJAJJ","JJJJJJJJIJ","JJJJJJJJJJ"}
125000
{3770,4174,946,9892,723,2080,9432,3035,3324,7095,5945,4667,998,7070,8275,9262,9610,7400,2542,5538,167,5562,253,7770,7544,2413,9427,5148,2475,9856,6145,5039,4244,6450,5091,8437,995,9500,5105,3594,7233,6301,532,1879,5613,3532,4408,4140,2948,2365}
{9488,1678,3775,7706,1492,1221,1055,9603,6629,4014,2254,6010,3266,4784,7066,8520,6163,9003,3461,8341,9295,2782,6345,711,1135,4543,3834,8421,4293,4927,9719,2405,4667,56,7262,6061,1829,2771,1195,1370,1799,6070,7531,2943,6274,6576,3601,9748,4729,5315}
{843,357,7039,8815,5890,2811,4779,3688,6277,2292,8503,454,8758,9329,4229,7541,7828,5868,7272,6406,7272,7584,1838,9352,8165,6100,3105,8940,2416,2293,5245,8471,2070,1019,3973,7927,2607,6215,414,4262,6472,1850,6523,454,5127,8485,5028,8021,5571,8186}
{2640,2094,4552,5840,4509,1,7073,7039,4642,730,6496,9402,870,5646,9763,192,8559,2163,4983,2748,4433,2908,6474,341,4762,7217,5985,2646,3621,9918,263,6309,6928,5921,3475,2908,8611,3949,6012,7549,4155,5139,3006,5931,23,3941,7196,450,3939,6160}
125000
Returns: 125001
{"JJJJJJJJJJ","JJJJJJJJJJ","JJJJJJJJJJ","JJJJJJJJJJ","JJJJJJJJJJ","JJJJJJJJJJ","JJJJJJJJJJ","JJJJJJJJJJ","JJJJJJJJJJ","JJJJJJJJJJ"}
125000
{4505,4980,1107,3432,9848,694,1613,8608,5577,9120,6164,5489,6888,2271,5749,4464,4200,7677,7642,2621,3890,7585,4075,4249,9368,4298,342,8017,34,6376,7187,9405,1181,3880,237,4395,4508,4090,4255,3533,5185,8314,4626,4592,7634,6376,237,5243,4592,4769}
{4818,945,6271,8247,3815,619,9390,2452,8712,6788,4789,7548,7470,1763,6821,9115,2205,8744,2667,777,7735,1534,3098,9469,8350,8666,7950,8057,1236,3467,9280,6211,2931,4103,9300,5328,449,6603,9990,1826,3735,986,2856,6588,7436,3721,9074,8850,8224,8186}
{8377,2147,8747,2049,1771,1558,4596,2753,121,8383,6569,8450,9557,9448,7302,5868,7481,968,5663,1783,8980,9171,5758,4785,7139,2984,9179,7408,6676,5476,7612,6065,1636,6847,8813,8197,7759,2042,9092,662,4687,2828,7018,3448,7210,5569,8574,826,2092,8917}
{8636,977,6413,2306,854,4770,8186,9079,8773,7375,6043,2623,7697,7902,6891,261,6013,4501,6260,4530,1573,5691,3170,1253,5060,2178,2533,1295,1717,8057,9228,6065,872,1058,4243,603,6555,5798,7738,5617,6268,5768,7017,2899,7952,342,8814,8887,7852,7911}
125000
Returns: 125001
{"CCF","CAB","BFA","CCC","FAD","FAA"}
125000
{7238,3271,6390,3122,20,4305,2871,6502,8917,462,9591,1688,4814,6144,9472,9836,3598,6594,3054,201,5690,5125,2122,8931,2161,8278,4005,3939,4046,5048,4499,5441,4056,325,3556,4935,8651,505,5719,2992,4589,2163,1696,2533,794,5446,8333,265,4828,569}
{38,7593,6455,9975,3978,2705,7295,9008,8678,8465,5188,7602,6097,3206,8180,8912,4746,5188,9964,1659,2437,9922,8359,8147,5095,8186,6442,8851,799,6656,7561,3282,1953,6290,8773,4535,7706,1272,5816,2150,1990,4846,7807,2814,7175,4988,1668,5532,2046,2931}
{8968,3615,9478,4007,6080,6035,7787,7105,8386,5263,2341,1670,4777,7001,5672,3195,9306,3067,7397,6598,8337,53,5341,4068,4640,7064,6281,7947,608,1993,1559,2591,6982,284,9633,5473,540,125,9350,2418,5958,379,4067,6463,9856,8652,2276,5510,274,3880}
{911,1912,6014,6614,2143,2758,8555,873,2199,7238,8791,510,570,3915,8012,4177,2892,9052,9935,1832,8299,5205,5746,868,4544,8705,1668,7885,9642,2269,2509,3922,2148,8297,3522,3889,587,4056,8214,7119,6395,5914,9309,6742,9553,9242,8441,6259,2780,7071}
125000
Returns: 66817
{"AAAAAA"}
125000
{8783,6252,136,7938,7007,9405,9799,2863,3210,494,4103,1646,2253,844,5285,1643,9938,402,3326,3420,229,5314,907,3553,5020,300,1751,1161,6035,3024,7984,4106,5575,5134,3125,7574,8034,3294,3757,4656,2614,7024,5396,3088,4383,5233,3137,3258,7955,8022}
{780,1311,8750,3558,9155,438,3557,7089,8360,2012,982,595,4719,6237,8474,8628,2916,3611,7602,7633,6140,633,556,8192,9524,5494,9924,3185,9531,8216,5555,2566,1688,1011,9798,9233,1984,4155,331,2957,6249,4801,2033,5003,174,1466,530,7618,1004,6872}
{6917,3276,8797,6816,6256,4517,528,7861,3940,2042,4641,3815,1049,6116,5358,3671,5109,4807,4872,3251,6990,3963,384,8229,4823,3,6260,2611,2028,3692,5675,5215,8271,4812,3864,9015,552,6161,2174,6023,9707,6952,1927,107,6259,5820,9150,212,5949,2129}
{9194,738,7781,8063,1054,1606,7561,1472,9798,1423,8589,8271,8399,4030,1161,4247,8864,3208,9094,9079,7296,9085,2994,8372,8019,1908,5421,3062,301,2317,3099,2022,1682,2673,7852,1615,7996,8718,3980,6804,5530,7108,1657,7828,4309,2944,951,1757,501,2454}
125000
Returns: 125001
{"DEE","EDE","CAA","ABD","ACA"}
125000
{4303,3661,4169,6222,8900,1440,492,1004,8174,2795,5046,1680,7243,6713,2344,1867,1957,3539,3632,1165,3604,3411,8775,9540,8566,6104,5229,9754,403,6726,4873,8614,8795,129,9565,7358,2187,5167,3298,3508,5361,7260,4442,9238,8263,8377,2358,7502,5410,735}
{2201,7613,8884,5010,2431,8908,8440,3693,9313,8013,6166,3178,828,4267,7152,9002,5257,742,6811,2850,1398,850,4544,301,8427,7922,1543,772,1489,6724,9380,5808,4813,2329,5153,7478,173,3308,2801,9022,7978,6393,7468,4684,4952,1949,556,6667,9832,5490}
{1503,7150,2317,3316,1491,1017,8305,6651,6506,2538,7548,1966,5727,7273,9435,9050,3766,2966,1315,8766,1702,1310,4334,9256,1528,5366,3155,7524,3983,8517,5822,135,8610,3396,7382,8018,9954,6014,3824,8710,6819,9686,4944,1725,5860,2545,243,1132,6703,3900}
{1918,8677,3676,1272,5490,6146,7855,81,6788,8090,2258,1836,1553,9818,7277,643,8152,4467,6909,466,971,6023,2746,8824,7528,7071,1758,3789,9812,3238,711,5138,1249,354,8856,4834,3743,1195,4660,8476,432,1462,218,3237,7533,4314,266,5428,3544,3934}
125000
Returns: 26266
{"CFFCG","EFBGF","AAHBC","HFEBG","AHEGB","ECBHA","ACBFE","CHCDH"}
125000
{650,2012,6724,4513,2209,6996,5026,464,351,2497,4155,4353,8245,2296,8005,605,5938,5720,6145,1153,9218,9774,962,6223,9136,9310,6407,3887,7266,5928,8131,4422,2150,3412,7838,826,8043,9511,5673,9325,7844,9707,8730,2486,383,8971,1331,554,9241,8631}
{947,6793,4419,799,9610,7876,8250,7205,3716,7155,7116,5969,3960,1502,611,8273,2102,9982,8454,5123,4871,2260,7922,2578,8968,5142,6527,102,2296,5870,7609,7850,7074,8944,3585,6157,7236,1951,9293,3908,9958,2635,4545,7682,5056,7569,6924,1269,6484,1103}
{981,4071,5423,9621,8235,7166,4352,1382,5533,5931,1326,8419,2773,1317,7774,654,8381,4247,6863,973,261,2928,511,4765,2333,9597,5984,1241,9048,185,9845,351,9897,8044,7007,73,8571,6883,361,8893,874,5438,7899,6946,3656,2554,7354,1324,6740,1395}
{3769,7438,5231,143,9514,9601,8624,2,7949,3371,2357,5028,1208,5567,4444,4212,1039,4246,7151,2871,7620,5084,4380,8239,6893,3031,6010,5660,8572,7828,5309,5612,251,4721,1478,1905,1191,6279,5615,3655,5657,8750,3015,750,9365,7885,8571,1654,7634,5828}
125000
Returns: 0
{"BBCCBAAB","CCCBCCBB","BAABCCAA"}
125000
{2459,9027,2629,7120,4367,5033,239,675,2566,3349,1087,9356,7213,4492,2878,1981,8023,5562,5013,3727,5235,6895,5923,6345,1837,6686,6296,9867,7367,9231,2272,3539,432,2988,9923,3995,3425,8736,9133,8490,4348,7811,4750,742,5137,8777,4579,7619,1840,2163}
{8904,1883,7353,2764,8286,7829,9040,6917,3120,1430,5351,3682,1505,7393,6399,6208,6538,1246,9571,8185,5789,8571,3891,1375,2134,1133,6782,9326,7003,8820,3641,9097,5574,953,8346,9256,8156,6391,3603,2912,9039,1700,4724,8439,1484,8973,5109,3537,2431,9465}
{3726,6110,6542,2885,8128,7356,8183,740,9054,8615,9598,7180,7405,2510,107,5996,3451,7611,7278,871,9794,3904,9331,3698,6598,5565,6807,3183,5877,6067,7309,6966,9641,7314,6986,6145,1887,4491,399,7549,6816,2754,410,7196,9822,4885,8499,5498,5504,8215}
{9548,9904,4621,4075,9773,2044,8131,3420,6028,1588,4915,6939,8964,6056,4524,6919,2397,6745,5005,1782,9043,8291,3246,4462,3425,29,2534,5662,14,2129,6091,1977,3007,6697,9172,2518,9631,2110,943,140,6117,1000,8822,950,1515,4586,2567,7172,8058,7896}
125000
Returns: 86908
{"GC","AC","ED","FF","BC","DA","FE"}
125000
{7395,5888,7377,8694,9460,1803,529,758,4630,3078,2866,2302,8175,7488,3400,7463,7219,5641,3647,6141,5497,6684,2116,6135,8920,2743,8976,2923,3097,5956,387,3458,665,5208,2991,9557,6840,1905,7416,1775,4370,4625,3335,8853,7434,7657,8323,263,4111,6191}
{9788,7365,8030,5003,2225,4639,4610,2424,5593,3157,4292,6122,7081,1321,734,8647,4246,4076,8959,1598,9440,2954,8314,1222,5034,7762,7325,741,7273,1632,9825,925,5716,6792,8086,6621,2089,6887,8100,9513,2863,4060,6197,6813,854,3103,3182,7919,9105,5665}
{85,4437,1921,7821,5780,5256,9168,6466,3734,8699,8675,6827,4863,7085,2488,6695,5852,5686,9387,4903,6526,490,337,793,5487,1432,6876,6839,9103,749,137,6019,8157,9488,6702,4174,5565,8583,720,4160,6202,1871,5315,5269,2336,8011,3807,1773,5346,9289}
{8662,3141,4706,8800,886,4050,9160,2452,4854,6811,472,3232,4992,6355,4874,840,7879,5160,1391,6756,5649,3660,7659,362,3108,6884,130,2150,2212,2270,9769,8577,2221,6344,652,2025,5939,1326,7678,8056,1542,9907,4652,5173,7563,232,6949,8446,3954,1963}
125000
Returns: 3281
{"BAABABBA","CBACBCCB","AABBBCBA"}
125000
{3867,6465,8058,803,5740,6553,8670,9800,7992,3290,7542,1731,2369,3442,8674,2523,383,5312,6504,2596,4687,9813,3976,9539,7513,6018,1191,4200,5787,9799,1729,3995,4305,15,2856,3308,4585,2770,8635,9551,4389,4964,4702,7983,6467,6050,346,9289,1358,6724}
{9163,7723,7340,1641,8460,1498,6247,7588,1205,4950,106,670,36,6163,6044,8750,2083,7919,9771,6113,1398,4948,4810,6009,9603,86,2952,8180,1334,3334,5641,1722,2689,9599,1340,495,7473,7742,1066,7318,901,3983,6257,3176,6102,780,4176,5691,353,0}
{5900,1439,454,580,575,1065,1947,9402,1579,6199,4383,2768,2865,6168,4712,50,3114,1945,4314,9255,5471,9386,6591,448,5655,6531,9275,4093,7441,433,5547,1952,2547,5608,6154,6790,9195,9519,3947,727,4407,6361,517,128,1187,1216,9801,5325,1389,2560}
{1756,3703,5467,55,5798,4265,2036,4528,84,5328,5312,7681,9784,774,3476,2566,2566,2320,3853,1583,6451,40,7286,7139,3564,2589,1804,9283,6784,4933,5050,3344,4491,2901,8470,7507,5601,809,6473,8233,2942,9561,9775,2491,3722,7096,9150,5905,3673,4439}
125000
Returns: 7267
{"BF","AH","HF","FE","CH","IH","BA","BA","EF","EC"}
125000
{4440,2776,6036,5070,1134,7229,9746,3482,6902,4636,2857,1973,3127,9968,445,6632,5443,5047,2087,7424,7729,6897,1285,9134,4928,8133,6165,4120,6438,3270,2723,7085,4267,8318,4420,2096,1156,9376,5064,2168,994,3328,5605,7841,8758,2634,1470,683,6094,6229}
{3752,5179,7178,8561,9344,1569,9732,567,6413,9249,1269,3589,1484,4352,7373,6077,9227,4437,833,771,2853,3819,8660,6552,966,4396,1482,4750,7472,2538,4571,338,739,5165,5207,7362,239,9759,4828,9564,7250,1304,2715,8012,9307,623,487,7781,8867,4690}
{2961,5590,921,2427,1542,3902,8338,8679,9765,5654,5483,8461,401,8298,449,3646,8705,6132,464,9678,8467,3108,7888,4343,1599,7806,1282,4843,4711,711,3492,1882,5332,7902,2111,9933,1984,3008,7274,7132,2999,7429,1764,7177,5080,4306,1530,8676,1990,4606}
{7918,3463,5234,5109,258,5107,6610,1221,842,859,1107,8098,9030,51,6925,4155,5134,6824,1326,8560,3150,9106,8866,2171,5349,13,8778,1667,5171,3322,8417,3016,5552,1888,87,8622,5918,1963,4625,7118,9802,4537,6992,366,2043,3665,151,7591,570,4029}
125000
Returns: 0
{"AEIDA","GBHCJ","FHBHF","FDAEB","FEDJJ","EAGBF","JHDBJ","IHACG","EDHDJ","CJIGG"}
125000
{6635,9191,6304,9660,3477,8653,1675,9235,7202,3116,6735,8072,9189,4473,1356,274,4521,3298,5656,9610,4688,1379,593,8824,5065,2196,9806,1297,1369,2533,794,3606,672,7558,270,9016,3440,5524,4300,3270,8538,6942,4586,6480,5524,4942,2948,977,4127,1952}
{9416,3266,1180,8076,609,2336,9541,1738,1845,6418,7237,7088,9856,6713,3984,85,1162,3486,1201,7433,789,4524,8811,2979,3286,8344,9110,1548,9176,5333,9921,957,9165,7503,6853,4726,1295,341,2372,1360,7656,6311,2331,1141,5805,7960,8177,3269,5010,1889}
{8013,7459,1277,3332,754,4283,2754,6520,2825,4024,2824,1460,2177,4767,5789,8992,3260,4926,8220,7126,9315,4246,8880,7674,2548,114,6783,3027,2584,8271,2166,853,9366,1594,3964,9944,8990,4132,5712,7818,8912,491,7393,9792,4450,588,6733,2911,4528,8289}
{109,4651,9707,1392,1067,6668,9807,3047,1117,9571,2287,6877,3185,2292,4751,4270,8705,3211,1594,8373,9284,6885,310,9098,8073,7871,377,5444,1156,3697,6110,1546,2478,2198,8545,1991,9452,6691,6820,1650,209,1421,368,7055,3256,3753,8635,8119,3899,2891}
125000
Returns: 7774
{"EA","CE","EF","CB","EE","BB"}
1
{3768,418,3119,9761,9300,6560,3159,3349,8448,2974,5463,6343,626,2279,7436,1869,6968,1551,5430,3103,5536,4337,9809,6138,3763,3981,7904,2018,849,7746,2243,5034,7812,8315,6945,2104,1521,6485,3379,5547,4056,6177,7334,1799,3932,6239,860,6556,1641,2884}
{2021,9698,1133,2901,800,6787,9134,4404,4472,7749,596,2106,1030,701,8355,2826,5414,9949,2251,9025,3434,8520,5651,5821,3795,5307,1747,1580,4142,8904,7674,9151,8113,22,3364,9004,9294,7044,9263,7949,6414,2853,7704,5473,6321,7312,8744,2324,1348,6434}
{8302,7637,942,1701,8696,7316,1018,5568,1441,1292,7069,4062,2929,8981,6115,3319,3461,9921,5594,4613,1492,7299,59,4284,4523,8709,465,5065,8601,5833,6409,8497,1930,2915,5197,729,592,1365,9218,2330,3054,7068,64,3687,1143,9330,738,8650,8741,3997}
{5331,5277,2132,7028,6126,605,3854,1480,3434,5708,9872,388,737,4152,222,8485,7324,3060,6219,2733,2215,5706,6648,3090,3019,8030,8466,1018,4823,5300,7431,2438,2559,86,5254,7174,6726,904,2638,3936,471,503,1254,9856,4804,2193,6278,6209,787,3197}
125000
Returns: 0
{"AEADBB","EBADAD","CEDAAB","DBCAEB","CDAABC"}
2
{4609,9801,5313,5340,6071,6875,9708,1223,6755,7332,4631,3083,5262,8135,616,4087,2467,7465,8321,4715,324,1239,4574,736,9280,8812,8136,7691,7984,6390,7303,9765,4999,7161,9106,6748,8664,2357,6709,6291,6080,5919,8717,1803,853,5059,8007,7540,9154,6587}
{9417,5797,3799,8794,6027,1843,9124,846,4570,3731,7487,8176,5870,5378,1345,3829,7684,9168,7061,7281,4599,7089,2554,3564,4238,5764,5721,3793,7822,9516,9499,1595,6846,6936,6708,7274,9719,479,7809,4741,6723,1377,5806,4177,8851,773,8405,9470,8408,7774}
{9644,468,5618,7776,5589,9823,6491,4908,5114,355,7706,10000,1343,3191,2020,7293,7051,1832,4346,5011,342,9057,9751,6290,2954,408,3349,9017,4723,3025,4067,2552,7574,968,343,1457,2054,9927,4352,5650,4375,94,8083,8862,9606,3613,5782,7224,7044,9912}
{7751,2679,5462,2599,6221,5387,7447,751,4946,8607,3006,162,9129,928,977,2045,1082,4522,2136,9323,5100,4613,3845,5089,4882,7757,2392,7343,1611,8165,7325,3736,2184,7192,5979,3919,4045,9983,4156,1622,8154,5100,6417,7728,4076,7545,9364,8642,4255,2571}
125000
Returns: 17271
{"BBABA","AAAAA","BCCBC"}
3
{5819,4951,5165,7488,3796,9384,2337,3107,8567,1219,7807,3976,1375,7782,1060,6446,5575,4632,1566,4018,1906,1162,4329,1959,7505,9493,7117,9441,7577,6458,1577,8593,395,7185,2026,2475,4464,6330,9902,1578,1981,1033,7515,1135,1069,6095,7250,1996,8679,1837}
{3769,652,3986,428,3604,5502,7366,3550,5108,5574,9968,8768,8658,3121,1244,4147,1023,8259,9971,3096,9894,9380,249,4567,8407,1039,9827,6128,1742,4983,114,8342,3060,3711,4555,110,4249,4910,4436,220,5952,2059,2541,2906,4881,4545,799,6474,1136,9482}
{950,4187,7782,6156,5078,2864,6560,6195,5565,9560,4297,2512,1104,3209,3744,5351,2108,8124,4371,5230,9575,66,9018,8616,6959,9112,7404,534,1312,6515,5848,6546,4614,8564,3929,5730,6892,4612,2388,9904,162,355,5988,2054,264,6137,581,1452,7582,4396}
{2311,1090,8884,7254,7447,2393,5494,9896,2430,3031,6657,9503,3841,3780,9719,3628,9993,8997,9746,7556,7515,5463,8618,4530,3762,4603,8851,45,8435,4588,5360,5513,153,563,1117,2864,8574,4730,9593,8475,5506,5927,4527,5252,6509,1075,4085,8213,1682,6931}
125000
Returns: 0
{"C","C","B"}
4
{9240,9695,9141,2840,1747,4603,6312,9445,3429,9756,4202,2704,3957,5059,2460,5455,8657,4032,9399,3491,562,2354,2355,4808,1170,3154,6865,5993,5266,9059,950,8996,8702,4009,2883,1704,3757,5547,5680,2786,261,3026,8608,2384,4417,3930,690,1681,9566,9405}
{9125,3176,9223,8188,9377,1000,5445,4234,3185,9674,1256,3357,5222,6977,2964,1713,3902,488,667,4143,5223,6674,385,6888,3595,7782,474,944,5019,7462,9388,5685,3242,5781,3496,8594,8349,6000,3427,3885,4536,8081,6877,1421,4023,2685,6452,1921,4131,2899}
{3720,7800,9626,7598,9691,3848,9778,7268,8023,6096,7380,1456,2868,3586,7712,6115,1049,2692,6190,2110,1025,1902,56,4052,4643,1809,384,6775,1819,4031,1521,3384,716,3860,1852,3889,1065,4809,6811,1605,6747,3362,3206,3672,1352,4216,5891,9729,1499,4352}
{9313,5592,5192,9293,7510,1740,4091,2558,4707,9369,9248,8744,9836,218,911,8333,9823,3645,4874,9653,9892,3041,1747,9437,7105,1270,3057,4913,3283,4176,7824,3723,3714,6926,7198,119,9658,3446,5264,5681,9564,8061,1850,546,8175,5422,8749,6995,540,4294}
125000
Returns: 0
{"DJCGBHDB","CACDAAJJ","EHEGHGIG","GHIHHHGA","CIIEBJDC","BDJAGBIH","IEHAJDGF","CGIBGBEA","BAHBDHAD","DHEBCAEG"}
5
{6787,742,4510,4925,3139,2749,9840,2840,4290,1664,3781,4545,4947,6191,7984,9513,6407,5635,9318,8515,1367,1813,7697,4128,8236,8497,2624,7244,8777,2112,6489,8644,2304,6366,1881,2839,7001,6219,787,8090,7138,4978,4693,4269,176,7235,3647,4140,2953,4880}
{6145,5938,1872,3149,6125,7210,7474,7686,5773,5649,6030,4949,9188,2698,5038,4082,6549,8549,1946,4708,1016,4320,5549,2872,7983,2461,9823,399,6453,9328,8318,44,6771,6020,8981,5133,8680,2398,3105,2767,1599,1189,3021,7341,599,3520,5447,8553,226,7457}
{4806,3457,1858,9602,3644,3610,7735,8897,6354,455,2062,1633,895,3430,1822,2934,1681,7041,86,3786,7842,6593,9828,9737,9198,4741,1077,3546,3137,2419,3746,847,6680,8070,2192,8086,2787,1788,2190,7017,8871,4836,4876,3982,2834,3333,3287,8731,9666,9105}
{889,8927,7672,2061,5936,308,40,2492,4554,8274,474,7740,3939,5742,1600,8041,623,5246,6992,7181,3054,9035,5702,2270,9364,3699,1984,9378,3117,5693,8788,3027,7038,3668,6989,2553,9107,4034,6770,5107,4994,4652,8108,8441,6737,8374,1869,9144,4472,3369}
125000
Returns: 9333
{"D","A","B","B","F","A"}
6
{2689,4239,9297,4165,9072,1619,8920,429,3485,3824,4532,2016,5993,2411,1067,2622,876,1000,9293,6047,1011,504,7321,8492,2084,4418,5353,6355,1069,6585,6825,8087,5289,9731,9536,3814,2161,5449,9406,2427,7265,1347,6133,9068,3241,7581,5052,7189,2887,4277}
{7239,2908,9595,1900,7399,1113,2108,3068,2052,829,2661,4129,7491,3926,3666,2228,566,1156,4553,1269,9970,5955,1599,9904,3638,955,9386,8517,1824,8737,3567,2951,8019,5964,1106,6524,4510,3761,7092,7405,2634,3378,2250,2308,4100,83,1214,7071,6134,6208}
{5671,1277,6115,3214,1421,9699,66,3988,5265,3277,3454,2021,8276,5527,931,3936,8830,2912,3502,1230,2435,9340,4737,6291,2666,7221,4089,3332,2701,4737,9229,3240,5250,3066,4104,3987,223,6097,4659,1637,3009,1281,8189,8799,7442,5144,2462,5571,1123,1538}
{9796,3380,9694,6228,3532,7038,7307,6897,8089,7766,3754,3264,4379,2815,5563,5522,7004,312,98,8831,6498,1057,8523,6141,1822,8040,4869,2506,9701,5896,7985,5677,5474,8154,652,1791,9373,6840,2952,9214,8570,7392,6746,8419,4187,6841,2655,7070,4186,7845}
125000
Returns: 0
{"AEDEFDCEGA","FGDEGEEDCB","CAGEECEABA","AAECDADFFC","CCDCGBDEEB","ECAGCAFBFG","DDACACDBEG"}
7
{6222,7876,5245,1453,4405,8625,2655,272,9492,1662,2133,9850,2929,9732,4562,7742,4977,5333,2468,5672,2267,7783,8857,7893,6190,1741,3577,3856,854,9881,6338,8631,6117,3385,6675,3566,4546,5087,7355,5670,3058,1903,1021,8146,6707,6294,7964,7304,5729,6457}
{2706,5727,1882,5282,2091,1989,9903,6003,696,6269,1766,854,397,2460,7398,4683,7618,1699,9740,1651,2105,3551,4339,2144,4356,933,1995,3240,7149,6437,1507,3411,4635,4035,8488,9272,3980,8478,5170,5580,6534,3503,6823,818,7701,642,914,7514,5925,9415}
{2081,1551,22,9304,3684,5221,5419,3384,913,3843,2378,4406,5219,9791,4620,6136,9461,5647,4218,6808,5463,3024,6557,107,5589,7115,5952,9197,8955,1233,586,7464,4872,9775,7894,9849,9198,5311,9887,7014,7054,8954,9297,6886,5765,1401,9745,5178,8716,2165}
{2403,5462,4153,207,3570,4091,4925,1550,1657,9524,2167,7414,9914,7269,5203,8375,1198,4030,2659,6692,4421,3322,3533,940,8949,9158,6859,2903,4499,961,217,7327,8931,1469,6162,6838,9876,4755,9081,8060,3729,7483,7154,4210,4415,6302,5519,6468,3946,6347}
125000
Returns: 12603
{"EEAI","DCGB","FFHD","DFCI","BABA","IFAB","BBEI","GEGC","DGIH"}
8
{889,990,8055,4386,5600,9019,3300,5149,9325,8225,7860,6914,5710,2478,7225,9031,1504,5979,4810,4883,3950,6514,1452,5094,264,9473,2611,1879,9762,5149,212,9023,8155,3558,2431,1701,2740,6857,803,8770,7459,3301,304,2398,8854,393,6900,6575,651,4846}
{4913,6102,5984,3784,7395,38,3013,5985,5027,8026,8315,5335,1523,9630,3443,6553,9266,2625,1763,9970,8320,4489,9711,5198,997,9113,4629,1691,3347,5780,785,1172,5861,6674,8410,2870,6584,4140,8717,4610,6935,4974,2287,6871,671,3712,7209,6161,9207,5905}
{9319,5259,7718,9660,6284,1177,124,1424,1881,3184,1412,2038,8268,1820,5415,6855,1369,1447,9350,8749,3409,9371,8749,1298,1713,9087,3260,5132,5350,3111,8873,4133,7647,4184,9759,2668,1269,8097,8247,8179,2963,6071,4287,2346,5069,2497,8535,4558,3011,932}
{8140,8326,364,888,4233,4646,2977,9578,189,7614,8559,4384,5409,7234,7194,7596,7562,6956,5759,3688,2201,6207,122,4179,3213,4594,4757,6455,8593,8266,5672,8555,6705,8058,3256,6813,3663,8044,5695,5856,7411,8049,487,8887,8509,9106,1295,6611,8602,4066}
125000
Returns: 17952
{"BCACAD","FFBCFF","ACCCED","ABEDEE","FBACBF","CCEFDA"}
9
{1540,66,6085,1615,4655,9657,641,9159,5480,4386,5353,2322,2468,9952,1639,2076,2500,6569,7043,9835,8070,2053,4231,20,126,5976,1938,5789,8668,7923,7819,5370,7991,4456,5762,955,9387,231,3028,6494,6602,9467,6325,5755,1720,7938,845,5401,24,3920}
{5519,9787,635,4699,4209,4562,4551,410,5114,6426,7862,9573,2554,5333,7775,3455,4600,844,3035,6027,5041,7846,2709,2199,5006,4167,1384,2999,3494,6334,4571,1562,9303,1206,4428,6136,4170,4412,3232,9544,6263,4410,7457,9876,1900,5133,7343,8123,2278,5329}
{9420,6061,1148,476,3566,9628,3123,7495,2568,4155,634,8074,7793,7878,3107,7778,9477,4111,2418,4966,9320,3598,2609,9364,3324,9181,2607,8958,9685,8192,4208,9762,7872,6686,4281,5446,8236,3261,1048,8887,8712,7295,8790,2148,6500,7985,5593,3106,8458,6097}
{1727,6881,2686,5484,2526,6810,4551,4978,251,7786,7809,9889,4663,4967,1437,1027,7322,5940,1728,8762,4737,2258,2666,4497,3386,8578,323,8041,7147,9522,9561,8174,6713,7354,5389,3294,6792,5467,1465,4322,3334,832,8603,5070,5232,6547,7492,1894,2672,4126}
125000
Returns: 18022
{"BBD","DAA","ABA","DBC"}
10
{7596,6561,7526,7029,1956,6608,6093,5569,1446,1850,4171,1034,5794,4875,5797,5850,5452,7463,4647,4395,2244,5412,291,921,533,5070,4111,6703,973,8437,7769,3252,9434,1077,9295,5857,2212,7510,5257,7426,7663,5351,8143,5970,2973,8878,8960,8107,6438,2951}
{4322,2132,8487,5051,4955,1831,7851,8577,4512,97,6353,4362,8522,9747,5870,4635,6392,394,3371,4818,8253,9754,2555,6595,5158,4003,6806,489,7109,5841,9415,6525,4239,9322,185,2805,1661,6884,2250,1309,4025,2519,8516,4689,5137,9436,219,3394,8381,8259}
{9672,5521,125,5698,4592,430,2587,1560,270,2115,647,3689,433,676,3468,8264,1293,7117,982,1180,1300,174,3101,3530,5775,8826,5926,5644,4603,217,9314,5427,2970,9712,1172,3725,7846,2828,5991,886,2724,3398,175,920,8531,2617,5178,6849,1274,2932}
{7490,8278,5095,5137,1425,2224,5922,4290,1885,532,8566,2882,7809,3031,4480,5561,683,4208,3919,9087,5465,7323,9440,6383,5856,2933,6695,8218,5508,2322,5964,9491,8452,4031,986,4721,2286,9459,6711,1146,8400,1260,5755,2662,5346,7005,3506,2842,7985,5628}
125000
Returns: 37625
{"IGGCDGIEGE","EIFBGFFFCI","DAHDGAIGBI","GBFGBAHFAG","AGDHCACFBC","IFFCEBHBDH","EGGGHIGEHA","AAHABCFAGE","DBIIAHBIEI"}
12
{179,4598,3109,4143,6070,4864,2005,996,4781,35,3004,9639,4078,1682,7704,4783,8386,3709,7615,3405,4295,5575,3590,3518,9165,3722,5580,7513,4612,9851,1400,2404,5879,4213,5964,2009,4817,1285,3881,2915,438,9418,6301,5185,6918,2683,3001,4866,7605,9404}
{5367,7780,7548,8981,9508,2624,2944,5940,5416,6736,6051,9976,9575,4665,457,5010,1077,2915,8521,4996,3155,1484,5226,4625,5400,8421,7612,2446,9978,9406,7160,3289,5998,6479,1649,2063,1995,695,3347,676,874,1975,9226,3491,2587,2532,3156,4893,6600,4419}
{198,1493,7316,3090,1760,5105,9711,1349,3038,5563,5236,5479,3834,2899,3270,5176,8536,2363,6812,6946,5742,9949,3633,5224,6956,6904,1946,5005,8599,7854,7276,3117,2972,6616,1444,2107,9512,2390,3811,1081,5664,6597,5726,5957,2499,9445,4477,1272,3969,2365}
{3606,5408,1945,4926,1679,6764,8416,1062,7554,8468,4746,256,5184,2201,2987,75,2451,8418,5018,6264,9349,6821,1034,1777,168,9179,2575,9538,6605,3215,8052,7068,521,5709,9404,8599,1557,9718,2222,8756,391,4581,3105,9056,4698,63,5986,9989,7413,3305}
125000
Returns: 18083
{"ACB","CAC","BBB"}
21
{9733,5817,6238,706,1325,6438,36,3789,4231,6480,3447,8831,6990,9451,8847,6932,7713,7149,6865,4583,49,9990,3606,8902,6198,2149,4003,6277,7387,2517,2573,924,6993,3731,6602,7371,6816,203,1667,2666,43,1568,98,8710,1531,9257,1929,6237,4283,2731}
{1826,950,1522,1955,4958,9579,3741,9510,7651,6691,683,7518,6652,1464,3528,7067,1179,2616,7927,7772,4621,9505,4658,8810,4977,1632,9867,6586,4748,7559,6463,1146,8909,24,9541,3790,125,6461,6528,1901,6596,3623,2177,4277,8349,7101,4941,3485,2079,478}
{2834,704,4148,6753,983,6470,7257,3508,3375,4741,9801,9871,7384,8292,2361,5089,3384,4671,6981,8108,5407,9819,3961,5556,8045,4141,3773,4090,9907,5314,2302,235,2229,602,4974,7713,4897,2447,2052,2400,9106,6852,2844,751,509,5563,8327,7286,1930,7579}
{9267,9087,7311,173,526,6879,8290,794,2776,2197,7326,9917,7769,2058,1336,8147,6719,8482,2269,8103,7407,132,5195,368,961,9206,7300,3471,3684,254,4168,8078,7279,6576,6172,3260,9892,4775,5903,3874,2272,2776,7722,7967,1884,8310,8323,7711,8473,3068}
125000
Returns: 45245
{"AAAAAAAA"}
39
{2495,2535,9013,503,2487,3817,981,1472,7407,4795,7463,6818,9357,7865,5786,879,8963,6905,6296,864,4224,8563,4162,2818,9219,5545,6413,8001,8989,3121,7244,3798,3151,8201,6447,2429,7009,6569,7317,5029,570,8508,2600,3100,918,2104,5300,2645,4782,1978}
{4643,9775,6362,248,7771,7272,5406,8218,5266,1029,9571,9371,9903,5358,9595,2793,2568,4102,1894,7779,7090,4859,8888,8769,8142,7002,5518,3522,603,9717,2772,639,8568,5452,1398,6,2993,2099,1019,7638,6676,5441,7844,5094,8944,867,4312,1806,8411,3192}
{7840,3884,8238,8159,7643,1372,1115,2766,4404,9006,141,2366,1359,3793,3358,2093,2401,6808,2195,7829,5962,7504,7743,3176,4746,1966,9215,5408,7865,9092,7776,9631,1179,1494,5082,6517,1913,2168,9964,148,6461,2451,4700,4597,753,9812,9299,3321,411,8361}
{6884,1414,8050,4726,3853,5585,3125,1905,7130,2574,3410,7786,4814,8207,7191,9227,7552,238,3432,5166,2165,1099,5528,7322,8795,9326,7368,2280,5630,4221,3638,9438,8504,8004,6505,1427,9881,4031,4475,7805,8867,1862,1008,5499,3853,9088,4874,7767,784,7385}
125000
Returns: 125001
{"AEDADD","FDCDBE","BDFABA","BDFDBA","FEACEC","BBBCFA"}
46
{3182,219,4569,3420,3013,6823,4595,206,1134,2856,2871,505,3962,4943,2534,6946,4271,614,8673,4290,3294,3759,2672,532,7962,8020,5254,370,4241,7753,4085,6186,7359,6011,7495,2927,3182,8318,3015,5949,1392,3616,6820,6719,3559,3041,3329,7067,5646,2854}
{5276,4063,1022,97,2144,458,1710,4307,5249,3904,4000,9951,8025,4535,1696,966,2915,1514,701,1173,5736,5130,3051,1823,7395,1076,6924,7058,1304,6152,7653,6871,7383,8354,4819,6178,7459,2807,336,8534,5318,4167,6545,4685,6576,2340,6284,3249,8242,3916}
{9465,154,780,9882,2139,3172,9775,9356,5474,2210,3938,2385,3855,3636,6112,3356,3774,5437,8284,9215,2811,9247,5380,3011,4613,7872,6131,6681,8904,2178,8875,5117,8787,3997,8884,1332,5002,2052,5390,8767,3775,2807,5482,2367,9614,8792,1963,4059,6778,9897}
{1931,7554,3298,5474,3232,3559,4955,495,4576,7257,6485,5359,1628,1701,8961,2737,8761,2016,4860,3836,2575,8028,8037,9681,6546,4221,5279,8280,3051,3354,3970,4154,4819,2383,6852,5533,6473,5704,4230,6382,3830,2159,6501,3729,8832,6688,9963,6819,4459,2530}
125000
Returns: 17372
{"BA","AB","BD","DB"}
56
{5544,1652,1322,2668,8938,7931,3617,2981,1143,7058,8722,3124,8959,345,4895,6841,8047,3199,5618,253,2001,9618,5057,5690,9620,6421,5491,4374,1667,6568,1642,9055,6964,6300,846,3751,4835,545,5130,3108,1341,8926,2692,3851,1329,5569,6398,3609,4032,2980}
{2005,9586,1355,8213,6988,5869,5443,4744,3950,9764,2858,6178,8933,3607,1112,6895,9040,1466,7949,459,6690,3048,1232,6949,6247,6469,4032,9458,295,2512,1220,220,4552,7204,9556,3842,8916,9236,6332,9680,581,8119,9724,3767,5171,3272,8590,8233,3695,9619}
{1739,1929,5345,3503,985,1370,466,7272,7814,4688,3977,1564,2760,6994,8575,4764,7570,3577,2197,5324,585,2534,2421,3272,134,6677,7095,1065,8939,241,1895,2579,8779,5134,1798,5460,9708,1390,181,644,637,9747,7634,5302,1147,2627,9305,2047,4513,4910}
{9921,9168,1637,193,729,8365,1826,1991,1542,2759,1334,4466,6660,6042,4827,6962,4398,8237,9071,7574,8043,5594,6398,9181,9954,3197,5425,3908,6442,6213,3446,8856,3978,7199,7089,8032,4966,5353,3622,4032,3494,3052,6111,8622,2329,7,2519,1966,3812,8195}
125000
Returns: 0
{"CCC","CCA","CBB"}
62
{1597,3717,7745,6733,7253,4150,8460,4661,9509,1026,7951,3585,7039,6980,5534,7525,4152,991,8685,9789,5543,411,2473,7952,1348,3066,8394,7012,1590,2282,8571,8300,1268,1089,4795,1794,7405,8377,5534,4916,1992,9280,3081,5216,2235,7339,1232,3896,9731,9717}
{9081,751,7216,6859,6052,1981,1567,5510,4774,5819,481,1818,5019,6651,6971,1461,8370,7514,4880,182,4414,8435,5756,1880,3755,840,2656,783,2818,8341,2793,9361,2841,7946,7834,986,8588,7260,8439,2845,5599,5054,8032,6216,8051,5540,7310,9916,3993,2546}
{8908,1117,3364,5790,4416,8722,4196,4611,210,4350,5786,9428,6092,6852,6672,4266,1339,1266,57,3781,1691,7989,1354,6669,9540,5028,1589,604,5682,137,9396,101,3927,5764,3830,4378,5533,765,7639,3126,3265,8410,4347,7302,3377,7466,8439,91,3961,4115}
{719,4338,4709,8596,4862,4452,8096,2758,2505,6885,9391,5913,6521,5047,8907,2324,5509,7767,6577,6789,9529,3619,9573,5756,7681,7210,1602,1128,4162,1655,2167,1109,7458,6354,3746,2617,2209,4115,8481,3192,8448,3604,8812,556,9804,9709,8088,7743,8424,493}
125000
Returns: 67156
{"ECA","ECE","CCD","AEA","ADE"}
74
{4099,8373,7910,8984,579,3278,9648,1261,5182,2488,3888,8922,3681,4007,21,4480,942,8643,8861,5108,6304,7184,2238,8867,8183,4305,8656,8811,8635,146,5562,4033,728,3067,2559,3155,3202,5355,8814,6489,2737,2740,7885,9275,9183,244,4935,2263,5858,3707}
{9979,1959,1682,2936,8477,9638,5156,4563,4088,3582,5667,9185,2600,6841,4859,3456,7108,2229,1640,6066,5282,8538,9815,8598,7303,8587,9873,3676,581,8128,8980,1379,6900,6801,4441,8748,9310,7006,5648,3435,6997,3363,4713,7550,2859,4874,9228,2762,8689,7184}
{489,6398,9637,9227,2848,4069,7908,1251,2773,8396,4190,5240,4899,3026,9864,2578,3677,3968,6707,7726,7,1050,6677,6131,4214,7277,350,7681,7807,2212,6856,7944,1542,7790,4022,9874,3452,4088,8734,5598,6287,2203,4202,3148,443,112,9478,1166,6314,9413}
{1965,9125,6397,4634,7042,3608,1002,7175,4236,4091,4301,261,3953,7124,4748,9934,23,313,3847,312,8494,6971,7157,7597,8782,6758,9675,2727,2063,9146,9617,2137,7624,4777,7012,3706,6767,2513,1761,2474,5814,1534,5775,1614,519,1692,6304,6386,278,5375}
125000
Returns: 29917
{"EB","GF","EA","BA","DE","GE","GD"}
86
{1176,8920,6573,3747,7973,5329,1001,9874,981,2451,9977,8106,2093,3610,6046,2685,2573,9217,3364,1274,6170,6418,9144,6535,5989,7677,9579,652,4913,4428,9014,8672,1713,7904,5375,5356,8304,8465,6838,6885,5686,3294,795,1043,689,5661,669,3605,9663,1589}
{1202,4970,111,3652,3668,3329,5689,1051,8045,2443,3952,1631,2020,6699,3868,7476,3572,6169,8004,4293,6426,1482,3770,1310,4421,9930,9557,3383,9292,98,528,6761,7256,1604,8258,6773,2548,924,8658,8354,5335,8709,2272,7959,1537,3211,1553,5016,885,3992}
{5451,3640,7617,2110,8861,5945,4197,4744,3764,3859,1716,5533,6023,8704,5149,1095,5413,8234,4343,6299,9728,7051,9313,2206,1064,1256,3469,3014,3182,9457,9180,2325,1397,6713,5300,6126,3896,9386,8689,6084,3863,5155,6422,7381,7299,4343,9949,4879,8025,3093}
{5606,2251,7538,1109,5281,2552,1114,6399,7199,8988,9138,345,5229,8402,3206,434,108,4345,9059,3878,9529,8051,2762,8374,8806,4636,6082,6829,6957,7202,4915,3341,4387,6306,4668,1750,8334,9007,4806,2481,642,6761,8849,840,619,1903,6095,176,4250,9816}
125000
Returns: 32375
{"DFCFHE","CGCFHF","DCHGDF","BADFDD","HHBFEG","FEEDBE","GGHAGG","CDHBBF"}
94
{6610,7602,178,3528,9087,1963,4545,7770,9694,615,3540,2831,2227,9777,984,2978,7493,2205,6973,7672,6031,3696,4247,975,7995,4770,3019,6332,620,7868,2048,9840,9219,3034,2514,3812,8220,5567,772,8672,884,9360,1123,7218,2486,5380,9780,9081,2190,5591}
{2132,8206,1790,6415,16,691,1653,8429,119,6789,8812,4521,6902,9283,6627,9864,9398,2402,9211,6136,6388,7709,1253,592,8548,8106,1758,3003,5742,1325,1292,149,3735,5418,2461,132,129,7814,6266,5432,5054,3848,9063,5344,7526,9317,9157,2275,46,4632}
{8824,8345,1670,7127,1483,6741,8223,970,158,497,5199,1019,9560,7728,1686,1822,7816,493,8809,1205,8139,6376,8471,7438,3951,1885,8219,3834,7118,8863,4062,5919,9378,5910,22,8324,3993,2340,702,2340,4191,9890,6708,3965,9175,2415,5456,1973,9036,8357}
{8277,4451,9217,8244,2578,9637,630,2471,3249,3608,2756,6098,7659,6704,17,7570,5744,8452,8143,8987,461,1294,2076,8994,2542,1782,9738,3306,4952,4076,5726,9968,8255,178,184,2615,4511,4806,947,330,57,5644,6927,6966,4258,553,2696,6374,4954,7413}
125000
Returns: 16582
{"ADEHGDD","AECFGHC","FCHAFAF","EFEFCHC","GHFFAEF","GBHADBG","FGAHBDH","CGEAGBD"}
156
{7642,250,8886,9001,8252,858,645,9592,1535,498,1086,147,6827,1469,1563,1523,4048,9675,2205,9660,8207,2849,4878,5799,7022,5500,1954,457,548,6483,1297,5759,2031,5981,9819,2724,5524,3767,7807,6252,1217,4824,5393,9580,4720,8037,1234,4628,9151,619}
{8548,4809,8009,8421,9441,1238,8688,3650,59,5548,5486,5611,4515,1661,6238,2810,133,3291,8732,1329,4866,9272,2034,3456,8999,7578,2970,3431,238,9081,5847,9216,2747,5005,748,1072,8815,6040,9583,2126,7436,6845,5655,8109,8205,3446,1695,775,3086,1835}
{710,8699,2749,667,3080,2556,7550,4829,6636,8243,5107,7393,5692,4217,1044,6518,2057,8914,1255,9516,6382,7159,1486,8053,247,6953,8691,657,9691,6761,7132,4563,2970,695,147,8198,4591,8244,9673,4371,3943,8695,8140,738,2494,1481,3209,7016,5882,6214}
{3157,8382,7719,4479,8000,3522,9964,679,8129,1130,6974,4653,7838,2567,7608,7811,597,9403,9585,4412,4585,5670,2987,8741,4171,3227,6590,6189,4017,2804,280,2815,7553,6215,6919,3028,8968,7756,4837,8118,6556,5463,5739,8685,2923,46,1785,4265,3451,7394}
125000
Returns: 18358
{"BBBBA","ACCBC","ACAAB"}
221
{7321,2296,1757,7531,1664,463,3261,5084,8203,5094,9521,4399,6307,5879,9052,1944,8261,1741,6244,1469,8299,144,1340,3620,7483,2786,1677,2922,627,5150,6510,7436,7458,7628,8837,8698,28,1469,4537,9004,4547,3394,5740,3948,5509,5534,4976,8315,8042,2958}
{4697,8420,7547,6194,9513,9865,7061,7854,2947,7099,7937,1623,9523,7086,1040,9739,4819,7501,890,3662,2876,9680,1520,2343,9820,3989,7213,3166,4284,8734,4503,53,1648,2090,723,8312,9181,612,3009,4339,4768,1882,732,9103,8516,8515,5171,200,4455,9904}
{7641,5945,7293,3476,2563,4214,4524,362,7992,3446,3033,9019,3229,2529,9519,9324,8199,340,4085,2478,1399,1049,305,6690,3198,3440,4960,3867,6834,6344,5776,9956,6809,22,1248,9013,6922,2323,9193,3275,8548,1716,3474,5442,7104,2679,4177,1803,502,7696}
{9446,7928,9412,7191,8038,5517,3802,8416,2767,8197,2278,121,7910,7471,5266,2889,9271,3609,2515,5006,7475,6839,5632,8378,942,2122,4033,667,6019,7450,1090,670,9550,9152,2247,2696,1549,380,5848,7847,5814,5053,4792,6158,2809,2243,8117,644,1824,9663}
125000
Returns: 32952
{"A","B","E","E","D"}
376
{4496,1062,7682,814,7145,8128,9535,5421,9563,4101,628,5405,7724,3047,9760,2167,1843,3915,2931,9372,8167,2050,544,5620,8026,628,9370,7804,3819,8022,4771,2391,873,7179,4844,9093,8897,5420,2444,559,5817,8757,3960,8622,3238,8690,5720,235,6488,306}
{189,7938,6848,164,6041,17,9155,2272,749,2359,834,9500,3880,7861,1434,354,9906,8544,5482,8037,540,6764,1005,2878,4433,9316,8274,6611,7638,3763,9244,3720,1376,9343,8967,9307,55,6420,1549,5508,2434,9585,1160,1906,4792,7476,1791,8961,9699,2003}
{1380,6008,9095,2337,9139,5676,4430,4799,1434,8201,3244,9048,6906,4171,4735,8951,4331,7518,8795,9446,9835,5419,4498,3700,8519,5445,5560,5505,3992,654,8216,1693,7802,3792,2602,3903,6492,197,6896,2063,674,6600,3648,9630,6779,1620,5885,9847,9404,5069}
{558,7859,7977,1008,5349,2913,8002,675,6505,5259,7764,6721,445,7390,241,8603,7012,312,7775,992,2292,5566,8430,178,9000,9978,4108,1286,5858,6121,2428,2664,5099,9427,3500,6312,7326,329,4449,6207,8827,9577,289,650,756,6023,8731,7248,1580,9374}
125000
Returns: 0
{"ABBAAA","BBBAAB"}
462
{7968,937,9802,2017,8367,622,8778,3830,9279,8169,7297,5404,1354,2767,7087,7224,5413,8836,1155,5703,8193,3475,838,446,153,4538,8672,912,7573,6153,1289,4112,4329,7831,6501,4718,9602,2026,29,671,7228,5493,225,2759,9889,7584,1627,7106,1475,979}
{8079,3140,6988,4280,8167,974,4749,9038,1166,8247,9964,984,5539,3344,1004,2506,8691,9629,4406,7614,4015,3093,4261,9023,5306,4581,1455,4911,6727,7170,7742,5274,1960,238,946,7014,2593,641,1848,6722,5662,8462,9699,116,5672,6327,1512,3038,8827,5820}
{6916,9450,910,3300,7251,5883,8119,7538,8668,6366,5222,7944,5523,6516,3320,683,7296,6904,8366,3772,1092,4677,1004,5470,3755,3018,1359,7168,9047,5184,6428,5707,6308,7714,808,7413,7489,5277,1438,540,1801,6583,1354,2512,5999,6719,9074,3008,8025,2088}
{1744,7698,5688,6497,6040,5894,6189,6172,324,9839,7046,8016,4748,8143,552,1620,4713,6521,3284,9284,9643,4535,4564,4231,8560,2150,5609,1398,4624,9565,731,1170,7743,4481,5345,2811,4059,9361,8705,3040,4025,1844,9089,9624,931,9283,3770,8548,5920,2456}
125000
Returns: 60750
{"BAAAB","ABBBB"}
506
{6801,5339,5854,6249,69,6204,9600,5818,3925,6570,3399,3482,6865,2125,8530,7056,5207,638,3033,4378,6849,1175,8928,3324,1477,858,1317,1252,7042,8916,4090,3057,3029,2824,7090,9067,1124,4969,1511,9986,723,6541,703,9531,8058,8607,3812,7731,9677,5015}
{3949,4391,4387,3729,4444,9538,5773,2949,6120,2806,1339,4674,7941,7226,7337,4407,6485,420,7732,2035,1910,4974,5499,5917,6016,4651,8775,8589,7365,8236,3920,8228,7939,7229,9544,1451,3195,9895,2519,3691,2915,4475,4582,162,8677,9971,3317,3420,9052,6330}
{3106,6266,5710,5203,6591,5572,7693,3379,6678,5131,9779,9791,6888,5388,9501,1683,9464,6278,2302,1470,4670,3315,5557,5351,7680,7791,7389,9349,1331,3557,7983,7452,3781,2447,2801,6324,9237,2342,2575,3546,7087,7517,5866,9156,2410,308,8435,6618,2926,3440}
{8928,1067,1889,9713,7290,8841,9229,4154,6688,118,3829,5499,5221,8637,1792,2286,5121,4451,7988,6521,3968,4860,7037,6362,809,6886,6870,6796,9530,2252,5938,812,1518,9244,8398,9978,8617,8972,5272,5324,1808,1709,7211,8397,6426,2581,6628,1937,2071,1310}
125000
Returns: 88345
{"CBDCDE","ACACAC","ABBEBC","ABBEEE","CBDBDA"}
643
{7352,5907,2442,6163,7675,496,7863,4921,5262,8233,5647,813,6686,7578,8315,1729,5755,6728,368,5151,6406,2134,3356,8530,6766,5960,3939,4972,4784,686,5968,4246,9888,1606,5839,3320,9537,7130,7179,9975,2642,3146,6148,3245,8718,9339,4376,3660,6860,2977}
{6097,8615,4990,1752,3178,6104,5937,3277,798,9723,8615,8296,3972,3286,5289,5859,9048,7370,3450,7625,1667,2221,1730,6977,7690,8051,7264,181,1757,6177,2138,7463,1221,1027,5593,9236,5893,8291,5788,7130,3189,2738,103,346,1669,2276,3978,1803,8737,1354}
{1591,4406,9069,6810,5069,3243,5811,5753,8758,1335,8777,3099,7522,1410,9507,1744,4542,6718,2374,3956,1081,2146,5233,637,504,8767,5236,4518,8742,2210,621,4403,8332,3214,4283,1469,1071,3903,9123,2702,7172,9087,4557,8765,936,3804,9561,8867,178,37}
{991,9355,852,100,9397,9811,120,2745,1461,2066,7388,5681,6758,3770,2531,8900,2974,1921,1151,8709,2155,9224,310,8501,6967,2907,9136,6846,4304,412,7653,1789,4630,4656,9273,4399,5509,7831,3726,6646,170,2349,3931,912,7366,1734,9722,7739,4649,6428}
125000
Returns: 15981
{"FCBGF","DCCDE","DEDFB","ABAEA","GGBGD","BDECA","AFGDD"}
761
{6938,1419,1013,4371,3761,8567,2667,7263,5123,5089,670,4400,10,5476,4116,6719,1716,3328,7104,5457,1955,4115,474,7863,4629,2153,7255,7631,101,6262,5480,3546,6918,5976,2311,4357,107,5155,8493,3276,972,5413,237,3014,945,2758,316,520,1038,9774}
{9564,7727,1500,7805,2483,3507,2623,3314,6441,4783,7442,1397,9400,5092,1846,4903,6443,4483,6445,3315,3073,8049,7819,1897,8983,8191,361,6988,3516,1878,3726,3337,5571,5079,9958,494,943,313,4367,7718,1683,1180,4624,5513,2868,2407,4187,5602,2229,9609}
{6526,8156,3636,1033,4024,2949,2157,3990,6680,9144,5244,5425,1753,5171,7758,8918,4375,9477,9321,8402,2140,7525,3150,9670,1874,4295,7938,5677,6070,4816,8646,8557,7570,845,981,5984,4638,3597,4717,536,1865,2504,5053,5258,6932,2762,8644,3905,7150,4486}
{5217,4442,2573,8598,9120,5542,2797,3738,3932,3430,2630,2329,5016,4876,273,2472,4567,2869,1581,9365,4694,2653,4738,6376,37,8566,1502,598,9653,2915,5761,4525,5049,2861,7496,4572,8770,6758,7281,7916,674,992,8041,6130,8971,1072,4580,9212,4445,6199}
125000
Returns: 17695
{"CFCBBDBHGI","GDAEAIBIAC","ACBFEEHBIH","GACIGEEEBB","EGEDFECFFD","HIBBFIIFEE","DDHFFECDDH","DFCBGECEHI","ACFCCGHCFC"}
884
{2164,5667,2942,2853,6442,7527,5804,5006,6672,9635,2341,372,44,3911,1777,8214,1232,7839,757,8879,9349,4827,5936,6344,7511,9020,4755,2484,6421,8333,3785,2096,9131,2614,612,1631,7907,3264,9002,7218,4674,9348,8754,7859,3380,438,3752,9520,7351,3565}
{6515,5291,5449,6796,2413,5014,5710,2023,8541,6341,2189,518,7167,436,1842,6091,9858,6535,9870,3994,3873,1487,2499,8104,6941,3717,6338,9964,1680,248,7215,3820,361,8239,2756,6661,8832,8975,2711,1750,5874,6057,6204,9187,6283,8840,3556,5161,6963,2476}
{9244,6939,9971,5341,4709,7598,368,1848,949,8089,9509,8970,2733,5781,6570,115,815,8982,1287,4289,9655,4846,8783,2455,2339,201,4252,4675,7489,7582,4011,8785,3155,4358,9902,2975,439,2334,8556,4835,5474,2117,5597,2595,5224,4966,5059,2652,1711,6014}
{4762,108,9679,7582,2474,2268,5605,4327,2643,4075,2593,2054,1588,9676,8002,4736,4159,7184,1431,9579,20,6118,2622,3321,7343,3249,1079,144,4734,9879,9469,2788,290,8342,5223,9233,4616,5596,4410,7706,6581,701,3553,7630,6322,487,2255,7430,6940,5382}
125000
Returns: 13419
{"CBACCC","BAABAC","AAACBA"}
974
{9832,861,1944,2286,2717,103,4195,9225,3381,8773,52,7700,4137,352,8892,1106,1322,6438,456,6046,118,4714,9046,7919,9155,2299,9944,3392,8465,7664,1751,4462,9873,9023,9090,7542,9484,5279,1641,3872,6639,8403,8890,2989,4537,1300,4748,993,3503,3290}
{3300,1364,2654,2809,5259,852,9529,7159,5254,515,6059,9736,7630,6204,6419,973,2970,4085,1914,2746,2699,2859,145,3233,3257,6612,9224,666,7220,1361,8707,1058,2671,9131,4339,6959,9671,3351,8515,3137,4336,6232,9777,924,5324,4368,1496,5989,9787,8895}
{5515,6526,8557,5610,462,5466,6741,2607,3047,5067,7709,3633,5501,8235,5024,5452,6925,6145,8691,307,2692,1662,5369,2105,9212,4245,7445,3053,1620,2236,1397,4378,4234,1622,6103,8690,7182,2552,3373,7947,4895,2500,9164,8476,8640,4271,678,2386,7403,4089}
{6843,4641,9488,8332,618,4546,8923,1346,8456,6636,2820,3849,2453,5608,7849,6658,4549,1749,4210,6605,2841,1149,5339,238,5260,2666,2126,3321,4366,1225,201,8879,8662,3884,6975,3297,3210,5019,2728,6881,6989,8223,3746,2413,3415,4537,1275,2126,277,4751}
125000
Returns: 53139
{"CBFFEDAB","FAAAAEBC","ABFFDAEA","CDBBAADC","ABFDBECD","DEBFFABE"}
1029
{5162,4040,3076,413,8212,2381,6173,7474,5211,7190,6590,806,985,2726,8174,1304,3276,1265,7831,6037,5636,3023,3704,6054,838,1581,5264,3277,6219,8201,9876,1174,3895,2800,4321,1327,2990,1605,8852,7303,1235,2064,7508,305,4453,1397,7441,2148,6634,5848}
{7723,6346,6250,1513,7779,8074,5721,5063,9088,6831,426,5415,7944,8700,9296,8973,9110,5825,1670,7417,4060,5457,8610,7164,4082,9700,4125,2725,4599,3933,8631,451,2957,8525,3105,2598,2637,2685,5891,8761,8245,7395,6402,6411,2527,2538,7479,6010,2763,7169}
{1875,4896,4596,746,8208,1274,2211,2207,6077,9940,2057,8590,4769,780,7955,3828,2902,6772,3049,342,855,6033,2048,2066,7391,1831,9252,2496,8535,3893,6464,7719,2010,457,6142,1103,1779,734,1186,1424,9683,7154,8585,1841,5600,4205,4129,2295,3652,8432}
{2222,2226,7352,3086,6771,5327,2049,701,3005,7253,4929,2190,5150,6310,3021,8691,4616,8668,1073,1122,1385,1030,8238,3144,7521,918,392,3919,8134,6925,8149,2738,9637,4460,818,4853,3835,3083,8186,4858,3573,4430,3517,9329,2120,793,8529,803,506,5264}
125000
Returns: 22886
{"DGDEGCGFCA","GGCECBDDGF","FCHCFAEFHC","ACAHGCAGFB","GDHCDCFDHE","EHBFBAFBHE","HEAGGDAGGE","FHHDGGGBBC"}
2086
{6129,1133,1370,8755,2354,5606,1735,2960,7850,1632,879,8834,5435,1434,2984,1711,246,5398,6098,2513,5749,9351,3966,2178,8746,3846,9203,2466,91,2595,8718,9675,1805,5584,9107,2575,3015,9704,4592,1866,1405,8966,8004,6088,435,5051,2643,1446,1169,7492}
{6243,696,4352,2588,1795,66,1839,3128,4081,721,6351,5600,8146,4354,2021,5297,5257,1475,5321,6962,6576,2618,2404,3729,6332,7270,2682,8463,4194,5886,5919,8210,7321,2612,4844,461,6991,5298,1258,7272,4437,4445,9503,9125,5117,6441,5227,9233,1944,1282}
{608,381,802,7038,4424,4739,4724,2696,8611,7558,852,4105,550,5622,7384,1498,1674,9611,7581,5525,7282,847,6760,5488,4788,3969,5287,8324,1469,657,9073,4083,9724,2987,5056,5266,6513,2368,6020,9511,2834,1142,8123,9310,9001,2663,6160,2985,2423,892}
{1686,8964,6999,7706,9008,5904,7972,105,8844,7546,595,8269,2065,3439,2050,5909,4418,3813,5643,7086,2268,9828,7253,1772,3451,5982,4089,3369,1143,9873,9777,5477,8340,5878,3239,1091,1253,7654,6193,2495,7582,7536,6665,183,2910,6261,1055,827,601,460}
125000
Returns: 18111
{"AAAAAAAAAA"}
3396
{197,3336,5162,2577,5927,5995,2865,9644,4575,4679,356,7020,8926,4461,6203,8167,533,5270,3803,8622,7588,8717,4604,3506,2228,5836,5006,3987,6259,5856,6637,2096,815,7208,8265,146,7921,8193,991,6817,8438,5662,1860,917,1156,617,7123,606,3846,3074}
{8809,2083,7042,2377,6401,6431,8547,7530,4706,2883,9488,7066,6937,5241,8406,7080,2528,1364,8673,7973,2052,101,9307,2128,4381,1278,8946,914,2551,4203,325,134,8231,9990,2089,2397,3082,194,2263,428,1102,454,8194,9538,3730,1184,6586,4755,287,6189}
{3167,2711,1301,8136,353,2868,7494,6182,1800,1267,7344,3577,8207,2089,4306,2504,8223,4828,8469,1780,9970,9909,6673,5215,9954,8699,5746,276,8346,808,5300,2394,8170,5998,1861,6593,6708,9903,5838,833,1043,7611,4548,7307,1488,3479,7827,7792,7916,7743}
{4371,519,3963,2320,3366,3478,863,6216,1597,4294,7079,6231,6185,9952,8870,512,3202,3900,2750,454,8641,7993,2541,4340,2425,7203,8709,486,9165,7223,1289,8479,3101,6001,5285,2085,1403,2112,7072,920,1949,8845,9417,6457,8106,2447,8513,2839,1252,8881}
125000
Returns: 125001
{"EGEHFG","ACCFEH","HHCEGB","DDBFCH","DEEBCD","DBGHHA","FBCDBG","EBFFEG"}
4137
{4235,513,5289,4827,7017,7949,2589,5391,4794,6344,6442,6602,5864,3804,9598,3579,8371,795,8050,5296,5166,1440,5989,8727,6950,8147,3902,4412,7849,2411,9050,1938,417,8929,9598,1431,749,1415,9310,3153,9920,9861,6262,3369,6266,2276,7315,6952,4518,8497}
{4744,8377,8192,5873,6770,4311,7941,8243,4453,5986,3861,9471,9666,1568,9944,6772,4507,6916,4344,5013,2195,9963,9596,8191,7904,7990,1493,990,6224,434,1812,8429,120,5153,6099,5114,3411,9666,3243,453,6860,9840,8687,2195,7287,743,9505,1110,4266,4043}
{4589,315,4733,6770,1434,6803,9098,291,8320,8338,7711,9270,5321,6687,8264,5007,4175,4995,287,1927,9135,9208,7218,1625,7541,9657,460,6184,7136,532,3424,4484,1213,6670,9255,3068,5533,4167,5071,2931,9127,7181,9989,7243,686,4155,6021,4883,876,880}
{8565,126,4124,275,2314,7956,137,9626,3236,8584,783,7398,7381,5071,9588,8132,8911,79,4221,9,4417,3506,6252,6249,4470,4814,7521,1386,2806,8039,7492,2344,5124,3493,6283,7991,3540,2081,4463,6476,5424,7714,6352,7199,2846,6885,7189,6930,9879,4166}
125000
Returns: 11302
{"DCAABDC","BDBCCDC","BBDDBAC","DDBDBAC"}
5801
{2570,7097,9222,4602,8359,6049,5281,1133,1121,4151,2375,2778,442,8589,6702,9014,2168,9468,2861,9874,8153,7132,8031,8903,1943,1958,4315,5192,4564,1076,8372,136,906,4375,4345,5579,4885,9288,6023,8469,4915,855,6190,5404,6961,5427,5115,7063,7606,5424}
{3780,4664,178,568,1152,2531,15,7281,1537,3887,9743,2920,1994,2152,4915,3663,5564,9747,1073,852,3816,7048,3603,9362,3900,6878,1841,5089,5702,4235,3031,8988,4825,8301,7200,9987,7663,5659,4980,7235,2179,436,7754,9498,257,8200,6002,184,9156,2544}
{8624,1492,7863,6343,8973,1134,1446,4319,1813,8956,6733,4144,2972,3072,6452,1011,135,7647,6236,5800,7804,3628,8539,4819,6903,2927,4462,5923,4169,4380,2351,6059,2041,2599,1095,8081,8660,3447,7418,1565,5274,9922,7662,9562,4143,9883,8550,4443,6026,9774}
{125,4152,2255,94,4242,8362,452,5464,5378,6938,2514,7627,7472,2893,8439,4398,8897,7730,9231,9277,5891,4295,1861,4285,5476,9919,6139,7755,5228,5399,1099,4314,9159,3113,326,6332,8047,6118,7755,3913,5937,3464,9372,6179,4752,7015,6933,2983,9891,4519}
125000
Returns: 44293
{"AAABABBBAB","BAAAABBBAB"}
6761
{8168,3162,5273,5834,2323,9476,7520,4977,3290,6623,9630,9509,1398,9282,5662,7296,5288,1281,7905,5796,9314,2871,6010,5448,6028,925,500,143,506,5163,2740,6554,6203,4690,6472,789,9182,1111,6019,8108,9682,7335,9303,4822,2405,369,749,7983,4901,3390}
{8881,371,6368,370,3125,4815,3795,4008,2582,7758,7522,8615,4209,7959,590,86,63,7835,6411,2560,6322,6162,6209,8556,7460,1183,8550,6592,9176,9413,1562,6037,2586,2111,646,626,1556,6364,3235,2049,1154,1629,3051,6360,5710,7826,5929,2775,3501,4150}
{9235,2049,6573,3888,5986,4202,807,5818,6257,3541,6878,60,1789,5386,4015,4338,3715,63,486,534,6612,6414,6473,240,224,2485,2691,5534,2551,5346,5415,3178,830,8633,6959,3324,7588,924,1932,5256,3965,5696,7372,1307,6605,9837,4428,1605,6311,7893}
{7495,1577,8159,8124,6054,3042,5140,5313,3106,9664,1237,7554,3283,7350,9939,750,347,4385,148,4130,3841,5758,1825,9762,3401,8516,2278,3750,9067,8768,3668,5941,4151,9701,6596,8381,4319,6934,288,5088,953,2788,5217,863,243,5341,5916,4555,233,2288}
125000
Returns: 66798
{"BABCBDAAD","ABAABAADA","DBBDDDCAA","ABBAADAAD"}
7274
{4551,851,303,2847,1998,6622,6916,7319,9671,2072,1936,5656,3351,4925,1168,6034,9266,4335,6965,8863,5782,3133,7672,2978,6655,7825,5325,5997,837,1777,8319,2980,1122,6556,6369,4841,9224,1513,8158,9468,4011,4405,6546,8262,5845,9363,7237,8532,1982,4824}
{6745,9016,7115,9325,109,3956,3428,4581,6808,2467,8593,6790,6380,6179,8131,1719,5654,7475,632,293,2982,1813,3605,6061,7205,3411,9835,5500,44,7942,1953,4709,9011,5897,6611,1488,4151,6363,3605,6122,9231,3151,3184,5104,4285,5353,4612,750,116,3998}
{2379,9096,1536,2973,9268,4223,9833,6403,5813,3840,5430,8939,2294,2295,3130,6230,7804,1124,3210,1189,3524,3279,9210,675,3446,4806,2855,9831,8076,2312,3922,7662,6278,6537,5259,3357,5158,1044,1768,9023,7603,2925,4986,9555,7035,9767,4740,9014,9203,4090}
{9873,2533,5134,2346,6423,904,5733,2609,8148,6103,3779,595,7348,5832,4675,1616,2905,5811,6472,8949,7607,7527,3148,3580,4654,9725,2887,1438,8286,6466,6722,9460,3046,1685,2619,3032,8399,4350,4301,422,2066,2391,2079,2393,3977,6667,1064,2955,6788,1766}
125000
Returns: 32669
{"FAIBA","JCCHF","AFGIH","CJAAA","IGCDA","EEIBJ","GDJAA","HCBAH","GIJFD","DFBAF"}
8018
{405,8109,5467,3007,8624,6313,213,6717,8191,8477,3276,9530,312,7126,5235,2928,8521,1653,1160,8125,3650,2537,1446,7221,4911,835,3248,3761,1720,3473,3231,7633,5527,7101,7211,3598,7975,1742,8325,8536,1798,8486,5013,424,4676,1331,9195,482,7140,8683}
{7086,508,6254,4520,4125,1872,4342,3651,3358,571,4083,4328,1626,4709,6623,7598,9252,1491,2298,5179,4196,3620,2632,7535,8741,5039,8854,9563,1540,719,885,889,6174,4366,3622,8433,7674,3686,9808,301,6968,5307,5223,7004,1068,6591,7058,9022,9858,86}
{2826,5110,8640,3376,528,1317,5921,9894,4951,1979,6933,3967,1135,6179,317,388,8704,7876,3502,8865,6346,6807,4484,2684,6798,7386,6174,7269,1370,1448,9980,3107,4210,9494,5976,8332,8013,3927,4059,3560,2306,3559,5359,1247,6538,9653,1623,911,4909,9880}
{8430,7018,4997,5626,1486,32,7161,5749,9450,7089,6176,3650,3020,9400,2726,2455,7925,9796,1011,8088,2270,6877,5765,6476,9818,5778,4745,7242,7596,751,5745,229,3381,7783,1070,1743,5993,153,3398,1790,92,2011,412,3375,2832,2745,9611,7942,191,6822}
125000
Returns: 10416
{"CBA","CEF","BCE","AFA","DBC","FEB"}
9452
{8504,1900,9320,4789,7314,4014,2249,1425,2040,3947,7900,4486,4674,4954,4512,2442,8717,8512,4651,7444,2953,1549,8103,6393,4962,5816,768,5127,3889,5223,1839,8210,8160,2047,3475,3609,6799,7031,3857,1716,7078,3407,6167,1782,43,8226,9417,6772,3033,7002}
{1508,1321,2907,3360,908,8108,3217,9719,6349,7907,568,3577,5221,9931,5621,9664,1520,7265,7930,4013,9155,9777,3271,3498,5705,3570,5054,91,8114,1714,4064,109,5417,2444,1405,5729,1694,6878,3481,1402,6323,1166,9788,3196,8841,3335,1879,5456,8128,5342}
{4814,8798,5919,986,9528,8381,6313,5878,9105,8576,9927,6759,1147,8648,6181,1710,402,111,2904,9087,2066,1943,9032,2201,2703,9572,4824,194,8532,7745,8725,1699,1995,6287,6907,4439,8697,8181,1852,7995,6984,4041,6594,8669,652,8558,7542,374,507,8926}
{8381,4569,9927,9363,3047,1508,3438,1283,4768,990,9969,2125,3659,1884,1135,3189,1090,3519,6773,4363,682,3308,3663,8108,33,1309,7582,1986,2942,5641,8320,2494,5233,2766,8217,809,7636,270,8212,2659,1114,6633,4226,7974,2155,1684,6392,6536,8943,6243}
125000
Returns: 15737
{"FAEF","ADBG","FDFF","EEDA","ABAC","DDCF","GACG"}
18847
{3223,9520,6396,1726,9839,4279,4165,8507,6523,8732,253,2176,146,4448,9049,7730,7097,8678,9095,2469,7696,4967,3309,4039,1259,2981,3684,7647,7982,3697,3470,2319,5971,731,4994,2640,3839,3074,612,2575,598,5748,3250,3806,5922,8138,9779,4700,3492,4952}
{1102,457,1119,10000,6857,277,1199,2521,5968,358,8929,257,4949,6534,8037,6761,7529,7894,8182,3189,7048,2781,9155,3843,9455,2925,6664,2168,4751,53,6178,8815,5538,3670,1115,8146,7224,8012,931,9454,3979,3690,1728,1882,4070,3995,7780,335,3231,648}
{5925,2869,7590,4959,2865,9018,8175,1720,8603,2553,8987,1068,1258,9128,6618,4007,8024,9897,1488,6943,721,6334,7585,4238,7165,6891,9452,2431,6909,294,6183,9509,1279,7559,5448,1602,5228,921,9019,202,6604,2954,8377,905,5334,6255,2838,3764,6400,8216}
{9984,1687,5010,3230,5442,4065,1294,3311,8849,6112,1172,1620,6740,8906,7811,2785,8104,404,5063,1066,3430,7212,5994,3114,3267,6848,9303,2592,4288,9113,2779,2707,257,3581,2934,1662,6402,3130,4696,1973,7863,5189,4663,1549,5654,2914,8261,8516,7152,3925}
125000
Returns: 0
{"D","A","C","C","C"}
20185
{5546,5163,2884,7428,8275,4462,9540,9600,1935,6306,4308,380,7478,7198,2614,4683,7910,2206,842,6111,6693,7815,2973,9333,9676,5918,3333,1506,3139,6291,7531,5981,3259,5990,2896,4240,2387,7592,5612,9313,8603,7050,4330,6677,5199,3597,8517,8782,735,6742}
{2504,7387,5096,2234,1743,5453,5631,8824,394,6115,8871,2542,8383,9907,7708,5949,8958,6694,4294,9785,3083,1077,627,6414,6923,5784,5710,1910,4150,6145,2705,463,2131,741,3788,3736,6839,6482,9698,3389,8373,1293,5290,9855,6378,5365,8164,4273,3417,8518}
{8948,9900,8932,6924,2966,4727,4022,1086,4929,5563,2733,3634,9864,1456,322,3684,9707,1751,8108,4792,1,9329,944,217,4605,5481,4974,8232,6068,8211,2329,6896,9587,978,5956,3746,6049,1052,9861,7582,4559,257,4336,3917,2849,4667,3187,4328,489,7105}
{4600,3946,6965,2922,5267,4023,3161,3003,3556,3556,9286,998,8768,7168,3360,4935,8309,9272,5588,6335,5366,2366,9437,8613,1751,1686,8865,3775,1675,7349,1385,7843,6909,9314,1901,4659,8427,8328,5744,1148,3191,3363,3646,189,3264,8516,1364,5033,3285,9043}
125000
Returns: 0
{"ABCA","BAAA","CCAB"}
35370
{838,177,3863,7241,5789,1828,3365,2564,6931,2837,569,706,2822,5892,4883,4126,1172,4847,9518,5808,1348,3562,9275,7491,3167,5533,7088,6351,8307,6691,5167,3180,7443,8652,7324,1074,8374,2830,163,3566,5098,7966,9533,6096,7056,4027,4173,5578,5165,5539}
{3443,7007,9063,3615,1045,874,7046,4523,5355,3672,9890,1800,6289,3841,7913,7630,853,5820,8587,1377,2424,4132,6201,9117,938,6956,4267,3353,2879,7510,9850,6860,724,8135,2099,899,3521,2385,8301,1651,951,8061,4739,9637,8499,9255,3473,948,657,6181}
{6354,6857,5340,8575,8225,9607,8428,4823,1132,9082,967,1880,1119,6878,7590,2590,3242,4783,7148,4195,1323,5026,9567,4684,393,5865,441,2713,6888,5320,4019,1302,8726,6900,2476,2155,8000,6957,5113,8424,6927,3284,8674,4732,3575,7491,3341,9754,5218,9561}
{6415,2711,8367,347,9206,7042,2905,7508,5105,5393,2496,9576,3299,868,1524,2830,230,2682,9574,7781,6828,8040,4300,2286,2216,6958,3675,4489,5148,5269,8542,8858,4068,4061,8733,3836,8248,2872,3186,4361,7419,234,5415,5683,6313,2350,6340,726,6373,1577}
125000
Returns: 13562
{"CFDGDBEF","GDCEDFFF","GAEEGCCD","AFEFFEGD","EFEDDEFF","AFDDFAFB","BDDGEGAC"}
49537
{3591,4519,8184,1561,6773,7780,586,8593,5202,316,6560,1096,9839,3527,3331,9958,4929,614,8876,4389,3463,7577,4962,225,1926,5745,3079,3043,1934,2003,4669,7815,7497,6314,5050,3969,289,49,2746,4078,6125,490,4778,2672,6576,5743,5187,3429,5813,2034}
{1218,6945,2715,2339,7860,6715,627,136,7944,2534,2891,9886,115,7876,2775,812,1029,8410,4324,7285,4058,9149,3470,218,1676,3570,2478,9529,3024,3697,9190,1485,2599,7072,1455,7495,7410,314,9994,8415,359,7985,402,4259,4210,5909,4974,4140,2306,866}
{1981,6575,4900,6613,4523,5203,5858,9670,5445,3385,818,9097,3441,7166,2811,755,7500,4479,3336,4365,9780,2914,6467,9967,125,8292,3426,6718,180,4856,8769,4675,3667,4323,3000,7896,6593,1717,5569,7118,6883,8107,1286,2206,7021,628,5248,4924,9648,6103}
{3892,9138,8923,436,8731,3822,3445,2022,7865,558,3802,9883,6591,9507,2161,6468,737,9158,7479,3256,5306,3259,6949,8023,7671,9287,179,6600,1375,8635,4645,7117,2883,5219,5419,2317,6437,1379,9703,1323,9369,1378,1691,225,2129,9496,394,2467,1580,6076}
125000
Returns: 109
{"EABDEECDCA","FDADFFEEAB","CDCEEFDFDE","DADFFDEDBA","BFCAACEAAD","AEDFCADCAE"}
55894
{7939,7230,4949,4872,2358,5281,1464,5678,9016,6288,1363,4979,930,7000,763,3503,8561,1191,461,1769,93,2742,499,5544,180,2701,3652,152,1839,6647,8160,4173,2048,5220,5778,7217,8182,2272,4336,1047,5057,2769,4152,3678,6201,8402,1618,5467,419,8311}
{2894,8644,8809,7872,7003,2620,9802,5846,5441,9403,7335,3011,114,853,4505,1755,2020,7540,3761,9948,6331,6677,974,4736,3746,2518,6601,3454,8344,580,3510,2853,6657,9132,8907,6136,5138,9927,249,7990,450,4033,9966,4007,8284,3276,272,253,7728,2216}
{9046,3355,4092,104,5325,3292,410,8227,9130,6023,6790,7888,5860,2969,2706,9075,9933,5668,3767,3628,7908,4368,5156,5585,2647,8408,4874,413,5252,8700,435,9095,3592,7368,689,4151,1598,4967,1945,877,8812,3875,3634,5415,5448,2770,1238,8919,9266,6779}
{1487,8660,9906,848,8189,6571,9323,3640,2318,4981,5724,2982,4257,9083,8415,3313,7650,4612,6472,1296,4797,8157,5173,8302,9354,8269,5852,8011,9302,6561,8143,1527,7312,4934,8999,7712,4882,4954,5473,405,9203,2519,4795,5854,6886,102,2661,2126,7504,9126}
125000
Returns: 33166
{"BACDBBABB","BDABDECED","DACCBECEB","DDCCDCBBC","DBBBDBEEB"}
68173
{2247,4342,1153,9864,7348,9595,5609,7082,4572,7945,7082,6347,1214,7103,3919,5889,285,3614,321,9309,3400,7454,8224,8116,70,2267,9779,6851,5130,8521,2214,1097,8864,8291,850,410,1766,6547,7457,1319,5982,3036,4601,9895,8319,6344,3830,2486,8907,85}
{9764,7892,4180,3757,8882,3058,222,2567,2616,9020,8651,4160,2082,7453,7123,7977,5272,2876,8204,5889,5388,5864,659,3268,1486,9477,1246,2558,4868,5454,3150,1246,59,7080,8599,4278,2086,1556,3539,9683,8831,4687,8100,3172,7738,5056,4736,9449,3717,1596}
{4057,8141,6095,6068,7050,7152,3956,5790,8158,4310,4356,3443,6401,8110,1119,5515,2114,5876,7319,9521,8259,5358,9893,5873,1330,5471,7533,3244,8593,1960,7440,698,6047,4823,280,900,7035,7103,1668,6949,3287,3431,3784,9230,7544,1909,995,8385,7808,7244}
{9522,8321,1039,8576,8407,1632,8166,8613,7707,9089,7800,7705,8572,4090,5233,460,4410,8948,3078,6727,3363,7723,9456,5943,1422,7743,8349,2637,1315,4677,4224,4159,7649,5126,7991,3646,3946,4550,4948,1524,3353,5163,3889,4243,7300,3991,4270,3224,5629,2796}
125000
Returns: 277
{"EEB","DEB","DBA","AFA","EAA","ADC"}
74599
{56,4612,4996,2899,3242,4092,9875,1381,7337,8932,8113,8426,7033,5088,1340,3071,9828,6674,2423,7906,3667,8915,8039,6483,6466,4258,8397,5204,5276,4384,6400,4569,5845,2566,166,7881,5603,6219,7319,1462,4162,159,5835,8659,8759,4655,5961,3943,3042,9534}
{9346,2486,6392,4839,5409,6042,7540,6247,3594,6781,8330,6093,1587,1889,5863,2472,1681,2591,1277,5483,3894,2403,8885,7919,5393,5945,3451,1611,2298,8664,6856,3127,4758,1153,6986,836,4875,7258,8178,5500,3222,669,6977,6783,5948,6518,6625,9228,4149,3553}
{4715,9666,5968,5579,2224,1404,7989,3808,6771,8404,2833,6125,6678,4591,6964,1340,7548,9865,4929,8051,9038,5211,5262,10,6068,9020,8218,6299,5455,5965,4227,1606,4329,2297,5252,8009,8196,3814,1182,1937,5747,365,936,6791,7881,1599,9454,1281,6275,4051}
{4639,9483,4797,2592,390,2519,5987,2316,3064,2526,6407,4235,3141,3830,5457,7384,5969,9819,6583,862,8423,4257,6591,1537,7357,5389,9432,2760,2831,1500,7838,713,9002,9,1138,5279,2452,6750,9762,9303,3001,1287,7650,279,1872,1352,648,4531,1486,3609}
125000
Returns: 0
{"BBAAA","AABBB"}
85798
{2327,3046,3464,7513,259,5648,4871,8450,2702,9213,6550,1215,9382,9975,5659,958,7401,3525,8701,5611,2003,7339,9434,8273,1822,1548,8735,3529,3172,8976,3842,8962,3790,6131,3117,4946,9091,2599,8830,3596,5198,5300,2292,4533,1840,6344,6276,7688,1353,1764}
{1602,2276,9925,8655,3975,6159,1586,72,5166,7258,1888,7767,1111,6481,9780,8711,1831,6208,9569,3120,7666,5046,9900,161,260,6947,8443,348,7146,8574,4491,5452,5823,7285,8607,412,296,3313,7886,7218,2237,6774,5235,6725,8307,6031,9130,7041,688,9943}
{8091,8366,3830,8814,4507,8229,1,9773,7946,2080,3000,4638,6350,3646,6180,8597,9951,4569,2935,3313,7888,5229,8789,9983,9061,7186,1325,4483,4277,2048,6348,5723,9179,2757,3438,4256,6507,5868,5189,602,8210,1722,7763,9709,7286,2838,3544,228,3498,8149}
{896,9900,4584,2452,7001,9657,8661,7626,2191,9196,6109,9955,6545,614,9695,2994,5529,651,4872,6791,9232,815,2505,5499,6982,1022,6907,8690,7153,3003,534,2145,8351,8060,4541,4604,6350,1595,5567,8568,3674,8797,9046,9429,926,5674,8347,5763,3233,7094}
125000
Returns: 62471
{"AAAAABA","AAABBAB"}
93709
{4040,8940,2418,8566,8299,4203,3376,6367,4058,4368,7941,3898,3294,5367,5346,3982,4474,9821,67,5721,4160,7175,1713,8637,359,8126,2369,7644,2616,1458,2292,7314,9921,3680,5296,5073,6680,1919,2342,6520,6513,4289,7346,3017,5051,50,9800,8600,3689,6754}
{8979,3378,8630,4907,6415,8427,2944,9434,8570,503,2388,1630,7110,6588,1251,4162,1474,2229,7670,6376,989,1364,5183,3864,6038,227,1297,396,7537,2007,4591,7521,2432,8511,9894,1044,2412,2257,9590,8086,5228,6244,9675,8425,6746,792,8943,5822,9636,9132}
{3696,8263,8185,6048,8259,3321,7641,4212,8569,4264,1530,2764,9959,2695,7025,8922,2014,4092,1676,6963,7640,9407,1692,2132,555,870,9193,7047,4036,6641,5918,1889,9531,3002,2254,8863,9730,129,2164,4015,1830,5964,5119,2747,9999,7493,4813,1333,2530,2419}
{7502,5523,817,9000,8306,7968,887,6055,2808,5487,5006,7214,1419,5930,4342,883,7290,8485,1103,476,1292,4316,6324,6569,2252,7640,5680,8342,236,6056,2532,5066,4561,2962,809,8407,5090,1058,3536,7795,2914,1646,8055,5963,1900,6244,6110,7148,3837,6859}
125000
Returns: 0
{"FEAEGEFFD","EIEGEBDIF","ACGIDCDDC","GAECFBGIH","HCAAFBHAI","DFBCDCCCH","FDIIBDFCG","GCEIEHHCA","CABADFIEH"}
105879
{2642,1490,6585,4241,2564,5165,273,6615,6030,653,4483,7741,8763,8814,2673,8042,1847,4245,4108,668,5487,4946,5255,8337,8356,7255,7907,4920,3001,7624,7356,1663,5757,5753,6094,3884,6879,9117,3986,9304,1519,632,7045,7713,4678,7196,4946,9131,7670,9897}
{6593,6655,4072,5735,5578,3382,9767,6754,8189,5006,5718,5836,8830,146,8854,8038,8663,3105,6286,9341,4288,9204,4281,9263,5229,7818,515,7649,5361,767,5807,1215,5433,6671,5619,9169,976,6473,2015,9992,9775,9196,758,1712,2239,7437,8683,5360,1142,8811}
{188,8466,4422,7568,7591,8844,5628,7050,6563,9829,5259,549,1291,3487,7974,7751,4672,2452,7650,6831,805,6865,5660,312,5404,5667,9930,8191,3828,9408,9642,3377,6394,1688,3523,9011,1977,5280,2448,7424,7499,6955,5973,8918,1625,5467,4447,641,5129,2848}
{4121,8317,6437,4659,5162,8738,7606,1826,8068,7020,5245,872,3728,6163,5961,3228,7209,4310,1616,5272,6655,2514,8040,829,6988,3607,3978,2683,1297,2904,2358,8474,9580,1034,8998,2649,6352,2207,8881,6628,5932,1406,3622,8614,1805,6960,118,4540,5030,3895}
125000
Returns: 0
{"DABADA","BEBECE","DDAAAD","ECACAC","ACEABC"}
110722
{3240,370,1701,6914,6208,5033,7153,5682,6248,5044,6052,245,5976,9738,7889,1676,4615,3317,7165,8372,5939,5750,4551,9956,4927,6956,8491,4659,9157,1912,7406,5097,4583,1263,7534,4212,7521,9691,9904,5039,6677,52,8732,3035,1812,4255,1721,8124,7497,211}
{9659,9648,3982,1406,6843,8676,4790,1754,1503,7084,3219,8750,223,361,3833,6197,2961,5214,2076,764,7625,9601,9813,1602,3601,3199,89,2042,4939,4136,976,8428,3884,7905,1815,3923,5784,2321,4932,3188,7031,5989,3391,4512,4979,5808,8773,1782,6525,123}
{1660,3827,4389,299,945,6901,6852,8636,3046,1180,2479,7401,3615,2353,8624,2621,7685,7785,3822,4424,7777,3855,4245,9083,6320,1604,1764,5073,3430,5111,195,3258,2277,2846,220,4502,1585,6035,8743,1805,9315,2531,7405,7884,138,2137,6760,6036,1988,5057}
{1308,4320,1659,704,4614,3253,5063,4913,2747,8335,7778,7629,2742,751,7727,2650,3640,8375,3801,5938,7936,9210,3969,6770,6685,1827,1638,9904,4703,1350,5177,3124,9699,1540,9675,3516,6740,9325,235,5790,2474,9879,6751,9721,7360,7243,4766,8249,6582,3935}
125000
Returns: 754
{"BBB","EBB","EBC","BAA","EBD"}
65536
{3615,3,1496,4789,9966,6389,4975,8712,744,6422,9733,7590,8985,3415,5249,7047,5396,5136,5207,4908,1727,894,8772,8445,2349,7880,2513,5020,9353,4081,3681,6434,2657,4641,9949,6392,4616,671,7292,2150,4675,4015,3662,3623,9248,8019,109,3729,1048,9335}
{9638,5263,3161,9003,9262,6969,8806,9560,2702,1842,214,1120,7619,6372,2711,4936,1362,200,1808,3526,7480,6164,1695,2870,4291,4008,7550,8478,3305,2200,2623,86,5174,9831,6423,5490,5787,7547,406,8861,9317,4535,8208,5931,5163,6267,8299,5893,5055,4626}
{3265,7785,3953,233,3526,9649,6482,8146,5689,4165,7529,1988,617,9862,7821,2839,4868,7710,8557,7754,1945,873,438,5700,1462,3522,1337,2090,2467,7063,5661,5340,4735,6046,5632,1311,8236,8648,1161,8045,296,4754,6958,3439,179,148,7528,1267,2824,8849}
{6550,6972,7494,6033,4509,880,1634,5421,3665,7047,2356,1208,4953,3348,3057,8201,115,9132,7127,7393,5856,3476,3687,8368,9547,2580,7160,477,6067,8959,385,407,4051,3604,7787,6696,3065,5935,7397,178,2500,8037,8524,1204,4531,8073,9299,7188,7640,1772}
125000
Returns: 125001
{"ABACCC","BACBCB","BCACBC"}
65535
{4814,9801,181,4179,5423,5018,7640,3418,6754,2525,2038,5421,357,2804,1130,7094,193,794,1850,1514,715,2813,9256,131,1639,2882,9443,7999,4930,3521,2826,8902,213,99,6132,6962,3181,4600,5390,1792,3929,3431,2383,1937,3406,5683,43,9321,6061,4796}
{8399,9068,3328,8893,9968,8511,4142,8284,1059,4762,1016,8525,4110,366,9945,5116,5102,1383,2404,9335,1819,1695,3758,7292,4866,7388,1745,3119,8338,9594,466,443,3484,9356,855,7886,2686,7799,7240,1350,5401,966,7002,6864,975,4537,3714,5172,7328,5484}
{3020,3694,6874,6211,3205,5256,752,9452,3849,461,8146,5760,6589,7371,4368,4052,3279,5274,1606,4588,7886,7447,563,6044,5454,4390,5058,2769,2647,2216,8016,6259,9388,8076,8239,7215,8801,8369,3794,9041,2490,4814,6294,1327,4949,7319,7238,164,7551,2282}
{1569,1116,3506,4784,6450,6194,3206,686,5266,2844,7401,9106,3348,1803,3463,2768,3243,2152,9623,6723,4499,2156,464,258,4008,5022,8970,6666,4178,8507,6171,511,2316,7603,1944,6982,9678,2282,2512,9118,3816,9186,3450,7252,9343,7686,4814,7549,694,2431}
125000
Returns: 91494
{"EEBBCEDDDC","BIDCCAAIBF","ADGHCBEIFD","HHHAAHCCID","CIDHGACGGC","DCDHCBEAHI","EAIAGEACGH","BBBADIHHCE","BBEDBIGHEI"}
65537
{4645,8386,5892,7693,4399,4481,992,8357,2071,2584,7910,2963,7486,5147,9150,1953,6219,6739,3932,5300,3994,1044,838,581,5647,2520,5122,2424,5477,9803,2370,1744,3234,130,7217,1813,9027,8339,8194,2476,9751,3728,7988,5540,8046,8726,317,2914,7374,3021}
{1942,890,3031,4145,702,1141,3956,6549,8264,9551,4038,545,9424,643,1930,1178,4897,8341,2248,6310,2153,7453,4022,2759,3577,3109,5712,6351,921,968,7752,959,7411,3919,9947,1890,2401,9158,6605,4216,5013,8505,4371,9621,7910,7165,1585,1967,7020,3117}
{203,4774,3687,9356,1514,2946,133,1473,8231,6006,5920,7707,4020,4879,1288,8355,5196,2614,329,724,5894,2564,9448,6596,3393,1301,2444,1567,8327,1873,8271,7408,1649,4887,1398,5281,6257,2971,4450,4733,1544,7283,9184,616,7316,2373,5448,6160,8486,101}
{1565,6684,7529,5925,6981,6849,1359,4163,6649,2285,7426,32,9908,6898,6556,3343,5847,6349,9478,4374,4436,4612,8941,4631,1787,9957,7600,2235,3320,8015,7260,8999,4371,3206,5229,323,4169,620,9053,9121,3798,5761,7688,857,8445,5698,788,8116,581,7720}
125000
Returns: 0
{"AAAAAAAAAA", "AAAAAAAAAA", "AAAAAAAAAA", "AAAAAAAAAA", "AAAAAAAAAA", "AAAAAAAAAA", "AAAAAAAAAA", "AAAAAAAAAA", "AAAAAAAAAA", "AAAAAAAAAA" }
125000
{0, 3, 5 }
{10, 9, 7 }
{1, 2, 4 }
{5, 1, 3 }
125000
Returns: 0