Statistics

Problem Statement for "ElephantDrinking"

Problem Statement

There is an n times n field. Some of the cells of the field contain water springs. You are given a map of the field encoded as a String[] field. There are n elements in field and each of them has n characters. Each character in field is a digit. The digit 0 represents a cell with no water. The digits 1 through 9 represent springs, and the digit is the rate at which the spring gives water. For example, the digit 5 is a spring that produces 5 units of water per unit of time.


There are 4n elephants around the field: one per each cell boundary, as shown in the pictures below. The elephants can use their trunks to drink water. Each elephant can only extend its trunk straight into the field. So, for example, the elephants that are on the left side of the field can only extend their noses towards the right. The trunks are long enough to reach the opposite end of the field. Each elephant can drink water at any rate. All water not consumed by elephants is lost.




There are two additional restrictions: The trunks of elephants are not allowed to intersect. For each cell with water, there can be at most one elephant drinking from that cell.


For example, figure (a) below shows a valid configuration. Cells with water springs are blue, elephants are green, and their trunks are red. In the figure there are four elephants that drink. Figures (b) and (c) show invalid configurations. In both of them the trunks intersect.


Your task is to return the maximal total number of units of water per unit time the elephants can drink.

Definition

Class:
ElephantDrinking
Method:
maxSum
Parameters:
String[]
Returns:
int
Method signature:
int maxSum(String[] field)
(be sure your method is public)

Constraints

  • n will be between 2 and 50, inclusive.
  • field will contain exactly n elements.
  • Each element in field will contain exactly n characters.
  • Each character in field will be a digit ('0'-'9').

