{"algorithms":{"AlmostSorted":{"constrains":["<span class=\"variable\">2 &#8804 n &#8804 100000 </span>","<span class=\"variable\">0 &#8804 arr[i] &#8804 1000000 </span>","All <span class=\"variable\">arr[i]</span> are distinct"],"difficulty":"hard","inputFormat":"The first line contains a single integer <span class=\"variable\">n</span>, the size of <span class=\"variable\">arr</span>.\n        The next line contains <span class=\"variable\">n</span> space-separated integers <span class=\"variable\">arr[i]</span> where <span class=\"variable\">1 &#8804 i &#8804 n </span>.","inputs":["arr"],"output":"int: the length of the longest subset of <span class=\"variable\">S</span> meeting the criteria","problemDescription":"\n        Given an array of integers, determine whether the array\n        can be sorted in ascending order using only one of the following \n        operations one time.\n        <div class=\"bulletpoint\">Swap two elements.</div>\n        <div class=\"bulletpoint\">Reverse one sub-segment.</div>\n        Determine whether one, both or neither of the operations will complete the task. Output is as follows.\n        <div class=\"bulletpoint\">If the array is already sorted, output <span class=\"variable\">yes</span> on the first line. You do not need to output anything else.</div>\n        <div class=\"bulletpoint\">If you can sort this array using one single operation (from the two permitted operations) then output <span class=\"variable\">yes</span> on the first line and then:\n            <ul class=\"numberlist\">\n                <li>\n                If elements can only be swapped, <span class=\"variable\">d[p]</span> and <span class=\"variable\">d[q]</span>,\n                output <span class=\"variable\">swap p q </span> in the second line.  \n                <span class=\"variable\">p</span> and <span class=\"variable\">q</span> are the indices of the elements to be swapped, \n                assuming that the array is indexed from <span class=\"variable\">1</span> to <span class=\"variable\">n</span>.\n                </li>\n                <li>\n                If elements can only be reversed, for the segment <span class=\"variable\">d[p...q]</span>, output <span class=\"variable\">reverse p q</span> in the second line. \n                <span class=\"variable\">p</span> and <span class=\"variable\">q</span> are the indices of the first and last elements \n                of the subarray to be reversed, assuming that \n                 the array is indexed <span class=\"variable\">1</span> from <span class=\"variable\">n</span> to . \n                Here <span class=\"variable\">d[p...q]</span> represents the subarray that begins at index  <span class=\"variable\">p</span> \n                and ends at index <span class=\"variable\">q</span>, both inclusive.\n                </li>\n            </ul>\n        </div>\n        If an array can be sorted both ways, by using either swap or reverse, choose swap.\n        <div class=\"bulletpoint\">If the array cannot be sorted either way, output no on the first line.</div>\n        ","problemName":"Almost Sorted","sampleCases":[{"explanation":{"text":"It is impossible to sort by one single operation."},"input":["[3, 1, 2]"],"output":["no"]},{"explanation":{"text":"You can reverse the sub-array <span class=\"variable\">d[2...5]</span> = \"5 4 3 2\", then the array becomes sorted."},"input":["[1, 5, 4, 3, 2, 6]"],"output":["yes reverse 2 5"]},{"input":["[1, 2, 5, 4, 3, 6]"],"output":["yes swap 3 5"]}],"submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","profileImage":"https://lh3.googleusercontent.com/a-/AOh14GgxZVsaVbxHMv0FIGq3rHIDe04VG8CboHzJxGnXRg=s96-c","score":0,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"submitCases":[{"input":["[20, 21, 22, 23, 24, 25]"],"output":["yes"]},{"input":["[10, 14, 12, 9, 24, 25]"],"output":["no"]},{"input":["[1, 2, 5, 4, 3, 6]"],"output":["yes swap 3 5"]},{"input":["[1, 5, 4, 3, 2, 6]"],"output":["yes reverse 2 5"]},{"input":["[80, 82, 84, 86, 88, 87]"],"output":["yes swap 5 6"]}]},"AlphabeticalJustice":{"constrains":["<span class=\"variable\">0</span> < <span class=\"variable\">str</span> < <span class=\"variable\">1000</span>","<span class=\"variable\">str[i]</span> &#x2208 <span class=\"variable\">[A-Z]</span>"],"difficulty":"easy","inputFormat":"<span class=\"variable\">str</span> a string containing uppercase letters.","inputs":["str"],"output":"string: The string <span class=\"variable\">str</span> with its letters in alphabetical order.","problemDescription":"Given a string, <span class=\"variable\">str</span>, convert the string so that each letter is in alphabetical order.","problemName":"Alphabetical Justice","sampleCases":[{"input":["\"LUCIO\""],"output":["CILOU"]},{"input":["\"SWEDEN\""],"output":["DEENSW"]}],"submissions":{"0nOUTWAmEJWN3e3EMJQm3mK2mgw1":{"displayName":"asdhhabshd.con","email":"asdasd@sda.com","score":200,"userId":"0nOUTWAmEJWN3e3EMJQm3mK2mgw1"},"GZrxRIEWfQOj5AEGnKHek5dey9g1":{"displayName":"Nabil214","email":"hayeknabil214@gmail.com","score":0,"userId":"GZrxRIEWfQOj5AEGnKHek5dey9g1"},"PO1kxqUbYwYYnH1yuHOz71fj6483":{"displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","profileImage":"https://lh3.googleusercontent.com/a-/AOh14GgxZVsaVbxHMv0FIGq3rHIDe04VG8CboHzJxGnXRg=s96-c","score":200,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"submitCases":[{"input":["\"DGYBSCBYVAEDUJBCUEBHZCV\""],"output":["ABBBBCCCDDEEGHJSUUVVYYZ"]},{"input":["\"YATSVSSBHSYSBJHHSHSHKAI\""],"output":["AABBHHHHHIJKSSSSSSSTVYY"]},{"input":["\"WESDWEDSEWDSEWDHSBVZVFFF\""],"output":["BDDDDEEEEFFFHSSSSVVWWWWZ"]}]},"CountingValleys":{"constrains":[" <span class=\"variable\">2 < steps < 1000</span>","<span class=\"variable\">path[i] = \"U\"</span> or <span class=\"variable\">path[i] = \"D\"</span>"],"difficulty":"medium","inputFormat":"The first line contains an integer <span class=\"variable\">steps</span>, the number of steps in the hike.\n        The second line contains a single string  <span class=\"variable\">path</span>, of   <span class=\"variable\">steps</span>characters that describe the path.","inputs":["steps","path"],"output":"int: The number of valleys traveled.","problemDescription":"\n                An avid hiker keeps meticulous records of their hikes. During the last hike that took exactly <span class=\"variable\">steps</span> steps, for every step it was noted if it was an uphill, <span class=\"variable\">U</span> , or a downhill, <span class=\"variable\">D</span> step. Hikes always start and end at sea level, and each step up or down represents a <span class=\"variable\">1</span> unit change in altitude.\n              \n        <div class=\"bulletpoint\">A level.</div>\n        <div class=\"bulletpoint\">A valley is a sequence of consecutive steps below sea level, starting with a step down from sea level and ending with a step up to sea level.</div>\n        Given the sequence of up and down steps during a hike, find and print the number of valleys walked through.\n\n\n                 ","problemName":"Counting Valleys","sampleCases":[{"explanation":{"explanationOutput":[" _/&#92      _","    &#92    /","     &#92/&#92/"],"text":"If we represent <span class=\"variable\">_</span> as sea level, a step up as <span class=\"variable\">/</span>, and a step down as <span class=\"variable\">&#92</span>, the hike can be drawn as:"},"input":[8,"\"UDDDUDUU\""],"output":[1]},{"input":[6,"\"DUDUDU\""],"output":[3]}],"submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","profileImage":"https://lh3.googleusercontent.com/a-/AOh14GgxZVsaVbxHMv0FIGq3rHIDe04VG8CboHzJxGnXRg=s96-c","score":0,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"submitCases":[{"input":[26,"\"DDUDUUUUDDUUDDUDUDUDUDUDDU\""],"output":[2]},{"input":[28,"\"DUDUDUDUDUDUDUDUDDUDUDUDDUUU\""],"output":[9]},{"input":[48,"\"DUDUDUDUDUDUDUDUDUDUDUDUDUDUDUDUDDUDDUDUDUDUDUUU\""],"output":[17]},{"input":[16,"\"UUUUUUUUDDDDDDDD\""],"output":[0]}]},"MinMaxSum":{"difficulty":"easy","inputFormat":"A single line of five space-separated integers.","inputs":["arr"],"output":"Print two space-separated integers on one line: the minimum sum and the maximum sum of elements.","problemDescription":"Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers.","problemName":"MinMax Sum","sampleCases":[{"input":["[1, 2, 3, 4, 5]"],"output":[["10 14"]]},{"input":["[3, 3, 3, 3, 3]"],"output":[["12 12"]]}],"submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","profileImage":"https://lh3.googleusercontent.com/a-/AOh14GgxZVsaVbxHMv0FIGq3rHIDe04VG8CboHzJxGnXRg=s96-c","score":0,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"submitCases":[{"input":["[69, 812, 11, 0, 981]"],"output":[["892 1873"]]},{"input":["[9, 312, 1, 4, 312]"],"output":[["326 637"]]},{"input":["[90, 32, 1000, 40, 61]"],"output":[["223 1191"]]},{"input":["[99, 23, 100, 32, 1]"],"output":[["155 254"]]}]},"Multiplication":{"constrains":["<span class=\"variable\">X</span> a number","<span class=\"variable\">Y</span> a number"],"difficulty":"easy","inputFormat":"<span class=\"variable\">X</span> a number, <span class=\"variable\">Y</span> a number","inputs":["x","y"],"problemDescription":"Given three numbers, <span class=\"variable\">X</span>, <span class=\"variable\">Y</span>, return the product of <span class=\"variable\">X</span> * <span class=\"variable\">Y</span> ","problemName":"Multiplication","sampleCases":[{"explanation":{"text":"30 * 3 = 90"},"input":[30,3],"output":[90]},{"input":[3,5],"output":[15]}],"submissions":{"7dcXsOh4ZDfdSu0tnj4eadAFLsp2":{"displayName":"Matu__","email":"Matheus03@gmail.com","score":200,"userId":"7dcXsOh4ZDfdSu0tnj4eadAFLsp2"},"F7gARJVyzvb23guOlUP0Nnjb0Ho2":{"email":"te.nymark@gmail.com","score":200,"userId":"F7gARJVyzvb23guOlUP0Nnjb0Ho2"},"GZrxRIEWfQOj5AEGnKHek5dey9g1":{"displayName":"Nabil214","email":"hayeknabil214@gmail.com","score":200,"userId":"GZrxRIEWfQOj5AEGnKHek5dey9g1"},"PO1kxqUbYwYYnH1yuHOz71fj6483":{"displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","profileImage":"https://lh3.googleusercontent.com/a-/AOh14GgxZVsaVbxHMv0FIGq3rHIDe04VG8CboHzJxGnXRg=s96-c","score":200,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"},"b9C80KjJwChMCi9lFkpvxvHF1Wn2":{"displayName":"JanineCruz","email":"janinekrse@gmail.com","score":0,"userId":"b9C80KjJwChMCi9lFkpvxvHF1Wn2"}},"submitCases":[{"input":[69,69],"output":[4761]},{"input":[0,7],"output":[0]},{"input":[1,70],"output":[70]},{"input":[-40,3],"output":[-120]}]},"NumberOfLetters":{"constrains":["0 &#8804 <span class=\"variable\">S</span> &#x3c 100000  ","<span class=\"variable\">S[i]</span> &#x2208 <span class=\"variable\">a-z</span>","<span class=\"variable\">Letter</span> &#x2208 <span class=\"variable\">a-z</span>"],"difficulty":"easy","inputFormat":"<span class=\"variable\">S</span> a string containing lowercase letters, <span class=\"variable\">Letter</span> a single lowercase letter","inputs":["letter","s"],"problemDescription":"given a string, <span class=\"variable\">S</span>, and a single letter, <span class=\"variable\">Letter</span>, return the number of instances that the letter <span class=\"variable\">Letter</span> appears in the string <span class=\"variable\">S</span>","problemName":"Number Of Letters","sampleCases":[{"explanation":{"text":"In the string <span class=\"variable\">\"helloworld\"</span> the letter <span class=\"variable\">l</span> appears 3 times"},"input":["\"l\"","\"helloworld\""],"output":[3]},{"explanation":{"text":"In the string <span class=\"variable\">\"drillmasher\"</span> the letter <span class=\"variable\">n</span> doesn't appears, so we return 0"},"input":["\"n\"","\"drillmasher\""],"output":[0]}],"submissions":{"7dcXsOh4ZDfdSu0tnj4eadAFLsp2":{"displayName":"Matu__","email":"Matheus03@gmail.com","score":0,"userId":"7dcXsOh4ZDfdSu0tnj4eadAFLsp2"},"BbUFyPNeTSfAhmt9YhYl2hD8wK62":{"displayName":"Gajendra","email":"gajendramehra@protonmail.com","score":0,"userId":"BbUFyPNeTSfAhmt9YhYl2hD8wK62"},"bUAjeyWICre8PCCQRfRwUqavolJ3":{"displayName":"rlakw33e","email":"rlakshay424@gmail.com","score":0,"userId":"bUAjeyWICre8PCCQRfRwUqavolJ3"}},"submitCases":[{"input":["\"e\"","\"egegeahsdfyegdajebcsdfyegdajebcheavcaebuebu\""],"output":[10]},{"input":["\"j\"","\"gdykajcbaksdnscnsacnkasdknnsd\""],"output":[10]},{"input":["\"m\"","\"memememememememe\""],"output":[8]}]},"PalindromeNumber":{"constrains":["<span class=\"variable\">-1000</span> <= <span class=\"variable\">x</span> < <span class=\"variable\">1000</span>"],"difficulty":"easy","inputFormat":"<span class=\"variable\">x</span> a integer","inputs":["x"],"output":"<span class=\"variable\">Boolean:</span> If the number is a palindrome or not","problemDescription":"\n        Given an integer <span class=\"variable\">x</span>,\n        return <span class=\"variable\">true</span> if <span class=\"variable\">x</span> is palindrome integer.\n        An integer is a palindrome when it reads the same backward as forward. \n        For example, <span class=\"variable\">121</span> is palindrome while <span class=\"variable\">123</span> is not.\n        ","problemName":"Palindrome Number","sampleCases":[{"input":[121],"output":["true"]},{"explanation":{"text":"From left to right, it reads <span class=\"variable\">69</span>.\n                From right to left, it becomes <span class=\"variable\">96</span>. Therefore it is not a palindrome."},"input":[69],"output":["false"]},{"explanation":{"text":"From left to right, it reads <span class=\"variable\">-919</span>.\n                From right to left, it becomes <span class=\"variable\">919-</span>. Therefore it is not a palindrome."},"input":[-919],"output":["false"]}],"submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","profileImage":"https://lh3.googleusercontent.com/a-/AOh14GgxZVsaVbxHMv0FIGq3rHIDe04VG8CboHzJxGnXRg=s96-c","score":0,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"submitCases":[{"input":[-981],"output":["false"]},{"input":[696],"output":["true"]},{"input":[0],"output":["true"]},{"input":[35],"output":["false"]}]},"ScoreTheName":{"constrains":[" <span class=\"variable\">n</span> < <span class=\"variable\">100</span>"," <span class=\"variable\">n[i]</span> &#x2208 <span class=\"variable\">[A-Z]</span>"],"difficulty":"easy","inputFormat":"<span class=\"variable\">n</span> a single word containing uppercase letters.","inputs":["n"],"output":"int: The alphabetical value of the given name.","problemDescription":"Given a single name, <span class=\"variable\">n</span>, calculate the alphabetical value for the letters of the name. The alphabetical value of a letter is it\"s place in the alphabet.","problemName":"Score The Name","sampleCases":[{"explanation":{"text":"The alphabetical value of each letter in the name, Lucio, is <span class=\"variable\">12 + 21 + 3 + 9 + 15 = 60</span>"},"input":["\"LUCIO\""],"output":[60]},{"explanation":{"text":"The alphabetical value of each letter in the name, ABBA, is <span class=\"variable\">1 + 2 + 2 + 1 = 6</span>"},"input":["\"ABBA\""],"output":[6]}],"submissions":{"7dcXsOh4ZDfdSu0tnj4eadAFLsp2":{"displayName":"Matu__","email":"Matheus03@gmail.com","score":0,"userId":"7dcXsOh4ZDfdSu0tnj4eadAFLsp2"},"BbUFyPNeTSfAhmt9YhYl2hD8wK62":{"displayName":"Gajendra","email":"gajendramehra@protonmail.com","score":0,"userId":"BbUFyPNeTSfAhmt9YhYl2hD8wK62"}},"submitCases":[{"input":["\"MATHEUSMENDESBARATADEALMEIDA\""],"output":[244]},{"input":["\"QWQWASZXDESREGG\""],"output":[215]},{"input":["\"ZZZZZZZZA\""],"output":[209]}]},"SimpleAddition":{"constrains":["<span class=\"variable\">-Infinity</span> < <span class=\"variable\">a</span> < <span class=\"variable\">Infinity</span>","<span class=\"variable\">-Infinity</span> < <span class=\"variable\">b</span> < <span class=\"variable\">Infinity</span>"],"difficulty":"easy","inputFormat":"<span class=\"variable\">a</span> a integer, <span class=\"variable\">b</span> a integer ","inputs":["a","b"],"problemDescription":"given two integers, <span class=\"variable\">a</span> and <span class=\"variable\">b</span>, return the sum of <span class=\"variable\">a</span> + <span class=\"variable\">b</span>","problemName":"Simple Addition","sampleCases":[{"explanation":{"text":"9 + 6 = 15"},"input":[9,6],"output":[15]},{"input":[108,12],"output":[120]}],"submissions":{"0nOUTWAmEJWN3e3EMJQm3mK2mgw1":{"displayName":"asdhhabshd.con","email":"asdasd@sda.com","score":200,"userId":"0nOUTWAmEJWN3e3EMJQm3mK2mgw1"},"7dcXsOh4ZDfdSu0tnj4eadAFLsp2":{"displayName":"Matu__","email":"Matheus03@gmail.com","score":200,"userId":"7dcXsOh4ZDfdSu0tnj4eadAFLsp2"},"CNTdRLRTTYgjjN60Fa7BRXk0I7A2":{"displayName":"William R.","email":"william.redgard@gmail.com","profileImage":"https://lh3.googleusercontent.com/a/AATXAJyrVe6D4_1XvAkB3F4dQx6aqDrMrdV7DupxjNMi=s96-c","score":200,"userId":"CNTdRLRTTYgjjN60Fa7BRXk0I7A2"},"F7gARJVyzvb23guOlUP0Nnjb0Ho2":{"email":"te.nymark@gmail.com","score":200,"userId":"F7gARJVyzvb23guOlUP0Nnjb0Ho2"},"GZrxRIEWfQOj5AEGnKHek5dey9g1":{"displayName":"Nabil214","email":"hayeknabil214@gmail.com","score":200,"userId":"GZrxRIEWfQOj5AEGnKHek5dey9g1"},"H83XvXyepLR1H28SpLEkCDcD3yH2":{"displayName":"Apspelet33","email":"williameliasson5@gmail.com","score":200,"userId":"H83XvXyepLR1H28SpLEkCDcD3yH2"},"PO1kxqUbYwYYnH1yuHOz71fj6483":{"displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","profileImage":"https://lh3.googleusercontent.com/a-/AOh14GgxZVsaVbxHMv0FIGq3rHIDe04VG8CboHzJxGnXRg=s96-c","score":200,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"},"RzH96aRK93dBMAi8M4ieSrEGkkA2":{"displayName":"techover","email":"techover@gmail.com","score":200,"userId":"RzH96aRK93dBMAi8M4ieSrEGkkA2"},"Xpb9gZ7Aicaf2V1Akxj2FTNQwvZ2":{"displayName":"testtest","email":"test@gmail.com","score":200,"userId":"Xpb9gZ7Aicaf2V1Akxj2FTNQwvZ2"},"kMq2VYWoSwdQPky2vnfi6T2KcpI3":{"displayName":"TheOwnerOfThisSiteIsGay","email":"marlo_pato123@hotmail.com","score":200,"userId":"kMq2VYWoSwdQPky2vnfi6T2KcpI3"},"qZiRWGE7TUaa1NScmU3CfkxqZgT2":{"displayName":"Eric__","email":"assss@fsdfdsf.com","score":200,"userId":"qZiRWGE7TUaa1NScmU3CfkxqZgT2"}},"submitCases":[{"input":[-981,-54],"output":[-1035]},{"input":[69,69],"output":[138]},{"input":[12,12],"output":[24]},{"input":[35,-35],"output":[0]}]}},"css":[{"colors":["#160F29","#246A73"],"image":"/static/media/problem1.97250c65.png","submissions":{"0nOUTWAmEJWN3e3EMJQm3mK2mgw1":{"characters":93,"cssCode":"body{background:#160F29;margin:0}\ndiv{width: 200px;height: 200px;background:#246A73;}","email":"asdasd@sda.com","htmlCode":"<div></div>","percentage":100,"score":689.12,"userId":"0nOUTWAmEJWN3e3EMJQm3mK2mgw1"},"7dcXsOh4ZDfdSu0tnj4eadAFLsp2":{"characters":60,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #246A73;\n}","email":"matheus03@gmail.com","htmlCode":"<div></div>","percentage":33.33,"score":32.71,"userId":"7dcXsOh4ZDfdSu0tnj4eadAFLsp2"},"BbUFyPNeTSfAhmt9YhYl2hD8wK62":{"characters":81,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: royalblue;\n\tborder: 1px solid red;\n}","email":"gajendramehra@protonmail.com","htmlCode":"<div></div>","percentage":33.34,"score":32.36,"userId":"BbUFyPNeTSfAhmt9YhYl2hD8wK62"},"H83XvXyepLR1H28SpLEkCDcD3yH2":{"characters":94,"cssCode":"body{\nbackground: #160F29;\nmargin:0;\n}\ndiv{\nwidth: 200px;height: 200px;background: #246A73;\n}","email":"williameliasson5@gmail.com","htmlCode":"<div></div>","percentage":100,"score":688.96,"userId":"H83XvXyepLR1H28SpLEkCDcD3yH2"},"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":20,"cssCode":"*{\n\tbackground: #246A73\n","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"","percentage":100,"score":700.8,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"},"RzH96aRK93dBMAi8M4ieSrEGkkA2":{"characters":20,"cssCode":"*{background:#246A73","email":"techover@gmail.com","htmlCode":"","percentage":100,"score":700.8,"userId":"RzH96aRK93dBMAi8M4ieSrEGkkA2"},"SNkzSN1DiZcpK5T7b5kMI8B7frl2":{"characters":102,"cssCode":"div{\n\twidth: 200px;\n\theight: 200px;\n\tmargin: -8;\n\tbackground: #246A73;\n}\n\n:root{\n\tbackground-color: #160F29;\n}","email":"sergiopezoj@gmail.com","htmlCode":"<div></div>","percentage":100,"score":687.68,"userId":"SNkzSN1DiZcpK5T7b5kMI8B7frl2"},"SanDSg1rmnbHUNT39uyi5E5sAJm1":{"characters":113,"cssCode":"*{\n\tpadding: 0;\n\tmargin: 0;\n}\nbody{\n\tbackground-color: #160f29;\n}\ndiv{\n\twidth: 200px;\n\theight: 200px;\n\tbackground: #246a73;\n}","email":"ivan.ivanovski0106002@gmail.com","htmlCode":"<div></div>","percentage":100,"score":685.92,"userId":"SanDSg1rmnbHUNT39uyi5E5sAJm1"},"cYGnSBjiZmSSfJL7MZ0xNtf4m3k1":{"characters":141,"cssCode":"div{\n\tdisplay: block;\n\tbox-sizing: border-box;;\n\tmargin: 0;\n\tpadding: 0;\n\twidth: 200px;\n\theight: 190px;\n\tbackground: #246A73;\n}\nbody {\n\tbackground: #160F29;\n}","email":"reychaabani@outlook.com","htmlCode":"<div></div>","percentage":90.88,"score":517.62,"userId":"cYGnSBjiZmSSfJL7MZ0xNtf4m3k1"},"kMq2VYWoSwdQPky2vnfi6T2KcpI3":{"characters":75,"cssCode":"body{\n\tmargin: 0;\n\t\n}\ndiv{\n\twidth: 200px;\n\theight: 200px;\n\tbackground: #246A73;\n}","email":"marlo_pato123@hotmail.com","htmlCode":"<div></div>","percentage":100,"score":692,"userId":"kMq2VYWoSwdQPky2vnfi6T2KcpI3"},"kfgY2tJRgzSlb1J1iX2ieZ1Ihow2":{"characters":173,"cssCode":".back {\n\tbackground-color: #160F29;\t\n\twidth: 100%;\n\theight: 100%;\n}\n\n.cube {\n\tbackground-color: #246A73;\n\twidth: 200px;\n\theight: 200px;\n}\n\nbody {\n\tmargin: 0;\n}","email":"baconandminecraft@gmail.com","htmlCode":"<div class=\"back\">\r\n    <div class=\"cube\">\r\n        \r\n    </div>\r\n</div>","percentage":73.6,"score":280.51,"userId":"kfgY2tJRgzSlb1J1iX2ieZ1Ihow2"},"yHELtE15oIeAjqGgxkSZg1QKhEA3":{"characters":83,"cssCode":"","email":"timothytampold@gmail.com","htmlCode":"<body bgcolor=246A73 style=margin:0;width:200;height:200;box-shadow:0+0+0+9in#160F29>","percentage":100,"score":690.72,"userId":"yHELtE15oIeAjqGgxkSZg1QKhEA3"}},"target":1},{"colors":["#14213d","#fca311"],"image":"/static/media/problem2.2917a2d5.png","submissions":{"7dcXsOh4ZDfdSu0tnj4eadAFLsp2":{"characters":36,"cssCode":"body{\n\n\tbackground: #14213d;\n}","email":"matheus03@gmail.com","htmlCode":"<div></div>","percentage":85.4,"score":445.35,"userId":"7dcXsOh4ZDfdSu0tnj4eadAFLsp2"},"H83XvXyepLR1H28SpLEkCDcD3yH2":{"characters":158,"cssCode":"body{\n\tbackground: #14213d;\n\tdisplay: flex;\n\tjustify-content: center;\n\talign-items: center;\n}\n\ndiv{\n\n\twidth: 150px;\n\theight: 150px;\n\tborder-radius: 50%;\n\tbackground: #fca311;\n}","email":"williameliasson5@gmail.com","htmlCode":"<div></div>","percentage":82.03,"score":384.17,"userId":"H83XvXyepLR1H28SpLEkCDcD3yH2"},"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":20,"cssCode":"*{background: #14213d","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"","percentage":85.53,"score":449.15,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"},"RzH96aRK93dBMAi8M4ieSrEGkkA2":{"characters":106,"cssCode":"*{\n\tbackground:#14213d;\n}\n\np{\n\twidth: 150px;\n\theight: 150px;\n\tborder-radius:50%;\n\tmargin: 75px auto;\n\tbackground: #fca311;\n}","email":"techover@gmail.com","htmlCode":"<p>","percentage":100,"score":687.04,"userId":"RzH96aRK93dBMAi8M4ieSrEGkkA2"},"SanDSg1rmnbHUNT39uyi5E5sAJm1":{"characters":273,"cssCode":"\n*{\n\tpadding: 0;\n\tmargin: 0;\n}\nbody{\n\tdisplay: flex;\n\tflex-direction: row;\n\tflex-wrap: nowrap;\n\ttext-align: center;\n\talign-content: center;\n\tjustify-content: center;\n\talign-items: center;\n\tmargin: 0 auto;\n\tbackground-color: 14213d;\n}\ndiv{\n\t\n\tborder-radius: 50%;\n\twidth: 148px;\n\theight: 149px;\n\tbackground: #fca311;\n}","email":"ivan.ivanovski0106002@gmail.com","htmlCode":"<div></div>","percentage":82.51,"score":378.15,"userId":"SanDSg1rmnbHUNT39uyi5E5sAJm1"},"cYGnSBjiZmSSfJL7MZ0xNtf4m3k1":{"characters":116,"cssCode":"div{\n\twidth: 150px;\n\theight: 150px;\n\tborder-radius: 75px;\n\tbackground: #fca311;\n\t\n\t\n}\nbody {\n\tbackground: #14213d\n}","email":"reychaabani@outlook.com","htmlCode":"<body>\n<div></div>\n</body>","percentage":32.58,"score":29.82,"userId":"cYGnSBjiZmSSfJL7MZ0xNtf4m3k1"},"yHELtE15oIeAjqGgxkSZg1QKhEA3":{"characters":106,"cssCode":"","email":"timothytampold@gmail.com","htmlCode":"<body bgcolor=fca311 style=border-radius:50%;width:150;height:150;margin:75+125;box-shadow:0+0+0+9in#14213d>","percentage":85.53,"score":439.08,"userId":"yHELtE15oIeAjqGgxkSZg1QKhEA3"}},"target":2},{"colors":["#e76f51","#f4a261","#e9c46a","#2a9d8f"],"image":"/static/media/problem3.35cfe113.png","submissions":{"7dcXsOh4ZDfdSu0tnj4eadAFLsp2":{"characters":25,"cssCode":"body{\n\tbackground: #e76f51;\n}","email":"matheus03@gmail.com","htmlCode":"","percentage":100,"score":700,"userId":"7dcXsOh4ZDfdSu0tnj4eadAFLsp2"},"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":20,"cssCode":"*{\n\tbackground: #e76f51","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"","percentage":100,"score":700.8,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"},"RzH96aRK93dBMAi8M4ieSrEGkkA2":{"characters":32,"cssCode":"*{\n\tbackground:#e76f51\n}","email":"techover@gmail.com","htmlCode":"<div></div>","percentage":75,"score":308.75,"userId":"RzH96aRK93dBMAi8M4ieSrEGkkA2"},"cYGnSBjiZmSSfJL7MZ0xNtf4m3k1":{"characters":254,"cssCode":"body {\n\tmargin: 0px;\n\tbackground: #e76f51;\n}\n\ndiv{\n\tpadding-top: 100px;\n\tpadding-left: 100px;\n\tmargin-left: 100px;\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #2a9d8f;\n}\n\ndiv {\n\tpadding-top: 100px;\n\tpadding-left: 100px;\n\tmargin-left: -1px;\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #e9c46a;\n}","email":"reychaabani@outlook.com","htmlCode":"<div></div>","percentage":17,"score":4.78,"userId":"cYGnSBjiZmSSfJL7MZ0xNtf4m3k1"},"kMq2VYWoSwdQPky2vnfi6T2KcpI3":{"characters":149,"cssCode":".h{\n\tbackground: #f4a261;\n\tposition: relative;\n\tright: -100;\n\tbottom:-100;\n\twidth: 300px;\n\theight: 200px;\n}\nbody{\n\tbackground-color:#e76f51;\n\tmargin: 0;\n}","email":"marlo_pato123@hotmail.com","htmlCode":"<div class=\"h\"></div>","percentage":93.75,"score":564.84,"userId":"kMq2VYWoSwdQPky2vnfi6T2KcpI3"}},"target":3},{"colors":["#000000","#14213d","#fca311","#e5e5e5"],"image":"/static/media/problem4.a5677f63.png","target":4},{"colors":["#d11149","#e6c229","#df8734"],"image":"/static/media/problem5.f6d5c7ba.png","submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":20,"cssCode":"*{background: #d11149","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"","percentage":81.72,"score":394.74,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"},"Xpb9gZ7Aicaf2V1Akxj2FTNQwvZ2":{"characters":62,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: royalblue;\n}","email":"test@gmail.com","htmlCode":"<div></div>","percentage":91.67,"score":541.21,"userId":"Xpb9gZ7Aicaf2V1Akxj2FTNQwvZ2"}},"target":5},{"colors":["#00171f","#00a8e8","#007ea7"],"image":"/static/media/problem6.2a22805a.png","submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":60,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #00171f;\n}","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"<div></div>","percentage":34.02,"score":34.56,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"target":6},{"colors":["#03071e","#ffba08"],"image":"/static/media/problem7.8225341c.png","submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":17,"cssCode":"*{background: #112","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"","percentage":100,"score":701.28,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"},"RzH96aRK93dBMAi8M4ieSrEGkkA2":{"characters":21,"cssCode":"*{background:#03071e}","email":"techover@gmail.com","htmlCode":"","percentage":100,"score":700.64,"userId":"RzH96aRK93dBMAi8M4ieSrEGkkA2"}},"target":7},{"colors":["#2a9d8f","#fca311"],"image":"/static/media/problem8.23a800b7.png","target":8},{"colors":["#1d3557","#e63946"],"image":"/static/media/problem9.c2934c69.png","target":9},{"colors":["#14213d","#fca311"],"image":"/static/media/problem10.ae58f647.png","target":10},{"colors":["#081c15","#95d5b2"],"image":"/static/media/problem11.2d27aa59.png","submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":60,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #081c15;\n}","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"<div></div>","percentage":8.79,"score":1.14,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"target":11},{"colors":["#081c15","#95d5b2","#2d6a4f"],"image":"/static/media/problem12.c414d747.png","submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":60,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #95d5b2;\n}","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"<div></div>","percentage":6.87,"score":0.64,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"target":12},{"colors":["#1d3557","#e63946"],"image":"/static/media/problem13.69f08576.png","submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":60,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #1d3557;\n}","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"<div></div>","percentage":8.55,"score":1.07,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"target":13},{"colors":["#00171f","#00a8e8","#007ea7"],"image":"/static/media/problem14.65ecf2f6.png","submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":60,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #00171f;\n}","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"<div></div>","percentage":33.61,"score":33.43,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"target":14},{"colors":[" #275654","#65b891","#4e878c"],"image":"/static/media/problem15.3cee746d.png","target":15},{"colors":["#2a9d8f","#e9c46a","#f4a261","#e76f51"],"image":"/static/media/problem16.5a631766.png","submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":60,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #2a9d8f;\n}","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"<div></div>","percentage":9.02,"score":1.21,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"target":16},{"colors":[" #2a9d8f","#e9c46a","#e76f51"],"image":"/static/media/problem17.f962d84b.png","target":17},{"colors":[" #293241","#e0fbfc","#98c1d9","#3d5a80"],"image":"/static/media/problem18.2c338ab0.png","submissions":{"CNTdRLRTTYgjjN60Fa7BRXk0I7A2":{"characters":31,"cssCode":"body{\n\tbackground-color: #293241;\n}","displayName":"William R.","email":"william.redgard@gmail.com","htmlCode":"","percentage":97.09,"score":642.55,"userId":"CNTdRLRTTYgjjN60Fa7BRXk0I7A2"},"kMq2VYWoSwdQPky2vnfi6T2KcpI3":{"characters":297,"cssCode":"body{\n\tbackground:#293241;\n}\ndiv, .l, o{\n\twidth: 65px;\n\theight: 180px;\n\tbackground: #3d5a80;\n\ttransform:rotate(-45deg);\n\ttop: 60px;\n\tleft: 167.5px;\n\tposition: absolute;\n}\n.l{\n\tbackground: #98c1d9;\n\ttransform:rotate(45deg);\n}\n.o{\n\theight: 60px;\n\twidth: 65px;\n\tbackground: #e0fbfc;\n\ttop: 120px;\n}","email":"marlo_pato123@hotmail.com","htmlCode":"<div></div>\n<div class=\"l\"></div>\n<div class=\"o\"></div>","percentage":99.57,"score":648.24,"userId":"kMq2VYWoSwdQPky2vnfi6T2KcpI3"}},"target":18},{"colors":[" #293241","#98c1d9"],"image":"/static/media/problem19.45a893c8.png","submissions":{"0nOUTWAmEJWN3e3EMJQm3mK2mgw1":{"characters":17,"cssCode":"*{background:#234","email":"asdasd@sda.com","htmlCode":"","percentage":57.67,"score":148.77,"userId":"0nOUTWAmEJWN3e3EMJQm3mK2mgw1"},"7dcXsOh4ZDfdSu0tnj4eadAFLsp2":{"characters":25,"cssCode":"body{\n\tbackground: #293241;\n}","email":"matheus03@gmail.com","htmlCode":"","percentage":91.77,"score":547.88,"userId":"7dcXsOh4ZDfdSu0tnj4eadAFLsp2"},"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":20,"cssCode":"*{background: #293241","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"","percentage":91.77,"score":548.55,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"},"RzH96aRK93dBMAi8M4ieSrEGkkA2":{"characters":21,"cssCode":"*{\n\tbackground: #293241\n}","email":"techover@gmail.com","htmlCode":"","percentage":91.77,"score":548.42,"userId":"RzH96aRK93dBMAi8M4ieSrEGkkA2"}},"target":19},{"colors":[" #293241","#e0fbfc","#98c1d9","#3d5a80"],"image":"/static/media/problem20.27a67855.png","submissions":{"PO1kxqUbYwYYnH1yuHOz71fj6483":{"characters":60,"cssCode":"div{\n\twidth: 100px;\n\theight: 100px;\n\tbackground: #293241;\n}","displayName":"Matheus Mendes","email":"matheusmendesbarata03@gmail.com","htmlCode":"<div></div>","percentage":15.85,"score":4.76,"userId":"PO1kxqUbYwYYnH1yuHOz71fj6483"}},"target":20}]}