Examples

  1. {"00000", "00110", "01000", "00100", "00000"}

    Returns: 4

    This is the field shown in the figure in the problem statement. All springs have rate 1. As shown in figure (a), four elephants can drink at the same time. And as we only have four cells with water, this is clearly optimal.

  2. {"111", "191", "111"}

    Returns: 16

    In the optimal solution there will be seven elephants drinking from springs with rate 1, and one elephant drinking from the central spring with rate 9. The total rate at which these elephants will consume water is 7*1 + 1*9 = 16 units per unit of time.

  3. {"1010", "0011", "1100", "1111"}

    Returns: 10

  4. {"0011", "1110", "0111", "0101"}

    Returns: 10

  5. {"11100", "00100", "11111", "00100", "10111"}

    Returns: 13

  6. {"023771", "509514", "675579", "367472", "575198", "115281"}

    Returns: 112

  7. {"11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111111111111111111111111111111", "11111111111011111111111111101111111111", "11111111111000111111111100001111111111", "11111111111000001111111000011111111111", "11111111111100000000000000011111111111", "11111111111100000000000000011111111111", "11111111111100000000000000111111111111", "11111111111110000000000000111111111111", "11111111111100000000000000011111111111", "11111111111000000000000000001111111111", "11111110111000000000000000001110111111", "11111110010000000000000000001100111111", "11111111000000000000000000001001111111", "11111111110000000000000000000011111111", "11111111100000110000000011000001111111", "11111110000001111000001111000000111111", "11111100000000111000001100000000101111", "11110000000110111000001101100000000111", "11111000000111110000000111111000111111", "11111100001111110000000111111111111111", "11111111111111100000000011111111111111", "11111111111111100000000011111111111111", "11111111111111000000000011111111111111", "11111111111111000000000011111111111111", "11111111111111100000000111111111111111", "11111111111111100000000111111111111111"}

    Returns: 148

  8. {"99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999", "99999999999999999999999999999999999999999999999999"}

    Returns: 1764

  9. {"9721", "7314", "7946", "1350"}

    Returns: 60

  10. {"98893101", "21132635", "93620957", "58517220", "15573031", "75370018", "64504678", "90012248"}

    Returns: 184

  11. {"77887778777887787787777787878788887787","88878877787777787887887778878888878888","77877788878778777788787877777878778787","88888888788777777887787778777788877787","88788888888778777778887878788778878778","78787787788888788878878777888788878788","78887778778788777778888778787777788777","88877887878778778787887787887778888878","88787778777777887777878777777877787887","77878788777788888777777787787787878877","78887877787787777777877878788778778887","88887777888778788788878777778778778778","77877887887877878777777878877878788777","77878877788878787787888788787778877778","88877778787777887777887877887777778887","87777787887887787778787877778787887877","78888878888878888788878777788788777787","78878878878888787877887878877877777788","88788778878777777877877887777777888777","78777888887888787788777878778887877878","77877887787777878777778877788777888888","87777878778878777888887778877777887778","77787788788877887778777887887878788778","78777787887787787887777888787788787788","87877788888788878788887788878888887777","77888778778887888778777787878777887877","77878778778787878888778877888788887788","78878877778778877778878788878788877877","77888787788877778888887888788877878877","78788878877787788788778877878878778887","78778887878888878877878878778787778778","87777878787888878887778777777787877877","78777787887877878787877877777788887878","87778887887787787888788877778878878877","78777878778887888788788887887878778877","88887887778878788887887877887888777887","88888887878778887878787888887887777887","77778778887877877788778887887788787777"}

    Returns: 1179

  12. {"121111221022121202011012021200211","200021010102022200111121212102102","111222011120011221222200120010101","020210012001011111210001120122011","112202202010221000110100101002020","102200211111221120000200200000201","001122211112200221000122010010120","020022112000202110022220200012211","200022011112211012211001112202220","221022112010110012210101110101022","120101020111122002201212100200011","121112210000020220110000220110121","101111112120121010120222202021202","201121212122120112120120201110212","022022020220012100100111000110021","021221120202000212002020220021101","220120221011210121000101102120020","120121002120210200002212211220210","020201102110121121212121121000221","120012210022021211110102021100010","012020022002202102101122122102002","120121210201110211120001120200122","222100021112110101201010102102102","002022112102201211221120110100112","002022220221222202202200110010101","010120112200002021100220222102201","101021010100212202021001101011002","121122212100002020001111102100210","002122110121120120210011202002021","100121011200001011111220202011010","002120011110100221120010111202211","100112201002111010110001212120200","221011210021210212112202111222012"}

    Returns: 244

  13. {"0000000000","0000000000","0000000000","0000000000","0000000000","0000000000","0000000000","0000000000","0000000000","0000000000"}

    Returns: 0

  14. {"10001111001101111111110110110100110001111","01011010000111010110111001110000100101001","11110011001011001101001110010100100101000","11100111111010111010111110010010000001011","01110101100101111110110101000100110000010","00000001111011101111001101110011011011001","00011000101110001001111010001000000000110","00000000101010000110011010001101100110000","11001101010110101100001111101011111111101","01100111000001101010011001110011000000010","10110001100100101001100100111111010111000","11101111110001000110001000100000001011010","11101110110101100001010000010110011111111","11010110000100010100100010100001000000000","11100111100001110010100000101111100100010","11110110101010000100011101101000001011000","01000001010101001011001001111010010000000","00111110111011010010101011010011001100100","00011101100111100011000011110010011001010","10011010010010001011000110101001010000000","11000111011011000110101011001100000001100","01110010010000110100111100111010010110011","00010101000000100001001011110111110111100","10001001101001011001010111001101010001010","01110101101101110100011110001000011100010","00101011001111101011100001100100010001111","10100011000001011111001001101100001001101","01101111000000100100000110101010110100110","00111111110000010011011111001001100111000","10001111011011001011001000000011010110011","00000010011110000001100011111011000101110","01111001011110000011001100010001111101111","01111011000010110110111011000100001111101","11000100100111101000110000001110100100010","01000001101010100110100000001011010000100","10001100101101011011111101110111101010110","10110100110000000011111011010011000101111","01110001100000100010001101001000010110101","10010100001111111011001100000101010111010","11001100011100110000101011010101000011101","11111001101111011000101101111100111100101"}

    Returns: 158

  15. {"7544577","7645664","7446467","5455465","4575756","5646646","7476765"}

    Returns: 151

  16. {"111111","111111","111111","111111","111111","111111"}

    Returns: 20

  17. {"45545455454555455555554444544545444","45444544555444554544444445555455554","45544545544554455454555444454445455","44454554554455545555445444545555454","54554454445555444544445544545445444","55455544545444455445454454444445544","54455554445545445555554454544554454","44454445554454555444445445454445554","55555444545544454445455544545545444","54454455545555545544544555444555454","44544545444544554545445545545554545","54445455544455554444544454545555444","55554545555555545445445455555445454","55555454544544444444444555455444555","44545544455454445454445544554545544","44444445545545445555554544545544445","44544554555555555455545555554545455","55545554544444455555545544544445455","44554454455555445545545444454545455","44445555544455555545544445554544445","45444445545544554554545455445444454","54445455445454445454554444445454444","55454455544554554454555545455554455","54444445544454544545544555545554554","54545554544455554454555455544454455","54445554444555544455544444544455545","54544455455555444445454555545554554","44544544444544454545555455554555545","45454554554454444444555545445544454","44444455545454454544454544545444445","55544454454544444454444555554455544","44545544554555445455455545444454555","55444444545444554555445444444554445","44455545544445454444454545554555544","44544544545454444445544454544455455"}

    Returns: 673

  18. {"5413134356","4343214124","5442541554","5344624542","2166123553","2624242621","1162346214","6154263313","6262345141","3455223654"}

    Returns: 181

  19. {"66454665456544446565556455555645444646645445655646","65656444666556655666656655646554555455466465565545","64454455564656454545646644564546664445655664544456","46545446466655546655664566654564665554564656445555","46455646464564555454545546644644546664645555464655","56545446554554464665456666646665464565666564645544","44454654454665454456545665464644666446566666464644","46555465644656545455664455545545664666445655654464","55454665555445445454555546654446554556666554545645","66446665655645455645666445564446566665645664655665","65464464654654564456555444445466546645644656564654","46464566646664446446546664555565465446565664544544","45464556646464656456464656564544545556454644456646","65555566545666555454455445566464554555564466646645","64666454655565655554655646645444444466565456464446","55455654644545655644455554644666646456656544666565","64455456566666545564544554654464665664465444664544","45454455545564446545565465664455454646555454445646","45455554665555556646656456556466466665556645546554","65665654444656546664565656455465444565565445556455","65444655664644556446446665464644465466656464454445","66666566455644555544466555554656446556465656646565","55664565654544656445446554446664465454665466465446","64464456466644654556556664565555544465665554555556","66646655544565464665464564566544666454445545456464","46646664644466556466454465445565644444445646566454","55665555554564454455666555466566554464554444664664","44565566464545456465454456554646545645566546564556","55455666655544555645556454466564664666665464664545","45554656456644644645666564546566565654644446656566","56554666554666664565464666566645465445646645555544","46666446555564565545455445566464666645454655465544","45654644564546466464566444654454466665654666555444","45654654654554555655445646546554665445666445646464","64466466656546546456556454545464446556555665565554","64545654445644666654465645646664655664654464444546","45466655455466664446466656555644454466654666456555","45465554544654655464544644565655656465656555665455","56555546554655444566544464454555646556646456466456","64554466644464554665455666654454565454464656464465","54546555446454555564565565556644454646454465454464","55546465455465555554566666465445664666566556456654","65656544556656465456544545455564564446455454564665","45654554555665455454654465454546454454566454664665","46646664565464665444644654646544554644644656465644","44445465464544655444556456656555444456444464555546","55664556465555566455646666546464556655466644455464","65655654466456644454565656445546544565456645646554","64656655566645654644666645656655455446665464455445","64465666664554566554564465445455654665644545666654"}

    Returns: 1166

  20. {"0020000102001000101000020022020201222012121","0222220102100100022121212010201201222200011","1001200120200022111022000222120221220120011","1222010110201210101212010220200112110202122","0022010010212021002122212001002001010220211","1122011212020120101020202211020002011021021","2002000121122221120020100202221211212020101","0100122212212020202020101111012122221220100","0012121210110200100000120210021011211220212","1001220222122121202111222222121100101211210","1001120210222010112102021120021001122020112","2211212000201001121020102020210212211211202","1112021021120211012001202112102000000001212","1221001000120221212111002100121201001020121","2120001020111201121010102100021021112121222","2110221002200000212022011212121122220021110","0211102210120200210202010212021210222100211","2210022121101011201001201200101122121120220","0022210211011201012120102220121022211002121","1212200121211020102111121111120220210221120","2111121002120000001002121021222101001212111","1102201101220220012211102212022220101010000","1222011200210110210200111202200122012000020","2211100110010000002101122010012111202000212","1000110010222202110000111010220102211122200","1002202220120100111221220021101202120222001","0020111220012201200122022002100101020101011","0210210212122220120212000111122212011222222","2201122222122212200022221001120001012100001","1202100222021212122010112111221121211022100","2000201021200012110100221102220102011212210","1210012121121102201012011121221101111112112","2022122102012202200122220121021121000101100","1200200120000020201120102201101100102210100","2000211201001211000110110212212212102110212","0221210121010000201201010222002221200220222","0122111010211200200100000101201112200212210","2112211102011011102100111022202212102110111","2002011010100110201121201122000112111212021","0001120212100111011002002112001200100011000","0012001010111001221201211110021010111021101","2122120010110021212120002011122100100221012","0022002222222022100110111222112100202101202"}

    Returns: 320

  21. {"21","22"}

    Returns: 7

  22. {"77387637687737753836335535337536545335574536645","45564773546658686748867558886654747857456744777","55844464736657887754383336484456437654886854485","56855353768885473866445344444483466378456375736","36367778375563443665473747685838747534855383864","46736337874877663436863853583485677336734366567","65834866386483867476554644367876766674773737665","37855654883556778377366688843544588867736468836","68738344685367676684887385637334533776655745534","46887374465488643333657754838853576846564573755","63433335787854544466736466538645646444348763455","43467335735676483584776464463576467448465348378","53674455337338548783476768444547353533785756378","86677465463677834356477585838557857778363484336","65573387376577643548455445873786366533785877846","86775345588344345683373476838834578856888378868","68766765887358445668554544444867547458587536565","34633434676454358438855688766876735365587788676","43767533478673834544744653648457773488388353635","38483364766568466644633333353776766454763543456","63348538568634537487448436768865587543473448664","46348588736745778634768648537438887684355758333","77658376354738877388848766847684864588335764644","67755883453874853634687784565883787767875787334","78478856855355867444486686438587544534866463767","84847887346773683638587764587588877433545344774","84564734587435637474553745533535746876656548636","87565867534534734355875758687443685683547444463","46568863634474437653784658653645645487437555757","45785774743334773578743846444636333555544868453","78733768547784485775673348466885357647558678565","85354434353645634666776885468373857878374587334","86557385477844583733357438375554884786644348654","48384343873846334576747376836537637844435365877","43488767354748636485456565857653484837568747573","46464678347433655733354474673458867388477888646","64455365476634334864388644586568367433785765463","47448465376778357454584656344848347447734554677","38368483473373774883334475377863368334644333343","48635787466754858438433346483483578464373467337","87478656735573346446437777685687564447887387447","77748337765537785857768546467554835734353474747","58656558543357776734637654335436864636747846634","43636573778463885634738866543756366373636445665","57557334343638736765567855873536658346864664833","66643747578375556843747786334365838357734683665","55376534456355357654837655543445668563655443683"}

    Returns: 1408

  23. {"011111111110110110101100","110011110100110111001100","111111000101110100010111","000111011001000010101001","011000100011110000011111","010010100110100110101101","110101011110101000100010","100110101100011101011100","111011100111101001111011","101100111100101011011111","110000111100110100110010","101011111010110101010010","001110000110111111111110","011000010000001001011000","010000011010100010010000","011111010000011001011101","101001010000110100111111","100100011010000100011101","011011000011111111110010","000110111101010001010000","001110000100010001110010","010110011001011010001000","011101010101001011100111","011001101011110110100000"}

    Returns: 86

  24. {"2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222","2222222222222222222222222222222222222"}

    Returns: 288

  25. {"778888777","787777788","878788878","878787888","788788887","778777778","788888787","877878777","887788888"}

    Returns: 253

  26. {"0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000"}

    Returns: 0

  27. {"444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444","444444444444444444444444444444444444444444444"}

    Returns: 704

  28. {"111111101111001010001","000101010000100100001","011100011000010000001","110001111111111011110","111101001001001000100","110000101101010110010","111001110001001010000","001010100110001000011","000010011011000101111","000100001010010111100","011000011100011010110","011101010110101011110","101110111111011101001","110011001001000111000","110000101111101010000","101101100000110000001","001101111001111011000","001110001100110000001","111000011101001100111","111011111110010111101","100010011000111011111"}

    Returns: 79

  29. {"22121211112222221111111122","11111112122221111112211111","21122221121112221211122212","22211121222221222211121122","12221221211211111112121121","11111112111211221211211121","11122221111221111121121121","21122111112122112212221212","22212222222122121211221111","22111222221112211222222112","11212212211121121121111111","12122111112122212121221212","11221111112112121211122122","11112111112112212111221111","22111112222222222212111221","11111112212111221121111212","12212121211111121211212222","22112221212121111112222222","11121121211111121111221222","11111111111222222122222112","11122122211121112222211222","21221212221112222211211112","11211111222111211121121111","21221121111221221211212212","22112121121222111212221222","11212221221212212212122112"}

    Returns: 197

  30. {"66166113345341124463124","34151126546253142643364","11423111614145314641366","52111336454626511145424","26252245352414143336632","45161113165161155213263","55242521644255561423426","55635534456325454444314","54162466424561215146131","32342156234462112645226","66531263242612556614465","44121236231535654414522","14465363214664516316463","45611552224551533546252","55115653333636126154663","14635366535646413223444","53642266333355521256341","21362333563425154633625","34141622345632154361511","16616523113526232523423","53162443154535245335144","62152551134521551221653","41641526466555252462123"}

    Returns: 485

  31. {"0221","0020","2021","1210"}

    Returns: 15

  32. {"555556565555666666565656565555665565665556","656556666666665556555555655665656556655655","656555555565665555566666556666566656655665","656555555566656666565656655555656565565665","655565656655555666656665656555656655656555","666556665655656665665656555566665656565556","656565555555556655656556655566656665665665","556565655556655566555555565655665556665665","556556566565656566665565666665556565565555","656656665566656666565665556656566555655565","666655655556556666656666556556565655665555","666555666656666556565556565656566655666556","666566655556656555565656655565665665665566","566666665655656565665555556656666665556656","665665565665666666566656555566566566656666","555565565666556666665665565556555565666666","656666555556556666666566666566666565556666","555656565665655566556556556656666665666666","655565656565655665556555565665565655655656","665655665665666656556656655655655565655556","666655656656656656655555565665565655655556","565556665665565655665665566556555665656656","565565565555665565556666665555666566666656","665565655566556556555565665555666555556565","555656565656655566555565665665665656556566","555655666565655665566556566565555666666556","556566565665666555565655655656555555565665","565655556666555556665565665556566566566655","656665656566556556566655555565666665655665","566666655655565656556666566556555665565565","665556656665655656565565556656566555565665","566566555566665555665656565656565566566655","566656665666565655555565656655655565555666","556665656656655555665555665665566655566555","665655566666565565665666566555655555565665","666665556556656566656556556655555555655656","566565666666566665566656655555666556555656","555665665556566565666656656655565665555556","665655666566565656566655666555566565555555","566566565656666656665566565566565655655666","655556555656655656565556555565666565665556","565655666555656665555666656565555565655666"}

    Returns: 977

  33. {"01101011101100000001100011011101111001000000010","10101000101010101110110111011011010000111011010","00001010010001011101001100101111101001100011010","10010100100011100111111100000001111000101000111","11100001111111011011011000011110110110111001110","11000010110000110001101001011111011101110000010","00110000010100101011011011001000000001011110010","10100010101001110110110111101010100011100110000","10001010101010010101101011011010110110100101011","11010111100000100110101101110001010001111010000","01010110110000111100100011111000111111011111010","10000000011011011111101001101001100011010111011","11111101001100011110000101000001101110011110011","11011100100001111011011110100100101010101010010","11110010011100011011111101111011111011100001110","10001000101000001111001001011010010000101100010","01011011000101110111110000100110100101000011001","01101001100011010101101000111101001011001110011","11100100011101010000100001101101110100000110111","10011001011101011011100110110110000001001010100","10110100111100011110001111100101110110101100100","00000010000000000011110110111101001111000010010","10110010010010101001111110101010111101011101011","01001111011100101100001110001010011010011111000","10110110010000101011110101001100011010010001101","01010101110101111100110001111010111100011111111","10111111001001110000110001000101111111101110010","10001010011101101100101000101111011111101001111","01101001111100001100100101111011101010101001110","10001000010000011110001011010111010001101010111","01111110110100111101111001110001010100001111001","00000010111000001011100101011100011110101101001","00111110100110100100110110010100011101001111000","01110111111101001111010011100001110111010010010","00010011001101101101010100100111100110100111011","00011110000100001111000111001111010110110110011","10010111110100010000111000101011111001100001111","11101101100100111100100101001111001010011010001","00100100101000100101111000110100011011011010101","11111000110001110000110010010110110011100000000","01011100000011011110110010100101000011100111001","00110011111011110011010010011100000100110010000","01010100001011100000000010011000010011100000100","10100110100000000010111111101101010110110001110","10011111100101000000011110100010010110001110000","01101100111100101111011010101111110010011001000","00100100111110101011111100110111100100010101110"}

    Returns: 177

  34. {"55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555","55555555555555555555555555555555555555555555"}

    Returns: 860

  35. {"34334333333334","33333444434343","43343444433344","43433343343443","34443333333334","34434333344344","43444344344343","43443434343333","44444344344343","33333333344334","43334334434443","44343343343344","43444344434333","44433343434334"}

    Returns: 203

  36. {"1122121121111221211121221222112211222112111112","2121211211122112212122122121211212122221212112","2122221211122222112212211212112112121211212121","1121212211212211121221222221221222212221212122","1221112122221212122212122121122111222111112212","1122222221211121121211122221221221222221212221","1121111222112111122111211121121112211112221122","1111222111112222211121121222112111222111112111","2221221112221112112122222211221111112211211121","1112222111121122112212211122111122112221121111","2222122122121111222121122212222111111211112212","1121122222222212111222221211222112121121211212","2212121121112222221221211222122222222121222222","2111111111211112211112211221221222212122221212","2111211211111122212211221212122111211212222111","2111111111222212211211121121211121212111121222","2112112112121211112212122111111211222221111221","1122212122121121211111221222111112212212221211","1221112212111221112222212111121111112121212221","2212121122221221211212121211121112221112211211","2121121212122211212111222211222221111222221211","1211212112122122221211121121111212212112122121","1221122111121221222122222112222212211222221122","1212212221111111221222211222211122111112222222","2112122122121211212222122221112211111122221112","1222212112122211121212212212111111222122221121","1211221121211121211222212212121112121221222112","2222222122112112122112212221121222221212212112","1222121111212121212222222111112221211112212212","1111111212222121111211111212212112111121212122","1212121111112212221112111222121111122221222212","2211112212122221121212111212121122112221111211","1221212211112112111222111212222222211211112222","1112211211221211121221122121211121211121211111","2222122211221122111122222221212222222121212212","1212212111111211221111221121211211121112222121","2211211222222111112221111121122212121111111122","1121112112112212112122212212122221121222221122","1212211222222212221222112222221111212212211122","2111222221212222211112111221222111211222122122","2221112212211211122222111212122122221212212122","2212121211111111121212111222221122112212121211","2211222222121212112121222122221121111211212222","1112121112211121212222111222112212222211221212","1222212112211221121212112112221111111111111221","2222222112212112221121211122211121212221122112"}

    Returns: 356

  37. {"454555","454444","555455","554454","554455","444445"}

    Returns: 95

  38. {"143334133244314331132122121232241432432124121","241214314222134341331242434424111321113441422","432321212433143341112123114313123433322141244","443423331442432312424142222422244134412213123","243234412231233241323433314412214222114144331","213443242144141233324333114243143423231424214","423442431211231434131321113214212433422133443","342122124324233312221312242224333312242133424","114422141221233443444421214323322111441413441","332143344321234133341413341221122114332342441","411231134334423142113214121142433121432323314","334212433314312342443124411124121123211234343","442232412332342311124411131441144142223141113","213433221313431212324244124433431433232213242","414334444111241141112334112422424144412442233","124144234112142223332423212441424411332342212","221411321122141421124123112434343124224243324","224221241441244131333414344422133323224132213","244222122121131444221412331212233433213222312","332431142214241342122122233441232224313443134","413142343411334211123144213342112444314232134","243211124123214213331142214333343411414112213","431444212333432143343122412343131322421433122","324122131141323414332114323241211424131433424","412112331412341412244111131342144114411343311","413334311123232434413324324424411134123412433","144341421114211241441311231423242132433211111","444341324433344142413211111443211431132432221","331412211144142423443113344344221111141133341","233242144412213344431433113122314123431122243","334121213141411124322212444422124411343142241","212412212144411112444244444232134411422132113","212411212434114441231214133131124224233214344","241223211133324214144121311211441421433233412","122414111133242321342142211433112432114143224","234331423444424111424234122211214242221244441","423414333141342232323312212224413132111224143","322322214422432232333322121424434232334334132","211114414341141131332332213421334113243311143","312332133431334231411114113413311413431334334","334431123213113324442414312311424144433241211","314413334424324413412232341413243232314143442","444413313321341234132234341321141321343142231","131212241342112322312444432111241433434212444","323341222231112421312431232322321333121434134"}

    Returns: 687

  39. {"252444432554352","232325435244424","355252225452442","543523253234344","444424234224222","553455343353554","325334543355544","445232523323255","253445445353254","235443243555253","332424525234524","553244452423422","443444255532425","433252224545322","535424522325523"}

    Returns: 256

  40. {"211121211212211112212211","211111222111222212211111","222211212222111212222212","221211211122121211112122","222222211221221222221112","222122221122112221122221","221211221212221121222211","222111212112112211221222","221122122112221122211221","112212122211111111212212","111212112221221122122111","212221111111122222212212","122122121112112122222121","221211121112221212122221","121121122112221222211222","212221221222111222122111","222221122112112212111122","112212211111122221122211","222221222221121211112221","222121122121212122112111","112111111111112211111211","211111121112121222111212","121121222221122212111122","212111211112212211112112"}

    Returns: 181

  41. {"211","211","111"}

    Returns: 10

  42. {"22222222222","22222222222","22222222222","22222222222","22222222222","22222222222","22222222222","22222222222","22222222222","22222222222","22222222222"}

    Returns: 80

  43. {"432352241122223225122312515","354121531321535413412442351","255425522241154252255342124","443233222433152213132232142","312214412334544555154311131","424245511142513452155444421","333134123233244351441311152","354532411313345513252524524","144552234331311552234412224","131554533513115521243325343","225121324513533253343231124","311134434414244444131411143","434353114333125552141223332","115355123513354252352332414","331524422443132422154442242","425351223431132243333512233","414331521125512324552313151","523412434112222212324445342","153313324325522434532233451","542313154553512342455242224","334145221332341211525442351","544324255154133144451112154","425133323411551315555414555","541334224321223232214435332","142534233244533321542411535","524334212332351221113522312","244153515155253353545554553"}

    Returns: 489

  44. {"3132233113323333332213211231123223313223","2332212313332331322232321333122333111321","1332213123332321132221121113322211312332","3121131333111322213131323123221232131332","1331332333131323121221232231112122112222","2333311333132333233132112222221112233312","2331331111233232113221322113123312322333","1133331311211132232222323213322222111313","1233111311231323131313212222122221121231","1211111132131113123113313133121221113111","3131133232113222211223311113213333131331","2111213321222323121212113111212133313321","1231131213313121121123122222323123221311","2331121333211112211223121233313212323331","1112331332133333231211213222213232321323","2233122223123113322112231313212113332131","2112331311223121323333133122122223113332","2111113213313231233311213111113231221222","3132223113133222321111132322231311223122","2212333333121223211132231332133231223211","3223123133212131133113213323222321322322","2221313312323133232231322322333212123231","2223333331323223212323312131132211111322","1332232133212123313233133111311313132123","1221112111332211312322221113112121233111","2313211322132312131333332123311232321233","3223333322321331311311211222311321221313","1131113133323312323213132133322221312231","2112211222312332231132123322332113332222","2321132123113311111322212223123321212211","3333331321231121321121113322311312232121","2231332211231133121321111333113322313131","1312213332331312123231211333222323111221","2222321313212212221311212222323313332231","2131122132221122311113113133133113133311","3333211211311123311133312221233212132311","1111121331133313121231121132123121222233","3221113211331212132123231113123321231231","1311333223112321133312133222311333113232","2322322223212332311231112212212133232321"}

    Returns: 458

  45. {"0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000"}

    Returns: 0

  46. {"1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111"}

    Returns: 132

  47. {"00000000000000","00000000000000","00000000000000","00000000000000","00000000000000","00000000000000","00000000000000","00000000000000","00000000000000","00000000000000","00000000000000","00000000000000","00000000000000","00000000000000"}

    Returns: 0

  48. {"566","767","555"}

    Returns: 47

  49. {"88888888","88888888","88888888","88888888","88888888","88888888","88888888","88888888"}

    Returns: 224

  50. {"00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000"}

    Returns: 0

  51. {"123012123311021333223211","132223312321232323232121","223220133033102133010323","132332323210111122213033","300111120023102212130032","322310021120331322321030","010001320032121333102332","010222131310133310102301","201310001101013121032322","311101203003100010211123","030313322103331321023123","022022101103323000123312","122231211001303122102223","212132201233300131320332","201301331313003311111030","221333312021231210033012","113133200322113112323210","030223112131011222202101","312021211320003302320231","210221020030331300300220","002101021323103020010021","012231023122330231333321","313200120100203313302033","020313110131133101203130"}

    Returns: 258

  52. {"2222122","2122221","2111111","2222221","1122121","1212121","1111112"}

    Returns: 43

  53. {"57656445574644775564566","65466466467477556577545","75666565574456567456455","76444475774774576465476","44465456576676767445645","46567576475774575646765","64544666677546775464667","76575754467475774474467","75655575464465544574456","77557547546765576457464","67744757477457445465647","44675774646554555465464","77464475767664777564454","65666477675667565456665","66474465445776557747547","44567777474756476454777","65477455647744457646766","67777445775666576554754","56567676564777665775764","64474654744676544664454","57544646545567466675466","75645666554764455745656","45677766645546777764775"}

    Returns: 587

  54. {"0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000","0000000000000000000000000000000000000000000000000"}

    Returns: 0

  55. {"61257554114316746241643714","56314674515123161316143616","33112321665466741216745372","65471553573564271672563372","31632617363114542724114742","62647636176574743377635245","61632525161356651545274515","61161371111164711261677151","31746454146171764752132167","31444743221667264232127774","13517133431464575771445472","75522774376571454322354252","16664663415365374751633326","51137526313537471174231715","72427427232412574556117445","72744345656734465346171334","33242215541267553675727223","61116434726737731435634435","24572225744411577653336762","36735617116322427524647111","22535314125564212471563255","77566171744626214346137541","71126267565311157134523257","67224465264232241764736654","46641224376424616432234465","57413335654355132333364312"}

    Returns: 641

  56. {"8446476682687737653248674468446577572262","5777647265333648258355678787733583523472","8744362237287334224223275455573454452257","3378857866522383856322362854345672438727","3343727585724245755455567325867856265645","8288237222647324345335737637224832858666","5527755326483667435556576832222282465662","5524657762333527665764373425524864465288","2324645434544873228668775577827323872727","5684838224546664785447733464584534538284","3852778245264736763437245462742324456525","2463286664562227276545754248555872362346","4878422583233862355667457844768854372845","2434477462663586352737534386242882273352","5656358387242872754252625446278845358244","5687752866248825656342847834854646577368","8638486248852766764368675563477624323456","6447552738366257225336462274244222384558","3227588778674636847882858874728757855774","8756777447854437323233384645246357485757","8645333354362276687435438782548858535253","4724372638382264732276444887656338882362","5725822368672346257444683463877722326773","3878245345722647337548855585345252336556","2734586352552564422567222438863887778673","6786255727442846557233526752273258852442","8655367238627773485224732225256726885658","8684548287567453884686334253736454263855","5724522524256872265648228567476347526768","2752724623373227784257455532832866623724","5553836335587775543677288555328765432676","7475582622724362287746235482324665345482","8245358544325852428884562272664737273563","2836426335668578245845666784783335848762","7386375773852426372584456573535425643636","7482478222587558255666427426724762375228","5737725685725235823454848255345754684223","5585428364824474245758554376854464483443","2873437335647656864655543232488467673558","3385745352866435476267226528332338577582"}

    Returns: 1183

  57. {"231245321152332434226462245","465254625643442523551442353","632114316654511114311646514","163533532614553133111342654","626334516534413431156146263","641665241166612436334452355","331124353412234354431354361","535224415163516343615464433","642665156112155426612532131","462335434525342312356142362","663365422324652442415336135","314513543545444223244566214","636422412416222646124235243","423313212441634613431466166","463112155415411425355336132","265254144323115221133565635","412163535411545325356523144","341134645625335654645521466","445654123461445131264431115","562315135624253523241466113","163215555515241116242123624","555464463544616234426532245","116456231313142452253621421","665444633645251661542315241","555151122266335341163125252","555652564421314355461314566","545112213542236224345566611"}

    Returns: 587

  58. {"2211111222212221222211","2122121222222222122222","1121111222221212211222","1221221221111121212122","2211212211211121212212","1222212121112211111121","2121122221222111121221","2112111121121122121221","1221222212212122122122","1221222221121111221122","2121221122212212121221","2221112212111211212111","2111221221211221112111","2122122211112212112112","1222121111222211111122","1121122111221111122111","2121121122212221121212","1221211212111121211211","1112121112222121211221","1222111112222111112211","1121211122121111111221","1212221221221221112112"}

    Returns: 164

  59. {"24424324","41231321","23212132","11222323","22223321","34134211","33133114","32443111"}

    Returns: 86

  60. {"6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666"}

    Returns: 576

  61. {"1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111","1111111111111111111111111111111111"}

    Returns: 132

  62. {"787878","987989","999888","778899","787777","899798"}

    Returns: 169

  63. {"656375","437454","647733","564355","774554","736336"}

    Returns: 117

  64. {"5533524415133244502","5454453001101133005","0014051454025251112","4021454324535342500","4225131445342550300","2015200013344202130","1045250012003414224","3550505021321303441","3143051131520233232","0331100042452430533","3005251102514432531","0304500550430234000","2033322131301331453","4133520424435231154","0412401512142055045","1252105203251444420","0104404555022223403","4304101042420502432","3330551413104451304"}

    Returns: 325

  65. {"122124","552244","513553","414453","311131","125313"}

    Returns: 73

  66. {"00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000"}

    Returns: 0

  67. {"44443434344334443444434333434434343443443334434334","43433334434433433333334344333443434434334344334344","34433434333343334333333444443433444444343443443343","43433433344333344444434433444443343444433334343343","34433443333333334343343334443444433344443334444333","43433333333343434434434443344334333444343333444443","34444343343434343443344344344443344433334334443333","43344443443434343343344443434344433434343333444434","34444333434344343334433333344433434333333433343434","34343434443434343343334333333333444334444443443433","44333333333444334333333333434333433344433434343443","44333434433443443444444343343343433433343443343333","44443343434433333343443333344444433443343433444433","43343334333344333344343344443443334344434343344344","44343434433433333433433433443444334444433334334333","33343344334434443443344434433444333434334433334343","33433433333334434334334343444434433444343434333443","34433343344444344433334443433343443344443443344443","43433344343334334444333334443433434433443334333443","34434333434433344333444434433434444343433343333443","34434334343433443444334443343433443333434344444433","34433444334333443344433443443333434434434333343433","33344343433443434343334434443443334433433344434444","34443334443443433433343334343434443434444343433443","34444444333344433433333333333443343333343344333344","44343433333443434343344433334333333444334433343433","43333333434443344343434334343344344434434444433344","44444434333343334444444343343344333343333333433444","44334444444433333443444334433334343334334443434444","43443444334343333444433333343344444343433333443343","34343344444434343444334444343333334343343444333344","44333344334333444344443433344443334434343433344344","44443344444344443443333333443434444344434443343333","44334343433434433333333343434334334334433343433343","43443334333344343343433343444333333343334444443333","44444333443343343333434344333333444333333334443443","44444333334433344443334434433434443434344444333334","44443443433334343444444434444334443344334433444444","44444334344433443444443333333334443434434444344333","44444333443434443443334443333433333434344443344334","33444334333443443434344344444343433444333443344444","43444333343434433433334443343434334344443443444444","43333433343334344444443333434343433433334433333434","43343433343343444444344333333434344343433443434344","34434333334443443344334433343343344334343333444443","33444333343434443334334334333333443444333444344343","44344334343444344433443344333344334444443434433434","43334334443344434443333343343434333433434444333334","33334443444333433343333344433333333444343344444434","34434434434433433343343343444333443444433433334344"}

    Returns: 781

  68. {"76655778856878575656766","75777665878576876857755","78576875686786557565867","78888687655666588787758","75757588756857655878586","85786888766586558667585","68568888658558656867766","88658857785756858876855","75788868786676866865867","78567585778587566688675","75756585587577855658556","56886777775787765675876","55657865757786585855568","85758885657577658678887","56665586575776858867756","87555875566585888687588","76886768787867577885878","77857676876567888665585","68877787587856567586557","86758576865655656876685","86887557685888788856688","66885558785856875757887","67758787785876858766566"}

    Returns: 686

  69. {"4545545544544554445455454445454445454554454554544","5554454455454445455555454555445545444544554545555","4445554455454454554544445444444444444554554544544","5455555545454455454444445455444455554445455544545","5454555554554445454454555555444554454555555454545","5455545544444555554454555555544544544554545545445","4554545445555544544554555544445554555454544555555","5454445544455545455554554445554455554555554455454","5455454545555455554445554554554554554545554554544","4554444545444445555544555444445545545545454455555","5455455455545545544545445454554455554455445444455","5445444544455555454554444445554454445555545455444","5545445454444444555444444554444454445545444554445","5554544445454454545555454545545545544555555555444","4545554554545555444545554544554445445444554554455","5555454445444445544445445554544444444444544555544","5555555555555445555555554555555455444554544455545","4444555445545455445454554444555545555545554454445","4445555554454545555445544545455454555445545555444","5555454555555454545555445555544544545455554444455","4555444445445455544445555454455555544545544555445","4544455545544554455555454454444555454545544554455","4555545444444444555554445444455454554545555455445","4444545545544444554445444455554444455454545545455","5454555444444445445454544545554555445555555554454","4444545554545455545445455445545455455455544455555","4445544545454454444554454445444455545554444444454","5444555544544545544455544554455554444555454445454","4444545445455554444455544555454545555445454555545","4545554544444554454555554545555455544555445455445","4444444454444545445445455544444454554444445454455","4555445445444455544555545444445444555455444555555","4555455554455455444444545555555455444445444444544","5454445445544445444444544554454544455545555455555","4554444444455555554545454544554455554545445454444","5554444544445554555444555555545554454544554445445","4455555444554545545454544445445555455554444445455","4544544554445544555445554445554545554555454555444","4544544445555544445554455554544545545554544555544","5444454544544454445544454454555554554544555555554","5455444444544455555544455445444545555454445455545","5545445454445545444545454555445544455445455455455","5545454544444544554555555454555554444445554555545","5554454455455555544544544445454454455445455455544","5454444544554454455444554454444455554554445554454","4544554444454545544554544545455444554554555454554","4545454445455544544455444544455454444455454555554","4454554544554554455554554454544545545554554444544","5555555445454455444454554445454544544454454455544"}

    Returns: 956

  70. {"343334333334433433444443343344","333443444434434434344333433433","444434444434334433443444334434","334334344343433334434343334434","344343343343343334444344344443","433433434434344434334343344333","433433434434343443343334434343","343433444333443444434443344344","334343333434443434434343443333","333334443344343443334343434444","444344344434444433434444434344","343334333443333443434333343344","334433334344343433334444433434","343433444344343433443333434433","443434334444444333443334433344","443333434444333344434333444434","334444344443443343443334434444","344433334433333433344334344333","344334333333333434434343443433","433444344334334344344443434344","433333433443343443334444344344","334333443343434434343433444444","344344343343333343334444333343","333343343333334434444334333443","433433334434444444334444333433","444344444444433434444443344334","344344333444443443334443333443","344444444334433434444444343343","334433343443444434333344433343","443334343333443434334334343444"}

    Returns: 460

  71. {"03516530456044045564433053413111231340604","50056056603064155060543255263633521552320","01536144160210121623141205363124561034646","30662415446525223333352266104464610233414","03150455431133220246426241016666516136642","13324506501226622314420235266506042214550","23252143451063610423022641163226321013103","22201121302131102142431361234160411605353","13464514626045303334512200046256410232013","15363016310100652101413243214024044340100","45532263023430160465166460005606664254010","62405632255261246220631162033625660223265","24664013040044326025523125021140065262553","13250531224304466064505534254565110024246","41224554564336512624214530416554300406606","43243506301455252022456430104100363150341","41066505045435120511215660626153615123342","62563233446665645204622606224106200054124","43360526521425163315561153223016464102241","64335443032542433600411063006261136066143","14423534013426604603205026644405452066335","62036365562116222644602065562544511333665","20555302616445236451403322053034423064552","32530024004453451526210206363251250510060","44455611054514604616663546003002213266154","30053516361555425410136144005114261344626","13603334200400655050106554663256203063215","44152363216315424515460406111264626546352","51031016444055643516450603625423244231416","31562122442623154224515206532624523444055","35321112411001410264040364203164512605331","20462433330502503531344126001620615144465","33503505266456163130455231626122436315150","45055521215341414003660026605051513636004","26124031130004254660214061100060225353151","11030452344313403663541414402353614636000","23232304206654245455312504064263553043114","64042633105014055005344020001366566541001","43052120233614400440561660505306310130366","16251405352431340101226204051652461466226","65052652562416061150023140520233212520400"}

    Returns: 894

  72. {"7766766777767777677677777777767777667","7767777677667667767776767766767777777","6677677766676776767667667676776667666","6666676676767676766676766766767666776","7766777767776776676676776667776667667","6766767776776777766767677666666767766","6777666777776677767667776777666777676","6777777666667676677666667676766766677","7667666667777777666667776677677666777","7677767667666666766676777767666777667","6777666766776676677667666677776766777","7766767767766677677777666677676766666","6777767667766766676766776777777667766","6676766767667767667776666777677676676","7677666767677767677667667767666676667","7667776677676676677777766766776766677","6767776666777677777776766776666677777","6767666676777667667767677766777776766","6776767766676676766776776766666677666","6767766776677666667767677767666766666","7676776767777777767766766766777776777","7776776777767777767767766767776777666","7666677676777666676666777677766766676","6777767666677767766677677777666767676","6776776767666766666666777666776766667","7777667677676776676666776667677676767","6667767677666677667776767666766767677","7777676767767666766777667767766767667","7666776777667677766776677777776677767","6777667676677677666666767766776776667","6776666666666667766776766677766766666","7677777776666677666767677677667667677","6667666676766766776776676776767767666","7767767676767676766667777666676766666","6777766677777677676767676676677777776","7776677767666767666677767676777677776","6767767777776666766666667666667666767"}

    Returns: 1005

  73. {"666666667766666766767667766676676","677766767666777767767777767777676","776667667676677776776666666666776","766667676666676676676677677766667","667666677676676677766777777676776","666676677766767776766666766667676","767676667777676666767677667777777","767677766676776667776667676766676","667766676676766776666776766677766","666667677666766776776766776677776","667666677666766667667776677666666","676766767777767766767766676767676","676666667667667666666677766677667","676777667766777666767767676766766","677777666776776667767766667776677","776676777666676767776767777777767","767666666776766677776666677766677","677767776767677666677767676777676","677767767666777666667776666767667","766676767767766777666676666777776","677667666677767766767677676676667","667667767776667666677766667767677","776767766666667777676666767666667","666677676766767667676776667767666","666767666776766777676666767667666","777667676677676766766676777777677","766667676777677777776666677767667","766776666777676776676677767776766","776677676766766677666677776776667","677766767666766776766677667667676","677777776766776666676767677666676","667767667667766777776676766676666","766677667667767666767766777776666"}

    Returns: 886

  74. {"022","010","021"}

    Returns: 8

  75. {"5555554554455444454455455554554544","4545555454454555545455544545554554","4444555544454554554544554444455444","5444555545445454454444455555454455","5444544555545555554445455555455454","4555445455554455454545455455445454","4455455445444545454454455444444545","4454555455554544555545455445545444","4455445454554445445444455444445554","4445444445445554445444554454554444","5445454545455445555555445444554554","5455454454554544554444545454555555","4545544454554444444455545455455545","5445444444454554545545555555545544","4444455454554554554444455454445445","4544544555454555444444554555444554","5445454444555454554455455454444455","4454455555445554445454444554555455","4554454444554444545555444454454454","4554545545554445554545444455545445","5444445555544445455554545445555555","4455454554555545454545444444554554","5445444545454545555445445554454444","5444454545545455444444445544445454","4545455545455455545445455445554445","4454555445445544554454444444555455","4454554545454454545445455555554544","5455555455545555454545545455554545","5455454455554444555544545454444554","5454544555555544544545445555555454","4444455445445544454554445445545454","4554544555455454454555555544455545","5455454444555445554444545455554545","4544544445555444544454445455545554"}

    Returns: 655

  76. {"888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888","888888888888888888888888888888"}

    Returns: 928

  77. {"75","58"}

    Returns: 25

  78. {"2111221112112122111122221","1121212121111122221121222","2111212122122222111111212","2221221111221122111222211","2212211212212111112121212","2122211221121122212221221","2221222211211121222211111","1211211122211122121211112","1221211221122122211212111","1211212221122212111112211","1211221222112211111121111","2111222111121121221222122","1122212222211222222212221","1221222212111121111221122","2112121221122112211211212","2212212111221121122212222","1211111211211221112122212","2211122211222212211121122","1222211212111211211222121","1121211222122112212222221","2221111111222211111222122","1222122222111211221212122","2222221212122112112121111","1211221212112112121111112","1111211211121211121112221"}

    Returns: 186

  79. {"0000000000","0000000000","0000000000","0000000000","0000000000","0000000000","0000000000","0000000000","0000000000","0000000000"}

    Returns: 0

  80. {"00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000","00000000000"}

    Returns: 0

  81. {"9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999","9999999999999999999999999999999999999999999999"}

    Returns: 1620

  82. {"97745645868399557733388","64478543979764959567987","75995685469546839753835","75377938889984874765494","33563883895397865445957","97668584787368784943568","46945649939787956633554","88375369359376549566449","98677563593394463374594","83494356987693334759678","59583845345648689783599","47855657568539949435367","78755459794967675495748","48866666998797775747946","97673965936394677495657","84935793933585445666938","89686374354849747469763","73698596957956596953598","58668639949893645674476","89849934349878385357446","86486937687387898568654","99593764983699359387993","98483667685374346435455"}

    Returns: 750

  83. {"77987788779898989997987787979987888999","88997899977787879887988797898897999897","87998977798898798989998799897999978987","99977888778988979879898787787999778777","99978797787979997897789798987878899899","88989788799878887977877889789877899898","89879988899897999798977998887999877798","87777778797889977887997797878798878887","97979798797779888887897798998887799897","87779978989799999989988988997798998978","77977977889979879777878989877898899977","79988787898978999789787797879798899888","89979898978778779898977887779788778878","79987998997898887878897779797788899789","97997998897998998877999979788989899988","88877878798998888989878779777778788887","98879987979787897898989788977777997977","77998897798978788977798798888987798897","88989788778999877878798888987997997987","87799977997787977787787787979878888798","79787777978799777978788888797799997789","87898789777779897789799779877797987989","79888877977777789979977988787879877979","78887798978999788977778899789779798887","78888877897789887877897878989988978987","99898888987999887898998887779987788988","98797999887797887877889787987989878797","98998789987797797999988799798988788988","78977878977787999797878898897899779788","98898899898887878987877898788778788799","87977888788787778788877778998798787878","99878999797778997878897999779797787779","87999999887897998777797779789778788988","87888889978979988899879989778899889777","87999898799787887797779897897789987987","97888887879899887879788878899888897789","87789879888997889889779979888899898997","97879977879898788877977798999978987779"}

    Returns: 1321

  84. {"8697988769686677877998","8867767967879798667778","7878786879996777997696","8798886668979796669699","9876887788897977779867","9977897698997899688969","8796978996967769767699","8798869878698789888767","9777998886677697669799","9888697996878766686888","7699897667966677889768","7886689696668689878878","7876888876689799978997","8797899888679796887989","6969779897979686786989","8996969997967778968766","7688889796686797869689","8976877777979976998879","7667797798876966777898","7896689777887899687968","6688698898767996698679","7687986687889699889977"}

    Returns: 736

  85. {"645654445577465676756665556564745475545665744646","775657467445576457475664754555477556457674675677","556774755474775644555576577574457767777465544764","647466647474544547454757456777576545565746764565","775644664447657546476546666677575546656467745775","745746657646446645464647667664464646466556565645","476477445567676665747447567777476647464676754464","777445646574575447574475756775554565454455455564","547565646774474567476777455455665555756455774575","764755475677475764454667454474544554756456764444","454775446446565445555664754676454554444444664546","745477646466656466747767444777565664566746465546","565576656475565547754767657466676474776477547445","465646566745456665674446765466656576666667454556","745445747646667766656775467445776665677474567455","456764766576546746677655655676756544454574655656","565746576576467775666444547567756677477465755567","666674644467464477755547447555677664754576666447","764546454676654667764746567556776747457577545576","544555567747654765764454567475464567775647664675","665455467564667445675557745446457565557767445654","767475645654645555664545654466447546667445556566","764664566545576765757574755755657745756456744644","464544745655455777467467766754557776447674757677","775544666565777656575757665477555667556564646476","755756574456457464756767776445577544774754664556","547464464754444464645675676675765656476757456465","466646564475467644746676777674557467545756454665","755767754646546476465555547667675767474465747677","774545645644577554674656456675446777547544576546","577675775545745775465676664656675564645575656576","777477654777645657457557664767575444466465775746","444774656466444666676744647747754577746445544665","666766464777575656475477564677545444566464667755","555756655546456567465766476545746755577554475445","555755655444776555667775565675655555746667554747","656646644576447544666446564655657676744777656447","655554655477675446564476567554465577444666746575","444467774457577675776755766746655465554644664546","766677745657557674645774574677464566547677674646","455466544654457747644755465747555656645554745756","574547677557756745576666547646474744577674645456","765656565677654674557666747747646764655764666445","566755775567474754477646447447547575457755564767","766476467746544745577765767474544447754577766754","457567555465565655754774765645555575744776746574","754747656764554666645575656447547564754767664465","674447657674567666656466667446764477745446675464"}

    Returns: 1297

  86. {"334434443","343344434","443344443","444443334","344333333","344433344","433433343","343344344","344334433"}

    Returns: 123

  87. {"6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666","6666666666666666666666666"}

    Returns: 576

  88. {"000","100","110"}

    Returns: 3

  89. {"2253889947938","4374678283266","7429739767497","3788246492726","9677927845395","4656432284425","3753365759654","9289999564368","2845824379934","9557778772872","8445555482573","9978547692877","6772784442545"}

    Returns: 374

  90. {"111111111001111110111110111011111111110111","111100111110111011111011101111111110110111","111001110110000110100110110111111101001111","111111111101111101010101100011001101101101","111011011100101100111111111111010111111111","111111001110111001110111111011011011111111","111011111101111111110000110111111001111101","111101110001111110000111100010110111110110","111111011111111111111001011111111110111110","010000110101110000111111101111101101100101","110010111001111111111110111111111000100111","111101111010001111111101011001111110111110","011111011101000011110011101100110011111110","110110011111111010111111111111101110101011","111001111111111111110011001101001111101111","110111101011101101011110101111111110011111","011110111111111100010110101001111111100011","111111001011011010110111010001111111111110","111111010111011001101011110111111111111111","111111010110111111010111111111110111111101","111111011001010011110111111111000110011100","011111101110111101111111111111111101110111","111011011111111111101101111101010011110111","100101111110100101111011111011111011110101","101110010100101001011011111010111101110111","011111011111101110011111111111111101111101","111111011111111111101111111111011011111110","111001011000111011010011101111001111110011","101111011111110011111011110011111111111111","111111111111101010101110111110111011011111","010111111011111110100101101001110111011111","110101111111111111111111111101111111111111","111110111101010111111101011011011010001111","101111111111101101101111111001000110110111","011111110111111110011011111111111100111111","011111101101111010111101111101110101111111","111111001101011011111111111011101111101110","011011111101011100011111011101111111000011","101111111100111110001110111111111010111100","101110110101111111010111011011010111111111","010010011111111111011101100011111111100001","100111111100011111100111110111011111111101"}

    Returns: 163

  91. {"0000000","0000000","0000000","0000000","0000000","0000000","0000000"}

    Returns: 0

  92. {"030003030030000033300330003000000000","000000000000000000030000030000000030","000000000003030000033300000300000000","000000000000300303000003003000003003","000000300003333003000030000000000033","000000000000000000000030000300030000","000000000003000000030000033000300030","000000000330000000000300330033030003","303000000003000000003000030300000003","003003000300000030300000000030330000","000300003000000000300000300000000000","033300000300000003000003030000330033","000033000000000000330000000000003030","300003300000300030030000030000300000","000003000000300003300000300000000000","003030000000003000000030030030303003","000003000003000300003300003000003300","030300003300000033030300003300000033","000003030003000033003300000000030000","000003000000000000300000303030000300","000030003000000000000030030000300030","300000000000030030000300000000300030","330000033030300000000000000300000000","300000000300030003000300033000300000","000000000000000303000300330300030003","000000300000333300300000000000000003","000303300300300003000003003303000000","000000030000000300000000030000000300","300333000000000000003003300000000000","003000000300000000000000030000303030","000003300300000000003300000003300003","000000000000030003000030030000003003","300003000003000000030000003000303000","300030000300000000300000000000000000","000000033000000000000000000030330000","300000000003000030000003000303330030"}

    Returns: 342

  93. {"23003000320200020032","00023200033023303020","00223000302300002000","02002020300330020020","03223302003000200032","32032002033300002000","33000303030223300303","00300002202020000000","00000330020002003030","30320000202003200022","20330030330000300030","02203300303020320300","20203000302000030000","03300200032000220000","23002000202300000000","00202200202033033002","00003322000002000002","23020002333000033030","00000002000030320020","20330320220020300000"}

    Returns: 187

  94. {"000009000099999090909909009909990990090000090990","990999000099990000900090000900000909990900900009","099900990909990000090990990000000990000900990099","009909999900090000990090900909090009000090090000","099900009990999909909000900009909990990909909900","009990990090909099999999000999900090990009009000","009990090090990090090090099909999090009990999990","999090990999090900900990909909990900900909909090","099009000099900900090909099099909000000999090099","090909999099099990090990999900099900999990090909","900000090000909000090900009990909009909099990090","900090000090009999000000090000999999000999099990","090090090000000090900999999009900900000000909009","990099099000099090099909999909999099090090909099","909900909990090909099990999099900999009000999909","999900999000000999990000990099909009009999090900","000900090009909000099090009000090990090900009999","090999909909009090090009009090909990999999990000","990000999000990909999099000009099090999990900990","900909909000000090000009000099990009909090909000","000909909090099099909000009090990990999990000900","090099090909990900000909090009999090999009900099","990990909900999999099900990000090909999900000090","090000090009000999009009990900900999990009990090","090000900999099990099999090900999009909990000909","000000009999090099090090990000900009909000990999","990099099909009990990099090009000099009909090999","090990990090099090000009000900090999990999990099","909099000000000000009990000900000009909090909900","909099990009999999099990990909909009099900000009","999990009099990090909999000090909099900900090990","900090999900990900099099900990909000009000909909","009000909909909099990999009990909900900009000999","000900090090000099099909900000909099900000000000","009000999909099999999000000999009099009900000900","090009909000000900999099090900099990009009090000","090900909099909909900000090000999999009009099099","099909909000900090090000000090009009900099000909","099999999999099090909990090900000090909999099099","009009990000999099000009009909990090990000909999","000990990999999090009009000900009990999090099999","000000999009009900909999900009009999099909999009","999990900990990900099909000990090990999090990999","900900099009999099009900900999999990009090990990","000990000090999909909009000000090009099900000900","900999000099900009909090009099909009909999999090","000990009000000009090909900999000009909000000909","090099099999909900090999009090990000009900999909"}

    Returns: 1629

  95. {"0000000","0000000","0000000","0000000","0000000","0000000","0000000"}

    Returns: 0

  96. {"00000000","00000000","00000000","00000000","00000000","00000000","00000000","00000000"}

    Returns: 0

  97. {"8880808008888880888088","8088088080800088800080","8088808880088808888808","0888888888080808888888","8880880888888808080888","8888808888888888088800","0888888088808808888808","0008888888888808008808","0088880800888888808808","8880088888888008888080","0888008888008000008888","8880088800008088080888","8088880888088880808888","8880088888888808080088","0080008008880888880800","8808808000008888088808","0000000888888800888888","0888088008808808880000","8808088888880088808080","8088000888888808088808","8808088888808080808880","8808088880000888088008"}

    Returns: 656

  98. {"0000000000020000000000000","0000000020000000000200000","0200000300000200000000030","0000030000000000000000000","0320000302030000000000000","0000000000000000000000000","0000300000000000000000000","0000000000000000000300000","3000000000000000000000000","0000000000200000000000000","0003000030000000030000000","0000000000020000300000003","0000000000000000000000000","0002000000002002000000000","0000020003020300000000000","0200000000002020000000300","0000000000000000000000000","0000000000200000000000000","0000200000000000020200000","0000002000000000000002000","0000000000000002000000300","0000000000000000000300000","0000000000020003300000000","0000000000000003002000003","0030000000000000000200000"}

    Returns: 116

  99. {"2103212003132000030303130133010230111301","3130211010310003102012231003030133330303","0000203120220020000022101020021200310221","0032211000200030002300111031120003230021","0220220002201030330120030000102200300000","1331022311002032200130320010320230000101","2201000203232002020022100000000010101103","3001003020130030321011202102330313333123","0022313200002031000000023020030111231132","0022031013023000200000310010000300311200","3021013332011323201331303302020001312031","2030300003200011020030200100032031232310","0313101011030130010000011010120210102300","3321010200120000011010022200000100023000","0100100120103020311200333200202000221100","1000332200130023100000302000300321030020","1101010120010103322010312001000220120023","3320202020021021021000001112203121223222","0202023100002031130320100320111130300022","2133010100002302002302302103020120102000","0302020232023131003000000101033133033330","0000131032112100013323300020120000110031","0022300020322200231020002021000221003120","0032130300230200123100022210211030202011","0203010122030223032031001203222321103011","1131330231030020300123103300332031000102","1323130200023010223000230310100202203002","1220200020311010102000102320012202002100","3323123001132200310003030003300121203200","3203021032002230320321300003300001310101","0303221033333102000103231030130311133203","2232201122221102023120313001030300001323","0302012003313003002101021123011122322223","1322010010312311202201300100002310110120","1321013000022121032021000332031333002001","2002220303003201003031110313230220320101","3133230002300300000102301111303003131203","1000012333210330033023002021300303001033","1203003212031330323031101201232000001020","1123120002100133131033003200030300321011"}

    Returns: 436

  100. {"002002400","004020003","240330400","000200000","003000400","002003400","043400000","043030000","230020000"}

    Returns: 70

  101. {"4506450064446646","4664664655506004","5466455605040004","5565655665544664","6454404505454065","5544554556550645","5455664440464444","4455045564654065","6464065555604545","4456654564660065","0046554440046445","6656454044654546","6554646555560404","0454444056660455","4646654640654456","0646066055060504"}

    Returns: 335

  102. {"00000021000020200100000000000000000000200230000002","00000000300000112000310000130000000000000020003000","00000000000000000000000000000020000010000000000020","00000000010000000020000000000030001030000000000020","00003002000000000000000002000001000000000010001003","00002100300000000000000000000000001000000000030210","00000002000000000000000000002110000000000000000000","00000112000000000000003000000000000110100000000000","20010030300000000300000000000010020000000000100000","00003322003000000000030000003020220012000003000000","00000010001300001000000200000000000000000200200000","00000002000000020100300000000000301000030030020100","00230030000000013010000000000000000000000300000000","00000002000200000000010000000000000000000300000000","02003000300300002000003000000000020003100000000210","00000000002001000000000000210102000000000001020000","00000000010020010000001200010000000301000000000000","00000000003000000002000000000000002000000100000000","00000000300001302000000000000000000000300000000000","00000000000000001000000000000000000300300000110001","00200003000000200020000002100001000000000000003020","01000120000000200000030000000010020000000000000000","00200000000000330000000000200200010100000000020300","02003000000000100000000100000120000000000000020100","30000000003000001002000002300000000001000020000000","00020000000000000001000003000000020000001000300000","00102000000000203000000000030000000010300000002000","00000003000003000003300000000000000000000032000000","00001020000100000100000000000000000000000000000020","00000000020200000300000002000000300000000100000000","00000000010300030020030303000000220000000000200000","00000030001000010012000000000000001000000000000011","00000000000200000000030000003000000000000000000000","00000000300030001000000000000000002300000000000000","00020000000030000000000000000002000000000000000000","03000000001020320000000000000000013002000000003000","00000200303002000001100000000000000000000010000001","20000000000000003003000000000000000000120003002100","00200000003000000002000000000020000100010300033000","02000000000000000000000000003000001100000012000000","00000000000000000000000010003000000000030030300000","30000000000000000000000000000020000000000000000000","01000001000000000200320000000201000002000000000000","00000010010100000000000002001000000000000000020102","20000000000000000000020000000000000300210000000000","00030000000000000200003020000000000002000000300003","00000100000000330000010000100000000000000030000300","00000000000000001000330000000001000000000003000000","10000000020100000000300220000000000000000010000000","10000000003000010000000000000000302000030030000030"}

    Returns: 394

  103. {"07680060576057700074000658406005","44000075074870577076560654866805","84508458000070560070800580080007","50505675066660840085050074064770","08507408470760654870800804000065","05545800760006004004780000074500","40657000000700767755704064686856","70664000000058000087077086640058","05400005506500080704474086885600","44606607778500077006087450867506","04005756704050450487087060060060","00400758087658040008804860586800","55800544400040600706605045000706","07600605000704770560000500800677","04884804700584486406508068780060","08087006050505040705740878560550","08800500800880004060706070406876","45000600700500087600087060600870","50845000004857605770506008446587","50470700004606707500408000607600","54850000805450504806875440800000","07068047000707670077480487484480","68004087500458706060080470077006","84008000087788000670085800400750","70056750686008785508880000088754","44008050506048708084447700088005","04050608560400005000000808005808","85065646050607000808000876608405","05800860855004578088667770004456","04007877877067678777000707000005","04400508806706704800500057000080","74004070076000700706006706000606"}

    Returns: 894

  104. {"72073066501076713060671710","57706306403036530565505000","53650610435506573470403411","37610200603502651521327427","04210206355076513720500164","04157453000113015667010401","10034206572137065040237506","60741242026005341003730504","26401030721734440335460650","04140641120176516171071733","56411274707345702410706030","07053665772221330727613003","22356654400300422366002510","64010340304712007644436636","04656060343155500014561353","04051007122472506464061156","03134601057245301052207622","24565022235102551662004064","04127112064346334146535232","03727706750464200670601424","64264277047367005047554711","17735003370236020137255343","71305366627103263074732020","45662060326105446620033655","56135207020073305106526050","12070020125364652233576712"}

    Returns: 621

  105. {"2022222202202","2020020002020","0022020222200","2222202222022","2020222202202","0222002220022","2222000020000","0202222202220","0222222022202","2202002220200","2002222220222","0002200220222","2222020202200"}

    Returns: 90

  106. {"050000007","000000050","300000000","000000000","000030030","000000000","000020002","003002007","050300030"}

    Returns: 53

  107. {"111111101111111111111111101111111","111111111011101111111111111111111","110111111111101111111111111111111","111111111111011111111111101111111","111111111110111011111101111111111","111111101111010111111111111111111","011111111110111111101111111111111","001111111111111111111111111101111","111111111111111110111111111111111","111111111111111111111111111111110","111101111110110011111111111111011","011111111101111111111011111111111","111111111111111111111111111111111","111111111111111110111111111111111","100111011111111111110111111111111","111111111111100101111111111111111","100111111111011011111111111111111","011111111101111111111110111111111","011111101100111110111111011111111","111111111111111101111010111111111","111111101111111111111011011110101","111111001111111101111111001111111","111111111111111110001111111110111","111111111101111110111011111110111","111111111110111111110111111111111","111111111101111111111101111111111","111111111011111111111111111111110","111011110111111111111111111110111","111111111111110111111111111111101","111111111111101111111111111111111","111111111110111111111111010111111","111111111111111001111111110011111","111111111011111111111010111111101"}

    Returns: 128

  108. {"46060000000070000697000800080006090005700700","00004000800070000058000706000000800004440000","90000000000000060700007008000088040000006007","06080000070040000000904000000000005000090008","00500409080000000080000500065000000000000000","00098000000000000000900400004000060000850000","75000806000000060000007600000500848800040000","05000090040008000700000900008000000000000604","00000604006400000005008000400000000800058000","00070008000009000500000080600506008000000000","60400000000400000700090067000540000055904000","50000005006700009000000000009009600080000556","00000005800000006064900500007000070000000077","00070000009004065900000900000700000707770000","00000000040800000600000089500800000000800608","00007009000054000000860000060000000000708900","00400090950400080900000050004007004000000007","40004050000000000000705000408890000067000000","60600405490070000700006000909500908085000000","00008000000007450050588000000070640000000090","00060760004090080980000760009000088040099008","90605707000540470000070070000000650000000000","00580000070950004000700070000000400080800065","05958004588000090006000000000000000000400700","00086000005600998070000008000690578040000004","00055000706006098000800009000065000850050000","00000000000000000904000500800005000006805009","00606004079040000000008606050000000004058004","08600000506909000605000000000005060000006860","80000000000000005808000000004700000006500009","40000070800000000008060059070400054005009007","00075000006080000000905000898909000000094000","00000070000004070004605000000780000784004080","00008000400000500040047000007000000504600000","06007000000800000406007080500000080009050508","50000000007000770608000887006006440000084000","06700000000805009000907000080000000050000000","06005700764670070080000600050496500065000600","00000707090000000090000000000000000000000000","09450000690005880000800980500006049404000077","00007064087000000090000600007880050000090000","00000070000000077679000000509965000840774904","00009708060000000050000040700509088000500707","00095040000500000000940006000048700070000080"}

    Returns: 1260

  109. {"06600","77007","00007","00050","00000"}

    Returns: 45

  110. {"8706868700089779060697000060000869000907","7087000690600000076000990077677009090690","8809907770600880078000907800000880700668","8800006007986700976888960699670880669808","8077068080789070860690080089070700097080","0700878900978060707006086096070090089869","0907000807607906676880700000687098600900","0979009876676089700700060770006097006080","6000008060709960970006006776009806669996","0968070900790707676709067008808006006099","9707000990679766090606707980600086700080","0607000080760009000000600600909706608080","7090900070906976870967909000066090000906","8700889088007090009766809870907006960970","0680009890696669708086080800006080080880","0960000906807690008007077000600000007070","7606079060000076077098890087060000980060","7096000000096078067708880980076770600079","7606690879670008000000080700700069006809","6076606080977669006097060978008609076898","0690898979090070099976070786077800790096","6006000076608907607000697960000709788609","9070060080099707706809679700077967608897","0890986980089007999009678098870707680080","9797070079880099780706000660090687700809","0000800060000087666097770008097097070060","6970080800067808000707006008078077008668","9090709778760660779900808000078009000807","6806007060070086999809090088960097700007","7686006899708096690000669877008687090608","6890870769860990696986009000608767609088","0900860706008900067680970009009670909606","9900700000897806609807790780796878007006","7880800600686790007068069677080908089068","8060000006768706906790807008870086867608","0007808000999078977989906860606007800600","0770870980987978890078080096960096606609","0890707068709886789600086808800000609990","0770789770880087809077807007000009077000","7707000006066700880600708700076008087900"}

    Returns: 1326

  111. {"0202801000000000030","0100000000004000006","0000000006007000600","0062005000300000040","0370000000000202030","0003003000002078015","0000075000050040702","0000000010000058000","0006010200720500000","0010000000004000004","0000000004008050700","6000002001000060000","0060000060020000000","0500000000000100040","0000000000003040000","0004000200000007000","0200502000000000000","0030000004000000008","0000300200000000000"}

    Returns: 246

  112. {"000003000333400000344000400340030340","003004034444003000334444030443003000","330000300300003440403004004044300004","300340034444000000040043404300000300","343430043000004400043000040334043000","000443000400330333403333000400000004","034000304004040330040430043004000003","403300004300044040000330030400044034","004004043003404004044430303034030000","003300000004303000004334300004433400","303004400400034000000043000300043440","000404044404403400340000430434003030","003403003003304003000330400400040030","000403030300044003033400000003403030","443030404000403043400004443030033404","000300430343003000000434003003300400","003000340430004000340040404400000400","033330040304330343004043040400000040","440333040000433030440000303004000004","000030004003030330404300344400400303","030000000003003000040040430003003040","304000030003033040000344040004400334","000043304000030003433334434030040040","303000003004404340300400000040404304","004003043000400400300400304430004003","334400334044043043430043040404000043","430400000400004440043403403343300000","000030003440004430434030000004303000","000043043004040044340000430300300000","000040000004400000430034403033003300","000040030330334003400034300000403034","000003000000333004004304403440000400","340004434343300300000000400430033004","000000400400440030440030030400043033","330440000000000040043403000004300000","400040030000404000000004043400300000"}

    Returns: 508

  113. {"40006305480400102500200033000060040004","00000078800000080000060020400700000001","00000070004000000006000003800000184000","20000020060000080000002000030100820000","26000500030000000007000000010000000000","00000000700000007000020004000404000000","83000600050500080300080000000000580000","60204000020000000403200800000000218700","01000046001100000500008000407030080004","00060007453720000000200000006000000100","00020000060000000000050000050400280080","00004000000000000008200000004000060000","08000000000000000000000000000000005080","00500000000000050000000708050000000600","04870051000000004000000000006000000804","00005000054300000000000110050060000053","50000603060002600000010700000000000202","00000000200000080000000610000040000000","04000003000060407400000000700070070000","00000008000000000400715000000002000100","00000000000000040000001000000000000200","00030500000500000000000070000000000000","31077000004043000600200502560200100000","00202000000600010000760000000600020000","00000040000007020000000008080070000060","00002800000000200000700000008808000000","00030000005000004000000000070200000400","00000020800000000000000880007000020000","00060005800000070000000200000000003200","00100040000000000060000047000700600341","08000000600400000000000350000002000000","07003000800000010000100000000000000070","00000000000006040000000000070005080000","00220000010000000071055000008000000000","00000008000070000000000000066002000000","00170060600000000040705000053000002070","00040000002370074000000500000000000000","00200700000080000000200000001002700200"}

    Returns: 771

  114. {"010","001","010"}

    Returns: 3

  115. {"225452352633426566346342323225244","466545524345326355435652326226443","354262555426625636554424343552363","534245563456225265634353326263344","352344532346442662435225656363534","432542522522264242325623523225362","364426266356643462444562255422435","354644562334634462222334625652362","224424443454425555523633642546255","363625243545254354553535455456342","423666355462443344244545235656442","536345622435466444266542224622642","466553643444663622352256556652425","325224423522325546526446246545356","555435255643662334466234223446253","324666455635353635562324632432342","543533466453324324543223543334344","364242652646252246463552532254235","242366653364634363563256664243353","233353526225425366645322543365352","363365655464533532233523423526334","362553454353363355562423635244552","652442436352432336344344245633462","524325523424332225252232424634365","654652632525232636522625345355425","434354232525326222653564664543535","225633632664363443454623352666526","454553625552222352322643322352454","425425662633235234245634662263353","264325252235623634236565363325454","526455632253645643652226553265646","424624343633323365444444344424526","326263364322563524433544532666365"}

    Returns: 728

  116. {"50040000053050405303543000040450040500543340040053","30345504340350005300045433445054000005304000000303","00300000445404403400000045005000044003040340005004","33005543504003503500404030550005000455000403400040","34000534005403034505034000040400003000530005504000","50003500005500405400004043000030000500330000330530","33400053450355034030044033434340040003005000044050","04045030000430003504000033340445045405300000003000","55400005000405053050004343044400053354005000030040","30050030040030000050300500050000403305000000035000","35405334000040050000343000003000050000354000000004","50004003340430004005305000005330453405453000405000","04053035530430030030543005003300535050000540345003","00003003000303000445003545350533303005000040005530","30500030000054500500430040400043350000000300555400","00004005350443000500400555054000000303043554000000","05300040000050005003000004500000530035304540303000","43050450000300005005530000550404030450045530040000","30000540000550300004400043030400033500050400034000","00050034003500500054305040000430403000555430004040","44450303300000035044550053540455003030300004000034","00000350544000000000550000055000034340500004005350","00000000300054400000540003034004044500000000305000","04300400030300030054530504040300500000005305055000","00040445504000050003005500030300040330005000000005","30003354030400000440030503453500040040003033404300","44030003040040300003004003405505003000040000330034","05434400444003403033040030004030053000050340000440","00500503300000040504505005000304000304000550543340","00000504404050304530000053500005000000000000000000","50050303500005030555030000505005003500004003300300","00003005000353550400000000043500045500300404455500","30000054003344005000500000504050003500440445540034","05500000000000400440033053300404300000300005000554","00340035330304040003005440033554030530445340404403","04030000054000045050004040400450405430045005003004","03504340500005455053043040000003440053445034340544","00040000535035000050054000400505304040005503040305","05450404300005005030000503403550503030003430450430","40053035454405034004405005050300004300005005003030","03000005445040500005545000004530400033053000533404","00300000000540504044050005534000030000004050050044","05500444000040004030050530503300435040005003000030","50004044005000005400350050304500300300030004500004","03000000450000554044044500000503000030000303030003","03400053405555034040000330300004000050000540000055","04400004033004005350003000030005004003500045050500","05553005503540004005340033353040004440000530030000","55030340053445335340005505004300045305300450003045","55000040055044033000003300450045404045030503530505"}

    Returns: 936

  117. {"0000","0000","0000","0000"}

    Returns: 0

  118. {"1111001010110101000000001011111100","0101001001000001100010100010000111","0011001001001110110111110011110000","1101000100001110000111001000000100","0110111100000001001101001110001010","0100100001111001001110100001101001","0010101000000010111100010110111011","0011000100100011000011000100101010","1111101000111010000101100010000000","1111110110000000111011110110110100","0101011001001101101001001111001010","0110101101001000111110010000111001","1110111101100000001101000001101000","1011001100001011111111100011010101","0001101011100011001110100100000110","1100101011000100011010000010011000","1101000010100010100111011001101111","0110100110010111101010011010110100","0000001001000001000011000010101100","0001110011000110110100110011011001","1011010001011011011100100100010101","0111001001011000110111000111000000","1001100100001110110110111010010000","0100001111001001000110111111101100","0010011000010000011111011000111101","0001010111011011010001000000000001","1010111000011000110110110000100100","0001111011001011111100100110010000","1010010101001111010111111111100010","1011000001011111110110000001000001","0100000111101000001000001000101111","0101001100000001100111010000101101","0000000110110011100000100010101000","0010001101010011000000101010100001"}

    Returns: 126

  119. {"02100100010","44203414141","34121402310","04404000020","32022044011","14213243123","43333130223","22024423032","04323210000","42000134130","33324402114"}

    Returns: 126

  120. {"64644", "24421", "77676", "01600", "75442"}

    Returns: 77

  121. {"20220", "00100", "22022", "00211", "01201"}

    Returns: 22

  122. {"1610678670","4810410134","4800800110","1042608604","4446417684","1168080066","0046704006","0067106848","0807606004","6606784411"}

    Returns: 210

  123. {"244744575257257","456540724324272","444542255745757","044544755551554","472145525254547","547570774747475","550055472350454","442247222250204","452543075527547","525327577052744","255675535555747","535527525552525","045454535523754","447502724553245","727504755375527"}

    Returns: 344

  124. {"50615288144043655846","14175564255104715562","41103368263815004451","26653753665311565160","45154016664107546661","05544441365105311781","44664405586605501852","65374612511530334444","61457784634463524745","22646721443648478154","56176041646524836646","33327616145663181650","60104044405534846431","17418165662482451245","44634307451516511544","56156321466464134065","45160262415405660463","55841346845380368326","32564311141643566682","63152427135016406546"}

    Returns: 489

  125. {"2002202222220222232102000","2022123023030230203212022","0202223203222020302330201","1222302223022023200220230","2323203220123303120012232","1311323222221322102010221","0131202222230033022220232","2333323322033222202200022","1303002310232230200301023","3222200002002300203202221","1230200020212222233230203","2200021222202202220210120","3201202022221201222202122","2223222220200022332012222","3022133002222033222032232","3332210300321202022020222","3202220222202201023022320","0001220223232320023002230","0222100222222322232231020","1220023023233323022202222","2212023332213212020230322","3220232231022322000200221","2222001222222221232002212","0200220020203000222022222","2220223032233320220222130"}

    Returns: 248

  126. {"530616504555505650065145045345","451555644444444540355416446166","545134354344565354040514566565","560550536545634454605546415611","153445151400355152250664544441","545445162544406154446105140450","045636665051461510450466445510","455666114456110541060645553445","554434545664506644544461445431","530134531533516545014550565610","154514604460540514346515455055","645655561564455445245655464135","306411635510665540554564015445","045451215016655630554063406044","553511554650545550465405536505","454446655551540654545456036604","016144160545646063155533450561","346504444641452553534105600663","311055415316664514554245655056","545455055455664554050543550065","114441544550055415046454404354","355344541545164560043565355405","454643555510465444436432462451","645435025214446545045545606536","300225554141654544564403540604","445343555200144444664515605354","431154654545055560556125554551","045545044360531464511553110554","135544515516655401456455414244","424141544450664635441446434065"}

    Returns: 651

  127. {"00477785238556525780708262710250705","72121577877270888213326217532275700","22702772322272725275028177508722702","22145127506788222770226528027501277","25508522328527074670032580570222252","03008007275632032770757271574525170","52557228370707067757132458077022078","42722062527607755530652720570365760","27572236255723271520582502400276265","60205777277756202182662586702733231","26256527757806077275572870570726752","30800202757745572204057075830262870","20277773075233502570536326227777777","27727022277256076522887070217770575","50522756520200222272277007055252352","32287825800000050752215777515707855","82027728815027000222855640130272762","07273027208272508226007525357207777","20375802250580862175570358021027072","82030277023256572076255420770782522","10582027256756027322505228555822217","15271022526222258273552826207752512","25200683222270882227050207520203500","70770520050802025870302525185202672","62687563607557540215218752725250284","50702025527630177550868200272008220","67320775527001828722072167730277087","75566672265226032582373627076277237","75702205355307158265572100476253272","22242225227520570572200326777225350","80777070627256557247781578027070622","17771525507500550787580256282302757","52820066220775275030275775026825677","55555272053750077207225220210652220","50657200122272072737250246277222727"}

    Returns: 966

  128. {"0122110000011212001002110122212221220222","2200231120212202222202202221100122211021","2222202021001102223012020020201102102122","2112222002021020212022112220220101220121","1220211222201211002021002002222021110021","1100222222120202222212230022101010000020","2220201222122102202113101201200201002320","2220201222022011102112202010112020111201","0001121202122020121203022220101002020222","2222122010102221002222012211201011022120","1202222212022120011012002012220122012022","2201002321211120122222122202212221202221","1220221213012220221221222312220101012220","0111211021201220222010212000122101212100","2011222220112102200102220220020111100102","2100222220021202202212320020222220202200","2220200201221203022122122222022020211111","1221012222000222102202022101101122302101","1012222222213211221201112110010221031222","2121322020211000201221222022002121100122","1202120221002220121021021002110322202222","0002211202022012012022222122122211222210","0221110010222102222220222222121222132212","2112210212102011211220021111210122201022","2011212010001012200211222100201022113200","0201012112210202211022301212212200010210","1012222222111200112212202012122222022210","2220122220122222120202202111202220012212","2102002011222002022201221200101012210220","0221133012211222200002222200221012232203","2210222012022111001121212000212211222020","1121110022120221210021122021222220201221","2212221202002220120220200120222102022120","2120120020000022220232120032221121212221","2221111022210211212223102012100210012020","0010110231220012112221122112220222011012","2220021221220112102222201100122012000220","2010022012000220111000020022220222212120","0002300010032001220013020222020220002002","1202220122010221320031212020220220222111"}

    Returns: 337

  129. {"111337030131504766771170713022011127636202217","317801330313372663701065881030785201171187117","261077370366561112002365732168613068117207115","607261370721367211088171325516023125673671677","112130020312868361617188306701737000217771731","230830705211332567187105806676771263470218018","727120771656117027633700637387071177031310861","600160371177117011717378773120016061666777381","172666007518136717307772660177110560533710132","336171207753728171071751110770703671716026366","211851136371731113033671382127211626025110371","678576836703710186101160551686836766776112860","321311100367712526081377337701681728213701216","700652315220106206161011777770511116123117311","177731202213110271777611151706361116063028777","016160775136713667133536766703616317060711187","157678173362030170637611567077770113770126031","600221713611333857612376778007271327200211077","031036281112111707162622376216162003761735710","613763852601163031771370018310478235503823751","227071632001718172071671161165013370668756361","362561351700071133052752660701710351713360110","166715225071866576781173327770616762110570001","713007770501312110107113022706110103005730771","177867651622070367150310350072736016658222770","170773067111271216120030213717132036118231703","215563521868230013671167317137001117832311753","763110101065711076466772780063635312102601168","762571670765771163117223610321602171775176121","670002377516230032316130207611013311211206021","511736127320703153726513337061737262311201701","176872737576263056674711311370601611380100078","008712261713171107637762767610611387700670112","162505083116137035117718506010777813630713131","710823112010713107131371013317710153310502100","536103727177270560816102762312653061270737176","401122024163880532113603778115105673302058201","300171716010884186183273011127067277077273156","061011637272772123707331361113727682877106361","615061011561303160622120181113611313711816371","626367677731361170877208231031713112127300183","071611010330636172261722273771703131617021181","173371301211162657117111361701883712032300305","060080237465020156821637712325377632181171766","103060217652386510066617171810287785216781162"}

    Returns: 1254

  130. {"11111101111101110110101010101111100111001010110111","01111110111011012000101100011111110110101111111111","11111021110111100110101100211011100110111011101010","12111111111111101111111111101011010011011111201011","10110211010111110000001101101101111111111110121011","10210111101001111101111011101100110011111111111001","01001100011010111010112111112000011011110101100111","11110011011110101111101101110111110010011011111111","12210011111110111011011000111111111111101111010111","11101101111111211111111121111111100101110101100111","11110111010010110101111111211111111111111111111111","11101001110011111011110101010110111100111010111111","11111112001010101001110011101110111111001101001001","11000111111110011111111011110110110111011111011110","11101001110210111101111100011111101100111111111001","11200110011010000111011110111010111101000111121011","11111011101111110111110110111000111111101110111101","00101010101101000121101110001001121001110011111011","10112110111110001111111001111010111001111102011121","01002012101001011111010111001011001110010111011120","01101101111110011111111111111111111111112101011111","01100100010111011110111111011010111110000101110111","11111011111111010111001101111210121101211111110011","11101111100011010111101011100111010011110000112011","11111101001010100100101101101101111001011110101111","01111100011111110111010111011111111110111011111111","11110011010111111102111101111111001110110111101110","11101121101112011011110111011001111100111110101011","01001111011111002011110010011111100101011111111111","11110000110110111101010101111111111111011011000111","00002110011121110110111110111111110111111000101111","11010111001011111001100110010111101110111111001110","11111111101111011100110011111111111101011110111111","10111111101001101111111112100111111111121111111111","11010111110111111000011111101101101011010121011001","01100111111011111110112111111101110001111010100110","11011000111010111101110010111011001101011111100121","10101111011101110100111101100111110111112110111111","01111111111101111101111011111111100111110110111011","00110111111100101101111101011010011111110101110101","00111111111001110112110111100111112111101110110111","11111100001110101101111111110101010111100111000011","11001011111011111110111111110001011101111010011110","11010111011100111111111010111110111000111111001111","11111101101110011101111111200111121011101111011111","11101111011111010201011001101111110101111101111111","11110111011000101111101011011100111000201100011010","11110111100111111111001110011111011011101111111101","00111011111010110110110100111111101121100011001000","11111111111111110111111110011110110110111110111000"}

    Returns: 242

  131. {"3457056206","2277020446","0051200677","2760207704","0720570320","0304764643","3707037272","0576602472","0421330156","7777306503"}

    Returns: 219

  132. {"834294798041581","357943499116310","301747820495321","880331789854412","978044694727764","971082468879131","764997440094485","807099079498492","391108194784931","987838849449388","737936944781803","284524960494771","440989944837128","713740174043484","774297753203911"}

    Returns: 424

  133. {"72423317104844013180","25346704733287308372","62155874780275738547","83831402424025803374","22204834351705233544","30383530303848203437","02405523307548702735","53504125025474463272","40734234540414737044","74514747220060887346","76530085784185234440","43505450045723502484","53626403600487340134","75343850056435731785","13055474543427736707","27543344041233231072","07407454822200713843","03045313327333173004","25004007045378380755","58768575517338845580"}

    Returns: 514


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: