diff --git a/README.md b/README.md index 9017cb61..68066c3f 100644 --- a/README.md +++ b/README.md @@ -17,13 +17,13 @@ apt-get install python-dev libxml2-dev libxslt1-dev zlib1g-dev Install the required packages by running: ``` -pip install -r requirements.txt +pip3 install -r requirements.txt ``` Also, pip doesn't respect proxy while installing packages from the requirements file. So if you are using a proxy in your terminal you MAY use: ``` -pip install -r requirements.txt --proxy= +pip3 install -r requirements.txt --proxy= ``` 2. To deploy the code, uglify-js and uglifycss needs to be installed @@ -70,7 +70,7 @@ npm install uglifycss -g Note: Web2Py does not allow appname to contain hyphens. -4. Install MySQL - [here](http://dev.mysql.com/downloads/) +4. Install MySQL (v5.6) - [here](http://dev.mysql.com/downloads/) Make sure you remember the root password for mysql server. 5. Create a database in MySQL @@ -119,7 +119,7 @@ npm install uglifycss -g In case if you want to send emails - Install `postfix` for your respective OS and configure the above smtp server accordingly. -8. Install Redis - [here](https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-redis-on-ubuntu-18-04) +8. Install and start Redis - [here](https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-redis-on-ubuntu-18-04) 9. Install InfluxDB (1.7) - [here](https://docs.influxdata.com/influxdb/v1.7/introduction/installation/) @@ -127,7 +127,7 @@ npm install uglifycss -g ``` $ cd web2py - $ python web2py.py -a yourPassword // Choose any password + $ python3 web2py.py -a yourPassword // Choose any password ``` 11. Open the browser and go to the URL - diff --git a/controllers/appadmin.py b/controllers/appadmin.py index aee67c95..6a4ecb5c 100644 --- a/controllers/appadmin.py +++ b/controllers/appadmin.py @@ -97,7 +97,7 @@ def get_databases(request): dbs = {} - for (key, value) in global_env.items(): + for (key, value) in list(global_env.items()): try: cond = isinstance(value, GQLDB) except: @@ -321,7 +321,7 @@ def select(): else: rows = db(query, ignore_common_filters=True).select( *fields, limitby=(start, stop)) - except Exception, e: + except Exception as e: import traceback tb = traceback.format_exc() (rows, nrows) = ([], 0) @@ -349,7 +349,7 @@ def select(): import_csv(db[request.vars.table], request.vars.csvfile.file) response.flash = T('data uploaded') - except Exception, e: + except Exception as e: response.flash = DIV(T('unable to parse csv file'), PRE(str(e))) # end handle upload csv @@ -508,7 +508,7 @@ def GetInHMS(seconds): gae_stats['oldest'] = GetInHMS(time.time() - gae_stats['oldest_item_age']) total.update(gae_stats) else: - for key, value in cache.ram.storage.iteritems(): + for key, value in list(cache.ram.storage.items()): if isinstance(value, dict): ram['hits'] = value['hit_total'] - value['misses'] ram['misses'] = value['misses'] @@ -543,7 +543,7 @@ def GetInHMS(seconds): disk['oldest'] = value[0] disk['keys'].append((key, GetInHMS(time.time() - value[0]))) - ram_keys = ram.keys() # ['hits', 'objects', 'ratio', 'entries', 'keys', 'oldest', 'bytes', 'misses'] + ram_keys = list(ram.keys()) # ['hits', 'objects', 'ratio', 'entries', 'keys', 'oldest', 'bytes', 'misses'] ram_keys.remove('ratio') ram_keys.remove('oldest') for key in ram_keys: @@ -638,14 +638,14 @@ def bg_graph_model(): meta_graphmodel = dict(group=request.application, color='#ECECEC') group = meta_graphmodel['group'].replace(' ', '') - if not subgraphs.has_key(group): + if group not in subgraphs: subgraphs[group] = dict(meta=meta_graphmodel, tables=[]) subgraphs[group]['tables'].append(tablename) graph.add_node(tablename, name=tablename, shape='plaintext', label=table_template(tablename)) - for n, key in enumerate(subgraphs.iterkeys()): + for n, key in enumerate(subgraphs.keys()): graph.subgraph(nbunch=subgraphs[key]['tables'], name='cluster%d' % n, style='filled', diff --git a/controllers/default.py b/controllers/default.py index 59d5b8d8..e0514352 100644 --- a/controllers/default.py +++ b/controllers/default.py @@ -236,7 +236,7 @@ def user_editorials(): # This problem has an official editorial - don't count in leaderboard continue - if user_id_pid_map.has_key((row.user_editorials.user_id, row.user_editorials.problem_id)): + if (row.user_editorials.user_id, row.user_editorials.problem_id) in user_id_pid_map: # This is to handle multiple accepted editorials of same user on same problem continue @@ -256,7 +256,7 @@ def user_editorials(): for key in user_id_pid_map: value = user_id_pid_map[key] vote_count = 0 if value.votes.strip() == "" else len(value.votes.split(",")) - if editorial_count_dict.has_key(value.user_id): + if value.user_id in editorial_count_dict: update_value = editorial_count_dict[value.user_id] update_value["count"] += 1 update_value["votes"] += vote_count @@ -838,7 +838,7 @@ def leaderboard(): cftable = db.custom_friend global_leaderboard = False - if request.vars.has_key("global"): + if "global" in request.vars: if request.vars["global"] == "True": global_leaderboard = True else: @@ -872,14 +872,14 @@ def leaderboard(): # Do not display blacklisted users in the leaderboard aquery &= (atable.blacklisted == False) - if request.vars.has_key("q") and request.vars["q"]: - from urllib import unquote + if "q" in request.vars and request.vars["q"]: + from urllib.parse import unquote institute = unquote(request.vars["q"]) specific_institute = True heading = "StopStalk Leaderboard - " + institute aquery &= (atable.institute == institute) - if request.vars.has_key("country") and request.vars["country"]: + if "country" in request.vars and request.vars["country"]: country = None if request.vars["country"] not in reverse_country_mapping: if request.vars["country"] in current.all_countries: @@ -907,7 +907,7 @@ def leaderboard(): users = json.loads(user_ratings) logged_in_row = None if auth.is_logged_in(): - logged_in_row = filter(lambda x: x[1] == session.handle, users) + logged_in_row = [x for x in users if x[1] == session.handle] logged_in_row = None if len(logged_in_row) == 0 else logged_in_row[0] resp = dict(users=users, logged_in_row=logged_in_row) @@ -1036,7 +1036,7 @@ def filters(): table = None global_submissions = False - if get_vars.has_key("global") and get_vars["global"] == "True": + if "global" in get_vars and get_vars["global"] == "True": global_submissions = True # If form is not submitted @@ -1050,7 +1050,7 @@ def filters(): # these fields should be passed in # the URL with empty value compulsory_keys = ["pname", "name", "end_date", "start_date"] - if set(compulsory_keys).issubset(get_vars.keys()) is False: + if set(compulsory_keys).issubset(list(get_vars.keys())) is False: session.flash = T("Invalid URL parameters") redirect(URL("default", "filters")) @@ -1206,11 +1206,11 @@ def filters(): def _get_values_list(param_name): values_list = [] - if get_vars.has_key(param_name): + if param_name in get_vars: values_list = get_vars[param_name] if isinstance(values_list, str) and values_list != "": values_list = [values_list] - elif get_vars.has_key(param_name + "[]"): + elif param_name + "[]" in get_vars: values_list = get_vars[param_name + "[]"] if isinstance(values_list, str): values_list = [values_list] @@ -1272,7 +1272,7 @@ def mark_friend(): ftable = db.following try: - friend_id = long(request.args[0]) + friend_id = int(request.args[0]) except ValueError: raise HTTP(400, "Bad request") return T("Invalid user argument!") @@ -1409,7 +1409,7 @@ def search(): all_institutes = [x.name.strip("\"") for x in all_institutes] all_institutes.append("Other") - country_name_list = current.all_countries.keys() + country_name_list = list(current.all_countries.keys()) country_name_list.sort() resp = dict(all_institutes=all_institutes, @@ -1597,7 +1597,7 @@ def _invalid_url(): return _invalid_url() else: try: - friend_id = long(request.args[0]) + friend_id = int(request.args[0]) except ValueError: return _invalid_url() @@ -1700,7 +1700,7 @@ def faq(): data={"collapsible": "expandable"}) faqs = db(db.faq).select() - for i in xrange(len(faqs)): + for i in range(len(faqs)): li = LI(DIV(B(str(i + 1) + ". " + faqs[i].question), _class="collapsible-header"), DIV(MARKMIN(faqs[i].answer), diff --git a/controllers/problems.py b/controllers/problems.py index 201b3b6d..5622aa9e 100644 --- a/controllers/problems.py +++ b/controllers/problems.py @@ -33,7 +33,7 @@ def pie_chart_helper(): problem_id = int(request.post_vars["pid"]) submission_type = "friends" - if request.vars.has_key("submission_type"): + if "submission_type" in request.vars: if request.vars["submission_type"] == "global": submission_type = "global" elif request.vars["submission_type"] == "my": @@ -170,7 +170,7 @@ def add_suggested_tags(): @auth.requires_login() def problem_difficulty(): if request.env.request_method != "POST" or request.extension != "json": - raise(HTTP(405, "Method not allowed")) + raise HTTP(405, "Method not allowed") return dict() problem_id = int(request.vars["problem_id"]) @@ -248,7 +248,7 @@ def _represent_tag(tag_id): # ---------------------------------------------------------------------------- def get_submissions_list(): - if request.vars.has_key("problem_id") is False: + if ("problem_id" in request.vars) is False: # Disables direct entering of a URL session.flash = T("Please click on a Problem Link") redirect(URL("default", "index")) @@ -262,7 +262,7 @@ def get_submissions_list(): return submission_type = "friends" - if request.vars.has_key("submission_type"): + if "submission_type" in request.vars: if request.vars["submission_type"] == "global": submission_type = "global" elif request.vars["submission_type"] == "my": @@ -311,7 +311,7 @@ def index(): """ from json import dumps - if request.vars.has_key("problem_id") is False: + if ("problem_id" in request.vars) is False: # Disables direct entering of a URL session.flash = T("Please click on a Problem Link") redirect(URL("default", "index")) @@ -325,7 +325,7 @@ def index(): return submission_type = "friends" - if request.vars.has_key("submission_type"): + if "submission_type" in request.vars: if request.vars["submission_type"] == "global": submission_type = "global" elif request.vars["submission_type"] == "my": @@ -459,13 +459,12 @@ def editorials(): atable = db.auth_user query = (uetable.problem_id == record.id) user_editorials = db(query).select(orderby=~uetable.added_on) - accepted_count = len(filter(lambda x: (x.verification == "accepted" or \ + accepted_count = len([x for x in user_editorials if (x.verification == "accepted" or \ (auth.is_logged_in() and \ (x.user_id == session.user_id or \ session.user_id in STOPSTALK_ADMIN_USER_IDS) ) - ), - user_editorials)) + )]) if accepted_count == 0: if auth.is_logged_in(): table_contents = T("No editorials found! Please contribute to the community by writing an editorial if you've solved the problem.") @@ -496,12 +495,12 @@ def editorials(): @auth.requires_login() def delete_editorial(): if len(request.args) < 1: - raise(HTTP(400, "Bad request")) + raise HTTP(400, "Bad request") return ue_record = db.user_editorials(int(request.args[0])) if ue_record is None or session.user_id != ue_record.user_id: - raise(HTTP(400, "Bad request")) + raise HTTP(400, "Bad request") return if ue_record.verification == "accepted": @@ -657,7 +656,7 @@ def upload_to_filesystem(): @auth.requires_login() def admin_editorial_approval(): if session.user_id != 1 or len(request.args) < 2: - raise(HTTP(401, "Why are you here ?")) + raise HTTP(401, "Why are you here ?") return uetable = db.user_editorials @@ -993,7 +992,7 @@ def recommendations(): def update_recommendation_status(): from recommendations.problems import update_recommendation_status - pid = long(request.args[0]) + pid = int(request.args[0]) update_recommendation_status(session.user_id, pid) # ============================================================================== diff --git a/controllers/user.py b/controllers/user.py index dc841bf6..9bd6fb8d 100644 --- a/controllers/user.py +++ b/controllers/user.py @@ -32,7 +32,7 @@ def login_token(): Only accesible to whitelisted Api Calls """ if not utilities.is_apicall(): - raise HTTP(400, u'Invalid API params') + raise HTTP(400, 'Invalid API params') """ @withparameter email and password return {token : ''} if valid credentials @withparameter token returns the new refresh token @@ -272,7 +272,7 @@ def add_custom_friend(): redirect(URL("user", "profile", args=original_handle)) # ID of the custom user - original_id = long(current_row["id"]) + original_id = int(current_row["id"]) # Delete this id as this will be incremented # automatically on insert @@ -327,9 +327,9 @@ def get_graph_data(): graphs = [] for site in current.SITES: lower_site = site.lower() - if graph_data.has_key(lower_site + "_data"): + if lower_site + "_data" in graph_data: graphs.extend(graph_data[lower_site + "_data"]) - graphs = filter(lambda x: x["data"] != {}, graphs) + graphs = [x for x in graphs if x["data"] != {}] data = dict(graphs=graphs) current.REDIS_CLIENT.set(redis_cache_key, @@ -358,10 +358,12 @@ def update_details(): stable = db.submission record = utilities.get_user_records([session.user_id], "id", "id", True) + """" for field in form_fields: if record[field] is None: continue record[field] = record[field].encode("utf-8") + """ # Do not allow to modify stopstalk_handle and email atable.stopstalk_handle.writable = False @@ -461,7 +463,7 @@ def update_friend(): for field in form_fields: if record[field] is None: continue - record[field] = unicode(record[field], "utf-8").encode("utf-8") + record[field] = str(record[field], "utf-8").encode("utf-8") form = SQLFORM(cftable, record, diff --git a/deploy_scripts/update_js_timestamp.py b/deploy_scripts/update_js_timestamp.py index ea0fb735..0e0eba98 100644 --- a/deploy_scripts/update_js_timestamp.py +++ b/deploy_scripts/update_js_timestamp.py @@ -115,10 +115,10 @@ def convert_to_min(filename): files = all_js_css_files + all_image_files - files = map(convert_to_min, files) + files = list(map(convert_to_min, files)) if len(files): current_timestamp = datetime.datetime.now().strftime("%Y%m%d%H%M%S") for filename in files: - print "Updating timestamp for", filename + print("Updating timestamp for", filename) REDIS_CLIENT.set(filename, current_timestamp) diff --git a/models/db.py b/models/db.py index 6a94ccbe..b733911f 100644 --- a/models/db.py +++ b/models/db.py @@ -87,11 +87,10 @@ service = Service() plugins = PluginManager() -all_countries = {u'Canada': u'CA', u'Moldova (Republic of)': u'MD', u'Sao Tome and Principe': u'ST', u'Guinea-Bissau': u'GW', u'United States of America': u'US', u'Lithuania': u'LT', u'Cambodia': u'KH', u'Saint Helena, Ascension and Tristan da Cunha': u'SH', u'Switzerland': u'CH', u'Ethiopia': u'ET', u'Aruba': u'AW', u'Saint Martin (French part)': u'MF', u'Solomon Islands': u'SB', u'Argentina': u'AR', u'Cameroon': u'CM', u'Burkina Faso': u'BF', u'Turkmenistan': u'TM', u'Ghana': u'GH', u'Saudi Arabia': u'SA', u'Rwanda': u'RW', u'Togo': u'TG', u'Japan': u'JP', u'American Samoa': u'AS', u'United States Minor Outlying Islands': u'UM', u'Cocos (Keeling) Islands': u'CC', u'Pitcairn': u'PN', u'Guatemala': u'GT', u'Bosnia and Herzegovina': u'BA', u'Kuwait': u'KW', u'Russian Federation': u'RU', u'Jordan': u'JO', u'Bonaire, Sint Eustatius and Saba': u'BQ', u'Dominica': u'DM', u'Liberia': u'LR', u'Maldives': u'MV', u'Jamaica': u'JM', u'Oman': u'OM', u'Martinique': u'MQ', u'Cabo Verde': u'CV', u'Christmas Island': u'CX', u'French Guiana': u'GF', u'Niue': u'NU', u'Monaco': u'MC', u'Wallis and Futuna': u'WF', u'New Zealand': u'NZ', u'Yemen': u'YE', u'Jersey': u'JE', u'Andorra': u'AD', u'Albania': u'AL', u'Samoa': u'WS', u'Norfolk Island': u'NF', u'United Arab Emirates': u'AE', u'Guam': u'GU', u'India': u'IN', u'Azerbaijan': u'AZ', u'Lesotho': u'LS', u'Saint Vincent and the Grenadines': u'VC', u'Kenya': u'KE', u'Macao': u'MO', u'Turkey': u'TR', u'Afghanistan': u'AF', u'Virgin Islands (British)': u'VG', u'Bangladesh': u'BD', u'Mauritania': u'MR', u'Congo (Democratic Republic of the)': u'CD', u'Turks and Caicos Islands': u'TC', u'Saint Lucia': u'LC', u'San Marino': u'SM', u'French Polynesia': u'PF', u'France': u'FR', u'Svalbard and Jan Mayen': u'SJ', u'Syrian Arab Republic': u'SY', u'Bermuda': u'BM', u'Slovakia': u'SK', u'Somalia': u'SO', u'Peru': u'PE', u'Swaziland': u'SZ', u'Nauru': u'NR', u'Seychelles': u'SC', u'Norway': u'NO', u'Malawi': u'MW', u'Cook Islands': u'CK', u'Benin': u'BJ', u'Western Sahara': u'EH', u'Cuba': u'CU', u'Montenegro': u'ME', u'Falkland Islands (Malvinas)': u'FK', u'Mayotte': u'YT', u'Heard Island and McDonald Islands': u'HM', u'China': u'CN', u'Armenia': u'AM', u'Timor-Leste': u'TL', u'Dominican Republic': u'DO', u'Bolivia (Plurinational State of)': u'BO', u'Ukraine': u'UA', u'Bahrain': u'BH', u'Tonga': u'TO', u'Finland': u'FI', u'Libya': u'LY', u'Macedonia (the former Yugoslav Republic of)': u'MK', u'Cayman Islands': u'KY', u'Central African Republic': u'CF', u'New Caledonia': u'NC', u'Mauritius': u'MU', u'Tajikistan': u'TJ', u'Liechtenstein': u'LI', u'Australia': u'AU', u'Mali': u'ML', u'Sweden': u'SE', u'Bulgaria': u'BG', u'Palestine, State of': u'PS', u"Korea (Democratic People's Republic of)": u'KP', u'Romania': u'RO', u'Angola': u'AO', u'French Southern Territories': u'TF', u'Chad': u'TD', u'South Africa': u'ZA', u'Tokelau': u'TK', u'Cyprus': u'CY', u'South Georgia and the South Sandwich Islands': u'GS', u'Brunei Darussalam': u'BN', u'Qatar': u'QA', u'Malaysia': u'MY', u'Austria': u'AT', u'Mozambique': u'MZ', u'Uganda': u'UG', u'Hungary': u'HU', u'Niger': u'NE', u'Isle of Man': u'IM', u'Brazil': u'BR', u'Virgin Islands (U.S.)': u'VI', u'Faroe Islands': u'FO', u'Guinea': u'GN', u'Panama': u'PA', u'Guyana': u'GY', u'Costa Rica': u'CR', u'Luxembourg': u'LU', u'Bahamas': u'BS', u'Gibraltar': u'GI', u'Ireland': u'IE', u'Pakistan': u'PK', u'Palau': u'PW', u'Nigeria': u'NG', u'Ecuador': u'EC', u'Czech Republic': u'CZ', u'Viet Nam': u'VN', u'Belarus': u'BY', u'Vanuatu': u'VU', u'Algeria': u'DZ', u'Slovenia': u'SI', u'El Salvador': u'SV', u'Tuvalu': u'TV', u'Saint Pierre and Miquelon': u'PM', u'Iran (Islamic Republic of)': u'IR', u'Marshall Islands': u'MH', u'Chile': u'CL', u'Puerto Rico': u'PR', u'Belgium': u'BE', u'Kiribati': u'KI', u'Haiti': u'HT', u'Belize': u'BZ', u'Hong Kong': u'HK', u'Sierra Leone': u'SL', u'Georgia': u'GE', u"Lao People's Democratic Republic": u'LA', u'Gambia': u'GM', u'Philippines': u'PH', u'Morocco': u'MA', u'Croatia': u'HR', u'Mongolia': u'MN', u'Guernsey': u'GG', u'Thailand': u'TH', u'Namibia': u'NA', u'Grenada': u'GD', u'Taiwan, Province of China': u'TW', u'Aland Islands': u'AX', u'Venezuela (Bolivarian Republic of)': u'VE', u'Iraq': u'IQ', u'Tanzania, United Republic of': u'TZ', u'Portugal': u'PT', u'Estonia': u'EE', u'Uruguay': u'UY', u'Equatorial Guinea': u'GQ', u'Lebanon': u'LB', u'Korea (Republic of)': u'KR', u'Uzbekistan': u'UZ', u'Tunisia': u'TN', u'Djibouti': u'DJ', u'Greenland': u'GL', u'Antigua and Barbuda': u'AG', u'Spain': u'ES', u'Colombia': u'CO', u'Burundi': u'BI', u'Fiji': u'FJ', u'Barbados': u'BB', u'Madagascar': u'MG', u'Italy': u'IT', u'Bhutan': u'BT', u'Sudan': u'SD', u'Nepal': u'NP', u'Malta': u'MT', u'Netherlands': u'NL', u'Northern Mariana Islands': u'MP', u'Suriname': u'SR', u'United Kingdom of Great Britain and Northern Ireland': u'GB', u'Anguilla': u'AI', u'Republic of Kosovo': u'XK', u'Micronesia (Federated States of)': u'FM', u'Holy See': u'VA', u'Israel': u'IL', u'Reunion': u'RE', u'Indonesia': u'ID', u'Iceland': u'IS', u'Zambia': u'ZM', u'Senegal': u'SN', u'Papua New Guinea': u'PG', u'Saint Kitts and Nevis': u'KN', u'Trinidad and Tobago': u'TT', u'Zimbabwe': u'ZW', u'Germany': u'DE', u'Denmark': u'DK', u'Kazakhstan': u'KZ', u'Poland': u'PL', u'Eritrea': u'ER', u'Kyrgyzstan': u'KG', u'Saint Barthelemy': u'BL', u'British Indian Ocean Territory': u'IO', u'Montserrat': u'MS', u'Mexico': u'MX', u'Sri Lanka': u'LK', u'Latvia': u'LV', u'South Sudan': u'SS', u'Curacao': u'CW', u'Guadeloupe': u'GP', u"Cote d'Ivoire": u'CI', u'Honduras': u'HN', u'Myanmar': u'MM', u'Bouvet Island': u'BV', u'Egypt': u'EG', u'Nicaragua': u'NI', u'Singapore': u'SG', u'Serbia': u'RS', u'Botswana': u'BW', u'Antarctica': u'AQ', u'Congo': u'CG', u'Sint Maarten (Dutch part)': u'SX', u'Greece': u'GR', u'Paraguay': u'PY', u'Gabon': u'GA', u'Comoros': u'KM'} -reverse_country_mapping = dict(map(lambda x: (x[1], x[0]), - all_countries.items())) +all_countries = {'Canada': 'CA', 'Moldova (Republic of)': 'MD', 'Sao Tome and Principe': 'ST', 'Guinea-Bissau': 'GW', 'United States of America': 'US', 'Lithuania': 'LT', 'Cambodia': 'KH', 'Saint Helena, Ascension and Tristan da Cunha': 'SH', 'Switzerland': 'CH', 'Ethiopia': 'ET', 'Aruba': 'AW', 'Saint Martin (French part)': 'MF', 'Solomon Islands': 'SB', 'Argentina': 'AR', 'Cameroon': 'CM', 'Burkina Faso': 'BF', 'Turkmenistan': 'TM', 'Ghana': 'GH', 'Saudi Arabia': 'SA', 'Rwanda': 'RW', 'Togo': 'TG', 'Japan': 'JP', 'American Samoa': 'AS', 'United States Minor Outlying Islands': 'UM', 'Cocos (Keeling) Islands': 'CC', 'Pitcairn': 'PN', 'Guatemala': 'GT', 'Bosnia and Herzegovina': 'BA', 'Kuwait': 'KW', 'Russian Federation': 'RU', 'Jordan': 'JO', 'Bonaire, Sint Eustatius and Saba': 'BQ', 'Dominica': 'DM', 'Liberia': 'LR', 'Maldives': 'MV', 'Jamaica': 'JM', 'Oman': 'OM', 'Martinique': 'MQ', 'Cabo Verde': 'CV', 'Christmas Island': 'CX', 'French Guiana': 'GF', 'Niue': 'NU', 'Monaco': 'MC', 'Wallis and Futuna': 'WF', 'New Zealand': 'NZ', 'Yemen': 'YE', 'Jersey': 'JE', 'Andorra': 'AD', 'Albania': 'AL', 'Samoa': 'WS', 'Norfolk Island': 'NF', 'United Arab Emirates': 'AE', 'Guam': 'GU', 'India': 'IN', 'Azerbaijan': 'AZ', 'Lesotho': 'LS', 'Saint Vincent and the Grenadines': 'VC', 'Kenya': 'KE', 'Macao': 'MO', 'Turkey': 'TR', 'Afghanistan': 'AF', 'Virgin Islands (British)': 'VG', 'Bangladesh': 'BD', 'Mauritania': 'MR', 'Congo (Democratic Republic of the)': 'CD', 'Turks and Caicos Islands': 'TC', 'Saint Lucia': 'LC', 'San Marino': 'SM', 'French Polynesia': 'PF', 'France': 'FR', 'Svalbard and Jan Mayen': 'SJ', 'Syrian Arab Republic': 'SY', 'Bermuda': 'BM', 'Slovakia': 'SK', 'Somalia': 'SO', 'Peru': 'PE', 'Swaziland': 'SZ', 'Nauru': 'NR', 'Seychelles': 'SC', 'Norway': 'NO', 'Malawi': 'MW', 'Cook Islands': 'CK', 'Benin': 'BJ', 'Western Sahara': 'EH', 'Cuba': 'CU', 'Montenegro': 'ME', 'Falkland Islands (Malvinas)': 'FK', 'Mayotte': 'YT', 'Heard Island and McDonald Islands': 'HM', 'China': 'CN', 'Armenia': 'AM', 'Timor-Leste': 'TL', 'Dominican Republic': 'DO', 'Bolivia (Plurinational State of)': 'BO', 'Ukraine': 'UA', 'Bahrain': 'BH', 'Tonga': 'TO', 'Finland': 'FI', 'Libya': 'LY', 'Macedonia (the former Yugoslav Republic of)': 'MK', 'Cayman Islands': 'KY', 'Central African Republic': 'CF', 'New Caledonia': 'NC', 'Mauritius': 'MU', 'Tajikistan': 'TJ', 'Liechtenstein': 'LI', 'Australia': 'AU', 'Mali': 'ML', 'Sweden': 'SE', 'Bulgaria': 'BG', 'Palestine, State of': 'PS', "Korea (Democratic People's Republic of)": 'KP', 'Romania': 'RO', 'Angola': 'AO', 'French Southern Territories': 'TF', 'Chad': 'TD', 'South Africa': 'ZA', 'Tokelau': 'TK', 'Cyprus': 'CY', 'South Georgia and the South Sandwich Islands': 'GS', 'Brunei Darussalam': 'BN', 'Qatar': 'QA', 'Malaysia': 'MY', 'Austria': 'AT', 'Mozambique': 'MZ', 'Uganda': 'UG', 'Hungary': 'HU', 'Niger': 'NE', 'Isle of Man': 'IM', 'Brazil': 'BR', 'Virgin Islands (U.S.)': 'VI', 'Faroe Islands': 'FO', 'Guinea': 'GN', 'Panama': 'PA', 'Guyana': 'GY', 'Costa Rica': 'CR', 'Luxembourg': 'LU', 'Bahamas': 'BS', 'Gibraltar': 'GI', 'Ireland': 'IE', 'Pakistan': 'PK', 'Palau': 'PW', 'Nigeria': 'NG', 'Ecuador': 'EC', 'Czech Republic': 'CZ', 'Viet Nam': 'VN', 'Belarus': 'BY', 'Vanuatu': 'VU', 'Algeria': 'DZ', 'Slovenia': 'SI', 'El Salvador': 'SV', 'Tuvalu': 'TV', 'Saint Pierre and Miquelon': 'PM', 'Iran (Islamic Republic of)': 'IR', 'Marshall Islands': 'MH', 'Chile': 'CL', 'Puerto Rico': 'PR', 'Belgium': 'BE', 'Kiribati': 'KI', 'Haiti': 'HT', 'Belize': 'BZ', 'Hong Kong': 'HK', 'Sierra Leone': 'SL', 'Georgia': 'GE', "Lao People's Democratic Republic": 'LA', 'Gambia': 'GM', 'Philippines': 'PH', 'Morocco': 'MA', 'Croatia': 'HR', 'Mongolia': 'MN', 'Guernsey': 'GG', 'Thailand': 'TH', 'Namibia': 'NA', 'Grenada': 'GD', 'Taiwan, Province of China': 'TW', 'Aland Islands': 'AX', 'Venezuela (Bolivarian Republic of)': 'VE', 'Iraq': 'IQ', 'Tanzania, United Republic of': 'TZ', 'Portugal': 'PT', 'Estonia': 'EE', 'Uruguay': 'UY', 'Equatorial Guinea': 'GQ', 'Lebanon': 'LB', 'Korea (Republic of)': 'KR', 'Uzbekistan': 'UZ', 'Tunisia': 'TN', 'Djibouti': 'DJ', 'Greenland': 'GL', 'Antigua and Barbuda': 'AG', 'Spain': 'ES', 'Colombia': 'CO', 'Burundi': 'BI', 'Fiji': 'FJ', 'Barbados': 'BB', 'Madagascar': 'MG', 'Italy': 'IT', 'Bhutan': 'BT', 'Sudan': 'SD', 'Nepal': 'NP', 'Malta': 'MT', 'Netherlands': 'NL', 'Northern Mariana Islands': 'MP', 'Suriname': 'SR', 'United Kingdom of Great Britain and Northern Ireland': 'GB', 'Anguilla': 'AI', 'Republic of Kosovo': 'XK', 'Micronesia (Federated States of)': 'FM', 'Holy See': 'VA', 'Israel': 'IL', 'Reunion': 'RE', 'Indonesia': 'ID', 'Iceland': 'IS', 'Zambia': 'ZM', 'Senegal': 'SN', 'Papua New Guinea': 'PG', 'Saint Kitts and Nevis': 'KN', 'Trinidad and Tobago': 'TT', 'Zimbabwe': 'ZW', 'Germany': 'DE', 'Denmark': 'DK', 'Kazakhstan': 'KZ', 'Poland': 'PL', 'Eritrea': 'ER', 'Kyrgyzstan': 'KG', 'Saint Barthelemy': 'BL', 'British Indian Ocean Territory': 'IO', 'Montserrat': 'MS', 'Mexico': 'MX', 'Sri Lanka': 'LK', 'Latvia': 'LV', 'South Sudan': 'SS', 'Curacao': 'CW', 'Guadeloupe': 'GP', "Cote d'Ivoire": 'CI', 'Honduras': 'HN', 'Myanmar': 'MM', 'Bouvet Island': 'BV', 'Egypt': 'EG', 'Nicaragua': 'NI', 'Singapore': 'SG', 'Serbia': 'RS', 'Botswana': 'BW', 'Antarctica': 'AQ', 'Congo': 'CG', 'Sint Maarten (Dutch part)': 'SX', 'Greece': 'GR', 'Paraguay': 'PY', 'Gabon': 'GA', 'Comoros': 'KM'} +reverse_country_mapping = dict([(x[1], x[0]) for x in list(all_countries.items())]) current.all_countries = all_countries -country_name_list = all_countries.keys() +country_name_list = list(all_countries.keys()) country_name_list.sort() # To disable writing of translations @@ -276,7 +275,7 @@ def validate_email(email): return False if email.__contains__("@iiita.ac.in"): - return True + return True import requests @@ -358,7 +357,7 @@ def _valid_spoj_handle(handle): return False handle_fields = ["stopstalk"] - handle_fields.extend([x.lower() for x in current.SITES.keys()]) + handle_fields.extend([x.lower() for x in list(current.SITES.keys())]) # 1, 6 and 11 for field in handle_fields: diff --git a/modules/dashboard_cards.py b/modules/dashboard_cards.py index e8d24095..780e5966 100644 --- a/modules/dashboard_cards.py +++ b/modules/dashboard_cards.py @@ -21,9 +21,9 @@ """ import json -import utilities +from . import utilities import datetime -from stopstalk_constants import * +from .stopstalk_constants import * from gluon import current, IMG, DIV, TABLE, THEAD, HR, H5, B, \ TBODY, TR, TH, TD, A, SPAN, INPUT, I, P, FORM, \ @@ -390,7 +390,7 @@ def should_show(self): final_hash[row[0]][row[1]] = int(row[2]) final_hash[row[0]]["total"] += int(row[2]) - final_data = sorted(final_hash.items(), + final_data = sorted(list(final_hash.items()), key=lambda x: x[1]["total"], reverse=True)[:3] else: @@ -666,7 +666,7 @@ def __init__(self, user_id): def get_html(self): trending_problems = self.get_data() - from trending_utilities import draw_trending_table + from .trending_utilities import draw_trending_table trending_table = draw_trending_table(trending_problems, None, self.user_id) diff --git a/modules/health_metrics.py b/modules/health_metrics.py index d76318ca..ebc3ef9c 100644 --- a/modules/health_metrics.py +++ b/modules/health_metrics.py @@ -76,7 +76,7 @@ def flush_keys(self): if self.log_to_redis is False: return - [self.redis_client.delete(key) for key in self.redis_keys.values()] + [self.redis_client.delete(key) for key in list(self.redis_keys.values())] # -------------------------------------------------------------------------- def increment_count(self, type_of_key, increment_amount=1): diff --git a/modules/sites/__init__.py b/modules/sites/__init__.py index e68aece1..2b6d8a7b 100644 --- a/modules/sites/__init__.py +++ b/modules/sites/__init__.py @@ -20,11 +20,11 @@ THE SOFTWARE. """ -import codechef -import codeforces -import spoj -import hackerearth -import hackerrank -import uva -import timus -import atcoder +from . import codechef +from . import codeforces +from . import spoj +from . import hackerearth +from . import hackerrank +from . import uva +from . import timus +from . import atcoder diff --git a/modules/sites/atcoder.py b/modules/sites/atcoder.py index 85ca826e..ed17a99a 100644 --- a/modules/sites/atcoder.py +++ b/modules/sites/atcoder.py @@ -214,7 +214,7 @@ def get_submissions(self, last_retrieved, try: problem_name = atcoder_problem_dict[submission["problem_id"]] except: - print "Atcoder server failure for", submission + print("Atcoder server failure for", submission) return SERVER_FAILURE problem_link = "%scontests/%s/tasks/%s" % (current.SITES["AtCoder"], diff --git a/modules/sites/codechef.py b/modules/sites/codechef.py index 44539809..f93a5049 100644 --- a/modules/sites/codechef.py +++ b/modules/sites/codechef.py @@ -20,7 +20,7 @@ THE SOFTWARE. """ -from urllib import urlencode +from urllib.parse import urlencode from stopstalk_constants import * from .init import * @@ -266,7 +266,7 @@ def __get_access_token(self): ex=TTL_TIME) return access_token else: - print "Error requesting CodeChef API for access token" + print("Error requesting CodeChef API for access token") return # -------------------------------------------------------------------------- @@ -287,7 +287,7 @@ def __process_year_submissions(self, year, last_retrieved): SUBMISSION_REQUEST_PARAMS["year"] = year SUBMISSION_REQUEST_PARAMS["offset"] = 0 submissions = [] - for _ in xrange(1000): + for _ in range(1000): response = get_request("%s/submissions" % CODECHEF_API_URL, headers={"Authorization": "Bearer %s" % self.access_token}, params=SUBMISSION_REQUEST_PARAMS, @@ -323,7 +323,7 @@ def __process_year_submissions(self, year, last_retrieved): elif status == "RTE": status = "RE" else: - print "*****************", status + print("*****************", status) status = "OTH" language = submission["language"] view_link = "%s/viewsolution/%d" % (CODECHEF_SITE_URL, @@ -373,7 +373,7 @@ def get_submissions(self, last_retrieved, is_daily_retrieval): self.access_token = self.__get_access_token() if self.access_token is None: - print "Access token found none" + print("Access token found none") return SERVER_FAILURE # Test for invalid handles @@ -385,7 +385,7 @@ def get_submissions(self, last_retrieved, is_daily_retrieval): SUBMISSION_REQUEST_PARAMS["username"] = self.handle self.submissions = [] - for year in xrange(current_year, start_year - 1, -1): + for year in range(current_year, start_year - 1, -1): # Years processed in the reverse order to break out when # last_retrieved time_stamp is matched diff --git a/modules/sites/codeforces.py b/modules/sites/codeforces.py index c5720182..3ed264b6 100644 --- a/modules/sites/codeforces.py +++ b/modules/sites/codeforces.py @@ -253,7 +253,7 @@ def rating_graph_data(handle): try: tbody = soup.find("table", class_="tablesorter").find("tbody") except AttributeError: - print "AttributeError for Codeforces handle: " + handle + print("AttributeError for Codeforces handle: " + handle) return SERVER_FAILURE contest_data = {} @@ -333,13 +333,13 @@ def get_submissions(self, last_retrieved, is_daily_retrieval): if curr <= last_retrieved: return submissions - if row.has_key("contestId") == False: + if ("contestId" in row) == False: try: problem_link = "http://www.codeforces.com/problemsets/" + \ row["problem"]["problemsetName"] + \ "/problem/99999/" + str(row["problem"]["index"]) except Exception as e: - print "Unable to create problem_link for", row + print("Unable to create problem_link for", row) continue else: arg = "problem/" @@ -388,7 +388,7 @@ def get_submissions(self, last_retrieved, is_daily_retrieval): # View code link if problem_link.__contains__("gymProblem") or \ - row.has_key("contestId") == False: + ("contestId" in row) == False: view_link = "" else: view_link = "http://www.codeforces.com/contest/" + \ diff --git a/modules/sites/hackerearth.py b/modules/sites/hackerearth.py index 02fab140..c43cbb87 100644 --- a/modules/sites/hackerearth.py +++ b/modules/sites/hackerearth.py @@ -120,7 +120,7 @@ def get_editorial_link(problem_link, soup, response): else: return problem_link + "editorial/" except Exception as e: - print "Exception in HackerEarth Editorial retrieval", problem_link, str(e) + print("Exception in HackerEarth Editorial retrieval", problem_link, str(e)) return editorial_link # ------------------------------------------------------------------------- @@ -146,7 +146,7 @@ def get_problem_setters(problem_link, should_update): author = BeautifulSoup(response.text, "lxml").find_all("a")[0]["href"].split("@")[1] except: - print "HackerEarth Author is none", problem_link, url + print("HackerEarth Author is none", problem_link, url) author = None return author if author is None else [author] @@ -242,7 +242,7 @@ def get_submissions(self, last_retrieved, is_daily_retrieval): headers = Profile.get_headers(response, url) submissions = [] - for page_number in xrange(1, 1000): + for page_number in range(1, 1000): url = "https://www.hackerearth.com/AJAX/feed/newsfeed/submission/user/" + handle + "/?page=" + str(page_number) tmp = get_request(url, diff --git a/modules/sites/hackerrank.py b/modules/sites/hackerrank.py index 6defbf76..c63696bc 100644 --- a/modules/sites/hackerrank.py +++ b/modules/sites/hackerrank.py @@ -202,7 +202,7 @@ def get_submissions(self, last_retrieved, is_daily_retrieval): submissions = [] next_cursor = "null" - for i in xrange(1000): + for i in range(1000): request_params["cursor"] = next_cursor response = get_request(url, diff --git a/modules/sites/init.py b/modules/sites/init.py index 6292f562..c8c3e3cc 100644 --- a/modules/sites/init.py +++ b/modules/sites/init.py @@ -92,7 +92,7 @@ def get_request(url, cookies=cookies, verify=False) except Exception as e: - print e, url + print(e, url) request_metric_handler.increment_count("failure", 1) log_time_things(request_time_metric_handler, start_request_time, site) return SERVER_FAILURE @@ -111,7 +111,7 @@ def get_request(url, request_metric_handler.increment_count("failure", 1) # For CodeChef API rate limiting, don't retry # 401 is raised when a newer access token is generated - print response.status_code + print(response.status_code) if url.__contains__("codechef.com") and response.status_code == 401: current.REDIS_CLIENT.delete("codechef_access_token") return OTHER_FAILURE diff --git a/modules/sites/spoj.py b/modules/sites/spoj.py index ca17c386..190c6339 100644 --- a/modules/sites/spoj.py +++ b/modules/sites/spoj.py @@ -66,7 +66,7 @@ def get_problem_setters(soup, problem_link): author = soup.find("table", id="problem-meta").find_all("a")[0]["href"].replace("/users/", "") except: - print "Error occurred while getting problem setters", problem_link + print("Error occurred while getting problem setters", problem_link) return None return None if author is None else [author] @@ -156,7 +156,7 @@ def old_submission_retrieval(self, last_retrieved): previd = -1 currid = 0 - for i in xrange(1000): + for i in range(1000): flag = 0 url = current.SITES[self.site] + "status/" + \ self.handle + \ @@ -300,18 +300,18 @@ def _lambda_result_map(submission): result = response.json() semaphore.acquire(timeout=5) - self.submissions.extend(map(_lambda_result_map, - result)) + self.submissions.extend(list(map(_lambda_result_map, + result))) semaphore.release() except Exception as e: - print "Spoj lambda request error %s %s %s" % (problem_slug, + print("Spoj lambda request error %s %s %s" % (problem_slug, self.handle, - e) + e)) self.retrieval_failure = SERVER_FAILURE all_problem_names = _get_problem_names(response_text) - for i in xrange(0, len(all_problem_names), AWS_LAMBDA_CONCURRENCY): + for i in range(0, len(all_problem_names), AWS_LAMBDA_CONCURRENCY): # Parallely send requests of batch size AWS_LAMBDA_CONCURRENCY # If the previous batch failed, don't process any further diff --git a/modules/sites/timus.py b/modules/sites/timus.py index b4ae6cbe..f5871969 100644 --- a/modules/sites/timus.py +++ b/modules/sites/timus.py @@ -149,7 +149,7 @@ def get_submissions(self, last_retrieved, is_daily_retrieval): submissions = [] from_id = None count = 1000 - for i in xrange(1000): + for i in range(1000): initial_url = acm_link + "status.aspx?author=" + timus_id + "&count=" + str(count) if from_id is None: url = initial_url diff --git a/modules/sites/uva.py b/modules/sites/uva.py index 2653f2e5..a60fc70d 100644 --- a/modules/sites/uva.py +++ b/modules/sites/uva.py @@ -116,7 +116,7 @@ def get_submissions(self, last_retrieved, uva_problem_dict, is_daily_retrieval): try: problem_name = uva_problem_dict[row[1]] except KeyError: - print "Problem name not found in uva problem list: " + str(row[1]) + print("Problem name not found in uva problem list: " + str(row[1])) continue curr_date_timestamp = str(datetime.datetime.fromtimestamp(row[4])) curr = time.strptime(curr_date_timestamp, "%Y-%m-%d %H:%M:%S") @@ -125,7 +125,7 @@ def get_submissions(self, last_retrieved, uva_problem_dict, is_daily_retrieval): # Problem status status = row[2] - if submission_statuses.has_key(status): + if status in submission_statuses: submission_status = submission_statuses[status] else: submission_status = "OTH" @@ -137,7 +137,7 @@ def get_submissions(self, last_retrieved, uva_problem_dict, is_daily_retrieval): points = "0" if row[5] not in languages: - print "****************** Language: " + str(row[5]) + " not found ******************" + print("****************** Language: " + str(row[5]) + " not found ******************") continue submissions.append((curr_date_timestamp, diff --git a/modules/trending_utilities.py b/modules/trending_utilities.py index e455268c..57b18dfa 100644 --- a/modules/trending_utilities.py +++ b/modules/trending_utilities.py @@ -20,7 +20,7 @@ THE SOFTWARE. """ -from utilities import * +from .utilities import * # ---------------------------------------------------------------------------- def render_trending_table(caption, problems, column_name, user_id): @@ -97,7 +97,7 @@ def get_trending_problem_list(submissions_list): else: pdict["custom_users"].add(cid) - trending_problems = sorted(problems_dict.items(), + trending_problems = sorted(list(problems_dict.items()), key=custom_compare, reverse=True) diff --git a/modules/utilities.py b/modules/utilities.py index ebdbfbbb..7f0e61a7 100644 --- a/modules/utilities.py +++ b/modules/utilities.py @@ -27,13 +27,13 @@ from boto3 import client from socket import gethostname from requests.exceptions import ConnectionError -from health_metrics import MetricHandler +from .health_metrics import MetricHandler from gluon import current, IMG, DIV, TABLE, THEAD, HR, H5, \ TBODY, TR, TH, TD, A, SPAN, INPUT, I, \ TEXTAREA, SELECT, OPTION, URL, BUTTON, TAG from gluon.storage import Storage -from stopstalk_constants import * -from influxdb_wrapper import get_series_helper +from .stopstalk_constants import * +from .influxdb_wrapper import get_series_helper # ----------------------------------------------------------------------------- def is_apicall(): @@ -106,7 +106,7 @@ def get_reminder_button(contest): scheme="https", host="calendar.google.com", args=["0", "r", "eventedit"], - vars={"text": "Contest at " + contest["site"] + ": " + contest["name"], + vars={"text": "Contest at " + str(contest["site"]) + ": " + str(contest["name"]), "dates": "%s/%s" % (contest["start_time"].strftime("%Y%m%dT%H%M00"), contest["end_time"].strftime("%Y%m%dT%H%M00")), "ctz": "Asia/Kolkata", @@ -181,7 +181,7 @@ def push_influx_data(measurement, points, app_name="cron"): SeriesHelperClass.commit() except ConnectionError: - print "Can't connect to influxdb" + print("Can't connect to influxdb") return # ----------------------------------------------------------------------------- @@ -274,7 +274,10 @@ def pick_a_problem(user_id, custom=False, **args): query &= ptable.id.belongs(pids) record = db(query).select(ptable.id, orderby="").first() - return record.id + if record is not None: + return record.id + else: + return 0 # ------------------------------------------------------------------------------ def get_user_record_cache_key(user_id): @@ -352,7 +355,7 @@ def _get_result_key(user_details): records = db(atable.id.belongs(to_be_fetched)).select() records = dict([x.id, x.as_json()] for x in records) - for user_id in records.keys(): + for user_id in list(records.keys()): redis_key = get_user_record_cache_key(user_id) val = Storage(json.loads(records[user_id])) current.REDIS_CLIENT.set(redis_key, records[user_id], @@ -360,7 +363,7 @@ def _get_result_key(user_details): result[_get_result_key(val)] = val if just_one_record: - return result.values()[0] if len(result) else None + return list(result.values())[0] if len(result) else None else: return result @@ -417,7 +420,7 @@ def _merge_user_ids(original_user_ids, duplicate_user_ids): duplicate_user_ids = "" final_list = list(set(original_user_ids.split(",")) .union(set(duplicate_user_ids.split(",")))) - return ",".join(filter(lambda x: x != "", final_list)) + return ",".join([x for x in final_list if x != ""]) db = current.db ptable = db.problem @@ -430,28 +433,28 @@ def _merge_user_ids(original_user_ids, duplicate_user_ids): duplicate_row = ptable(duplicate_id) # Editorial link ----------------------------------------------------------- - print "---------------------" - print original_row.editorial_link, duplicate_row.editorial_link + print("---------------------") + print(original_row.editorial_link, duplicate_row.editorial_link) if original_row.editorial_link in ["", None] and \ duplicate_row.editorial_link not in ["", None]: original_row.update({"editorial_link": duplicate_row.editorial_link}) - print original_row.editorial_link + print(original_row.editorial_link) # Problem tag -------------------------------------------------------------- - print "---------------------" + print("---------------------") original_tags = eval(original_row.tags) if original_row.tags != "['-']" else [] - print "original_tags", original_tags + print("original_tags", original_tags) duplicate_tags = eval(duplicate_row.tags) if duplicate_row.tags != "['-']" else [] - print "duplicate_tags", duplicate_tags + print("duplicate_tags", duplicate_tags) original_tags = list(set(original_tags).union(set(duplicate_tags))) if len(original_tags) != 0: original_row.update({"tags": str(original_tags)}) - print "final_tags", original_tags + print("final_tags", original_tags) # Submission table --------------------------------------------------------- - print "---------------------" + print("---------------------") updated = db(stable.problem_id == duplicate_id).update(problem_id=original_id) - print "Updated %d submission records" % updated + print("Updated %d submission records" % updated) # Problem user_ids --------------------------------------------------------- original_row.update({ @@ -467,10 +470,10 @@ def _merge_user_ids(original_user_ids, duplicate_user_ids): # total_submissions, solved_submissions ------------------------------------ srows = db(stable.problem_id == original_id).select(stable.status) - accepted = len(filter(lambda x: x["status"] == "AC", srows)) - print "---------------------" - print original_row.solved_submissions, original_row.total_submissions - print "accepted", accepted, "total_submissions", len(srows) + accepted = len([x for x in srows if x["status"] == "AC"]) + print("---------------------") + print(original_row.solved_submissions, original_row.total_submissions) + print("accepted", accepted, "total_submissions", len(srows)) original_row.update({"solved_submissions": accepted, "total_submissions": len(srows)}) @@ -521,7 +524,7 @@ def get_solved_problems(user_id, custom=False): return None def _settify_return_value(data): - return map(lambda x: set(x), data) + return [set(x) for x in data] db = current.db stable = db.submission @@ -795,7 +798,7 @@ def urltosite(url): @param url (String): Site URL @return url (String): Site """ - import sites + from . import sites for site in current.SITES: if getattr(sites, site.lower()).Profile.is_valid_url(url): return site.lower() @@ -1070,8 +1073,7 @@ def _populate_rating(current_rating_parts, date): curr_day_streak=curr_day_streak, max_day_streak=max_day_streak, solved_counts=sites_solved_count, - status_percentages=map(lambda x: (x[1], x[0]), - status_percentages.items()), + status_percentages=[(x[1], x[0]) for x in list(status_percentages.items())], site_accuracies=site_accuracies, solved_problems_count=len(solved_problem_ids), total_problems_count=len(all_attempted_pids), @@ -1102,7 +1104,7 @@ def get_problems_authored_by(stopstalk_handle): if handle: site_to_handle[site.lower()] = handle - records = db(pstable.handle.belongs(site_to_handle.values())).select() + records = db(pstable.handle.belongs(list(site_to_handle.values()))).select() for record in records: problem_record = ptable(record.problem_id) site = urltosite(problem_record.link) @@ -1422,7 +1424,7 @@ def get_profile_url(site, handle): @return (String): URL of the user profile on the site """ - if handle == "": + if handle == "" or handle is None: return "NA" site = get_actual_site(site) diff --git a/private/extras/country.py b/private/extras/country.py index 5e8aa248..8727c29e 100644 --- a/private/extras/country.py +++ b/private/extras/country.py @@ -17,12 +17,12 @@ thislist += [i["long_name"], i["short_name"]] break if len(thislist) == 3: - print thislist + print(thislist) writer.writerow(thislist) else: - print institute, "skipped" + print(institute, "skipped") skipped.append(institute) except: - print institute, "skipped" + print(institute, "skipped") skipped.append(institute) - print skipped + print(skipped) diff --git a/private/scripts/alerts.py b/private/scripts/alerts.py index e3ce6232..d0540e8a 100644 --- a/private/scripts/alerts.py +++ b/private/scripts/alerts.py @@ -39,12 +39,12 @@ def prettify_dict(d): for site in sites_dict: if sites_dict[site] >= 10: - print requests.post("https://api.pushover.net/1/messages.json", + print(requests.post("https://api.pushover.net/1/messages.json", data={"token": current.pushover_api_token, "user": current.pushover_user_token, "message": prettify_dict(sites_dict), "title": "Site down", - "priority": 1}).json() + "priority": 1}).json()) break -print str(datetime.datetime.now()), prettify_dict(sites_dict).replace("\n", " | ") +print(str(datetime.datetime.now()), prettify_dict(sites_dict).replace("\n", " | ")) diff --git a/private/scripts/analysis.py b/private/scripts/analysis.py index 289ea007..2e0c0764 100644 --- a/private/scripts/analysis.py +++ b/private/scripts/analysis.py @@ -38,7 +38,7 @@ suggested_tags = db(sttable).select() for row in suggested_tags: - if new_tags.has_key(row.problem_id): + if row.problem_id in new_tags: new_tags[row.problem_id].add(tags[row.tag_id]) else: new_tags[row.problem_id] = set([tags[row.tag_id]]) @@ -57,6 +57,6 @@ for plink in problem_links: try: - print new_tags[plinktoid[plink]] + print(new_tags[plinktoid[plink]]) except KeyError: - print [] + print([]) diff --git a/private/scripts/custom_deploy_script.py b/private/scripts/custom_deploy_script.py index 201112d6..87abb57c 100644 --- a/private/scripts/custom_deploy_script.py +++ b/private/scripts/custom_deploy_script.py @@ -33,7 +33,7 @@ def update_handles(table): update_params["atcoder_lr"] = current.INITIAL_DATE if len(update_params) > 0: - print row.stopstalk_handle, update_params + print(row.stopstalk_handle, update_params) row.update_record(**update_params) diff --git a/private/scripts/extras/backfill_problem_id.py b/private/scripts/extras/backfill_problem_id.py index 8aaccdad..7128efcf 100644 --- a/private/scripts/extras/backfill_problem_id.py +++ b/private/scripts/extras/backfill_problem_id.py @@ -28,9 +28,9 @@ plink_to_id = dict([(x.link, x.id) for x in links]) BATCH_SIZE = 25000 -for i in xrange(10000): +for i in range(10000): rows = db(stable).select(limitby=(i * BATCH_SIZE, (i + 1) * BATCH_SIZE)) - print rows.first().id, rows.last().id, + print(rows.first().id, rows.last().id, end=' ') updated = 0 for srecord in rows: if srecord.problem_id is None and \ @@ -40,7 +40,7 @@ if updated > 0: db.commit() time.sleep(0.1) - print "updated", updated + print("updated", updated) else: - print "no updates" + print("no updates") diff --git a/private/scripts/extras/benchmark_rating.py b/private/scripts/extras/benchmark_rating.py index ca0542f4..bc98bcfb 100644 --- a/private/scripts/extras/benchmark_rating.py +++ b/private/scripts/extras/benchmark_rating.py @@ -29,7 +29,7 @@ accuracy_list = [] last_id = db(atable).select(orderby=~atable.id).first().id -for i in xrange(1, last_id): +for i in range(1, last_id): solved, unsolved = utilities.get_solved_problems(i) solved = len(solved) unsolved = len(unsolved) @@ -42,12 +42,12 @@ attempted_list.append(unsolved) solved_list.append(solved) accuracy_list.append(accuracy) - print i, solved, unsolved, accuracy + print(i, solved, unsolved, accuracy) -print "_______________________________" -print attempted_list -print "_______________________________" -print solved_list -print "_______________________________" -print accuracy_list -print "_______________________________" +print("_______________________________") +print(attempted_list) +print("_______________________________") +print(solved_list) +print("_______________________________") +print(accuracy_list) +print("_______________________________") diff --git a/private/scripts/extras/cleanup-duplicates.py b/private/scripts/extras/cleanup-duplicates.py index c538acbb..3af858ef 100644 --- a/private/scripts/extras/cleanup-duplicates.py +++ b/private/scripts/extras/cleanup-duplicates.py @@ -32,7 +32,7 @@ plink = row[0] pnames = row[1].strip(",").split(",,") pids = row[2].strip(",").split(",,") - print "_____________________________" - print plink - print ptable(int(pids[0])).solved_submissions - print ptable(int(pids[1])).solved_submissions + print("_____________________________") + print(plink) + print(ptable(int(pids[0])).solved_submissions) + print(ptable(int(pids[1])).solved_submissions) diff --git a/private/scripts/extras/codechef_404.py b/private/scripts/extras/codechef_404.py index e5104eca..9062fe5c 100644 --- a/private/scripts/extras/codechef_404.py +++ b/private/scripts/extras/codechef_404.py @@ -32,7 +32,7 @@ def check_valid(handle): # Test for invalid handles while True: response = requests.get(domain_url + "users/" + handle) - print response.status_code, + print(response.status_code, end=' ') if response.status_code == 200: break @@ -57,21 +57,21 @@ def check_valid(handle): per_day_change="0.0") for row in rows: - print "{", + print("{", end=' ') if check_valid(row.handle): - print row.handle + " VALID", + print(row.handle + " VALID", end=' ') query = (atable.codechef_handle == row.handle) & \ (atable.registration_key == "") users = db(query).select() for user in users: - print user.stopstalk_handle + " UPDATED", + print(user.stopstalk_handle + " UPDATED", end=' ') user.update_record(**update_params) custom_users = db(cftable.codechef_handle == row.handle).select() for custom_user in custom_users: - print custom_user.stopstalk_handle + " CUS UPDATED", + print(custom_user.stopstalk_handle + " CUS UPDATED", end=' ') custom_user.update_record(**update_params) row.delete_record() else: - print row.handle + " INVALID", - print "}" + print(row.handle + " INVALID", end=' ') + print("}") diff --git a/private/scripts/extras/codechef_graph.py b/private/scripts/extras/codechef_graph.py index d26d5b43..39cf669b 100644 --- a/private/scripts/extras/codechef_graph.py +++ b/private/scripts/extras/codechef_graph.py @@ -47,14 +47,13 @@ "Nov": ["November", "NOV"], "Dec": ["December", "DEC"]} -long_ratings, long_months, short_ratings, short_months = map(lambda x: eval(x), - data[:8][1::2]) +long_ratings, long_months, short_ratings, short_months = [eval(x) for x in data[:8][1::2]] def zero_pad(string): return "0" + string if len(string) == 1 else string long_contest_data = {} -for i in xrange(len(long_ratings)): +for i in range(len(long_ratings)): month, year = long_months[i].split("/") year = zero_pad(year) time_stamp = str(datetime.strptime(month + " " + year, "%b %y")) @@ -69,7 +68,7 @@ def zero_pad(string): contest_iterator = -1 flag = False -for i in xrange(len(short_ratings)): +for i in range(len(short_ratings)): month, year = short_months[i].split("/") year = zero_pad(year) time_stamp = str(datetime.strptime(month + " " + year, "%b %y")) @@ -95,4 +94,4 @@ def zero_pad(string): "graph_data": short_contest_data}] for graph in codechef_graphs: - print graph + print(graph) diff --git a/private/scripts/extras/codechef_merge_duplicates.py b/private/scripts/extras/codechef_merge_duplicates.py index 3bef9f6a..1d08ab90 100644 --- a/private/scripts/extras/codechef_merge_duplicates.py +++ b/private/scripts/extras/codechef_merge_duplicates.py @@ -34,7 +34,7 @@ HAVING COUNT(*) > 1; """) -print "Evaluating", len(result), "duplicate records" +print("Evaluating", len(result), "duplicate records") for row in result: @@ -70,12 +70,12 @@ if final_problem_id is not None: for duplicate_id in duplicates: - print problem_records[duplicate_id].link, "-->", final_problem_link + print(problem_records[duplicate_id].link, "-->", final_problem_link) utilities.merge_duplicate_problems(final_problem_id, duplicate_id) else: - print problem_ids, "no original found" + print(problem_ids, "no original found") time.sleep(1) - print "******************************" + print("******************************") diff --git a/private/scripts/extras/codechef_token_monitor.py b/private/scripts/extras/codechef_token_monitor.py index 04d5965a..09276194 100644 --- a/private/scripts/extras/codechef_token_monitor.py +++ b/private/scripts/extras/codechef_token_monitor.py @@ -25,5 +25,5 @@ redis_key = "codechef_access_token" while True: - print str(datetime.datetime.now()), current.REDIS_CLIENT.get(redis_key), current.REDIS_CLIENT.ttl(redis_key) + print(str(datetime.datetime.now()), current.REDIS_CLIENT.get(redis_key), current.REDIS_CLIENT.ttl(redis_key)) time.sleep(1) diff --git a/private/scripts/extras/codeforces_graph.py b/private/scripts/extras/codeforces_graph.py index 734f8331..fe21ba23 100644 --- a/private/scripts/extras/codeforces_graph.py +++ b/private/scripts/extras/codeforces_graph.py @@ -60,4 +60,4 @@ codeforces_graphs = [{"graph_name": "Codeforces", "graph_data": contest_data}] for graph in codeforces_graphs: - print graph + print(graph) diff --git a/private/scripts/extras/compute_rating_graph.py b/private/scripts/extras/compute_rating_graph.py index f4ca0325..c16c6e08 100644 --- a/private/scripts/extras/compute_rating_graph.py +++ b/private/scripts/extras/compute_rating_graph.py @@ -51,23 +51,23 @@ def compute_prev_day_rating(date): (total_submissions - solved) * 15 + \ curr_per_day * 8000 #per_day * 2000 - print "Previous date:", str(date) - print "#Solved:", solved - print "Total Submissions:", total_submissions - print "Current streak:", curr_streak - print "Maximum streak:", max_streak - print "curr_per_day:", curr_per_day - print "Rating: ", rating - print "*****************************************************" + print("Previous date:", str(date)) + print("#Solved:", solved) + print("Total Submissions:", total_submissions) + print("Current streak:", curr_streak) + print("Maximum streak:", max_streak) + print("curr_per_day:", curr_per_day) + print("Rating: ", rating) + print("*****************************************************") final_rating[str(date)] = rating for row in rows: curr_date = row["time_stamp"].date() number_of_dates = (curr_date - prev_date).days - for cnt in xrange(number_of_dates): + for cnt in range(number_of_dates): compute_prev_day_rating(prev_date + datetime.timedelta(days=cnt)) - print "____________________", row.time_stamp, row.problem_link, row.status, "____________________________" + print("____________________", row.time_stamp, row.problem_link, row.status, "____________________________") if prev_date != curr_date: if prev_date is not None and (curr_date - prev_date).days == 1: curr_streak += 1 @@ -83,8 +83,8 @@ def compute_prev_day_rating(date): prev_date = curr_date number_of_dates = (datetime.datetime.now().date() - prev_date).days -for cnt in xrange(number_of_dates): +for cnt in range(number_of_dates): compute_prev_day_rating(prev_date + datetime.timedelta(days=cnt)) # print final_rating for key in final_rating: - print key, final_rating[key] + print(key, final_rating[key]) diff --git a/private/scripts/extras/deploy-uva.py b/private/scripts/extras/deploy-uva.py index c1963409..00147776 100644 --- a/private/scripts/extras/deploy-uva.py +++ b/private/scripts/extras/deploy-uva.py @@ -33,7 +33,7 @@ users = db(atable).select() for record in users: - if uva_handles.has_key(record.id): + if record.id in uva_handles: record.update_record(uva_handle=uva_handles[record.id], uva_lr=current.INITIAL_DATE, rating=0, diff --git a/private/scripts/extras/fix_codechef_links.py b/private/scripts/extras/fix_codechef_links.py index 4d28b9a4..0b990355 100644 --- a/private/scripts/extras/fix_codechef_links.py +++ b/private/scripts/extras/fix_codechef_links.py @@ -31,7 +31,7 @@ new_link = previous_link.replace("codechef.com/problems/", "codechef.com/PRACTICE/problems/") new_link = new_link.replace("http://www", "https://www") record.update_record(problem_link=new_link) - print previous_link, new_link + print(previous_link, new_link) query = (ptable.link.contains("codechef.com/") & \ (ptable.link.contains("codechef.com/problems/") | \ @@ -41,4 +41,4 @@ new_link = previous_link.replace("codechef.com/problems/", "codechef.com/PRACTICE/problems/") new_link = new_link.replace("http://www", "https://www") record.update_record(link=new_link) - print previous_link, new_link + print(previous_link, new_link) diff --git a/private/scripts/extras/fix_codeforces_problem_links.py b/private/scripts/extras/fix_codeforces_problem_links.py index 9a551cbd..642a69ca 100644 --- a/private/scripts/extras/fix_codeforces_problem_links.py +++ b/private/scripts/extras/fix_codeforces_problem_links.py @@ -25,22 +25,22 @@ cftable = db.custom_friend nrtable = db.next_retrieval -user_ids = [6683L, 4097L, 6146L, 4099L, 2052L, 4102L, 4103L, 4104L, 6153L, 4106L, 4107L, 6156L, 6157L, 2062L, 6159L, 2064L, 4114L, 6165L, 6171L, 4125L, 4126L, 2080L, 5808L, 4131L, 6181L, 6151L, 6190L, 2095L, 7176L, 6194L, 4148L, 2101L, 6198L, 2103L, 7829L, 5812L, 6495L, 2058L, 6207L, 6208L, 2114L, 6155L, 6213L, 6214L, 6215L, 12L, 4172L, 2128L, 5816L, 6226L, 2131L, 6158L, 6230L, 6233L, 6686L, 4189L, 4190L, 6239L, 6241L, 4195L, 6244L, 6245L, 3090L, 4207L, 4209L, 114L, 4211L, 4214L, 4215L, 120L, 6265L, 4799L, 4220L, 5652L, 7872L, 2179L, 7873L, 6280L, 4233L, 6378L, 2187L, 2190L, 144L, 7192L, 6294L, 6306L, 4259L, 925L, 7878L, 4263L, 7707L, 6725L, 4270L, 2223L, 4272L, 6321L, 2226L, 2227L, 5150L, 4809L, 4280L, 6330L, 3103L, 2236L, 4285L, 2239L, 4290L, 4811L, 6144L, 7201L, 716L, 203L, 204L, 7099L, 6350L, 2257L, 6354L, 5838L, 4311L, 2267L, 224L, 5840L, 6373L, 6375L, 6376L, 6377L, 7421L, 2283L, 236L, 2287L, 4343L, 6392L, 7987L, 2300L, 4351L, 6401L, 2308L, 4357L, 2312L, 2315L, 6412L, 5239L, 4366L, 6417L, 2464L, 4779L, 388L, 6428L, 3899L, 3120L, 290L, 4389L, 1073L, 6440L, 6443L, 2348L, 5853L, 4401L, 1075L, 3806L, 2358L, 4408L, 6457L, 2364L, 394L, 320L, 4419L, 5857L, 6472L, 6473L, 6353L, 4428L, 6477L, 334L, 6480L, 6482L, 5859L, 2057L, 7225L, 4441L, 4443L, 5861L, 4448L, 6497L, 2402L, 6499L, 6501L, 6545L, 360L, 6695L, 362L, 4460L, 6509L, 4463L, 368L, 6888L, 6515L, 6516L, 6518L, 4472L, 6521L, 4159L, 6529L, 7105L, 6532L, 389L, 5868L, 4490L, 395L, 6541L, 4495L, 401L, 4499L, 7995L, 409L, 6553L, 410L, 6555L, 2458L, 2462L, 6559L, 6560L, 6562L, 2467L, 4519L, 2472L, 5947L, 6572L, 754L, 2742L, 6577L, 6578L, 4531L, 4532L, 4510L, 4995L, 7924L, 444L, 6589L, 448L, 6593L, 451L, 6596L, 2501L, 6600L, 4553L, 6602L, 6604L, 7245L, 4561L, 2515L, 6614L, 4568L, 5744L, 6618L, 476L, 6621L, 6623L, 6224L, 4585L, 5267L, 6225L, 2537L, 2538L, 6635L, 4790L, 6568L, 2546L, 83L, 500L, 2551L, 3631L, 4602L, 6651L, 2556L, 7594L, 6655L, 2560L, 4609L, 6658L, 6659L, 6660L, 2134L, 7191L, 4524L, 4618L, 4620L, 2573L, 1995L, 4525L, 4624L, 4625L, 4626L, 6676L, 533L, 6680L, 6681L, 4635L, 6234L, 4638L, 4640L, 5610L, 3496L, 4645L, 2598L, 4529L, 6697L, 2604L, 4655L, 6704L, 2609L, 6707L, 2142L, 7799L, 4665L, 570L, 4668L, 6722L, 4675L, 4676L, 3510L, 2631L, 6728L, 2633L, 6731L, 6732L, 6734L, 6735L, 5268L, 596L, 6741L, 598L, 6743L, 4696L, 2377L, 6751L, 6752L, 4880L, 2661L, 4710L, 7953L, 1468L, 5950L, 4723L, 4725L, 4729L, 6779L, 6977L, 6784L, 5568L, 642L, 6934L, 6794L, 7523L, 652L, 6798L, 2703L, 6801L, 6804L, 6805L, 6806L, 6807L, 2112L, 666L, 4763L, 6812L, 6813L, 7621L, 6817L, 6818L, 6820L, 678L, 680L, 7524L, 3527L, 4780L, 6829L, 6830L, 7456L, 6833L, 2741L, 6838L, 4791L, 696L, 6843L, 4797L, 6847L, 4456L, 4807L, 2761L, 6859L, 6860L, 2850L, 4814L, 3533L, 6864L, 3570L, 4819L, 4824L, 2779L, 4833L, 4837L, 5412L, 4840L, 5244L, 2794L, 6891L, 2796L, 4845L, 750L, 1832L, 4850L, 4852L, 3198L, 4854L, 4860L, 4864L, 6504L, 6914L, 4867L, 4869L, 6921L, 2827L, 6924L, 784L, 6931L, 2836L, 2838L, 4887L, 3777L, 6939L, 2844L, 4894L, 4895L, 4896L, 6945L, 6946L, 4899L, 6951L, 6952L, 2859L, 812L, 6957L, 4910L, 5256L, 4914L, 6963L, 6965L, 6966L, 4919L, 4920L, 4575L, 5258L, 2878L, 832L, 4929L, 4930L, 835L, 6981L, 4577L, 4936L, 3212L, 4938L, 7723L, 4940L, 4941L, 6990L, 4943L, 6968L, 4963L, 7651L, 852L, 3214L, 3558L, 4951L, 1223L, 2906L, 2747L, 7005L, 2910L, 7803L, 4964L, 7013L, 871L, 4970L, 4972L, 7021L, 878L, 7997L, 7024L, 2929L, 7026L, 2931L, 7599L, 6633L, 7032L, 2937L, 7034L, 7035L, 7037L, 7039L, 1515L, 7044L, 903L, 5000L, 7049L, 5003L, 7052L, 7054L, 2962L, 7060L, 2967L, 920L, 7065L, 5021L, 928L, 7076L, 7665L, 5033L, 1054L, 5037L, 5039L, 5041L, 5042L, 7092L, 2998L, 6644L, 5050L, 5051L, 956L, 6986L, 5055L, 3009L, 7106L, 5060L, 5061L, 5062L, 7114L, 972L, 5282L, 7120L, 5073L, 5077L, 1188L, 3037L, 990L, 7135L, 7136L, 993L, 994L, 995L, 3044L, 3048L, 7676L, 8018L, 7150L, 7151L, 5104L, 7153L, 1010L, 4947L, 3060L, 5109L, 7159L, 1017L, 3583L, 7338L, 5973L, 5121L, 5974L, 3079L, 3080L, 5130L, 5975L, 5132L, 4610L, 3088L, 3089L, 7186L, 7188L, 5141L, 3095L, 5144L, 7195L, 3102L, 1055L, 5968L, 6309L, 3854L, 5157L, 5980L, 7687L, 7212L, 4957L, 1072L, 3592L, 5170L, 5171L, 5172L, 7221L, 3129L, 4264L, 3132L, 5181L, 3135L, 7240L, 7241L, 5197L, 1104L, 7251L, 5204L, 7253L, 1111L, 2675L, 5209L, 2015L, 7271L, 5224L, 6332L, 7274L, 6333L, 7281L, 5234L, 1141L, 3191L, 1145L, 1147L, 1148L, 1150L, 3199L, 7297L, 7298L, 4812L, 5253L, 3206L, 7303L, 7304L, 7306L, 7308L, 5262L, 5263L, 7312L, 5266L, 3219L, 7316L, 5269L, 7320L, 3227L, 5222L, 5281L, 7330L, 5283L, 5284L, 1189L, 7025L, 5289L, 5290L, 2247L, 7341L, 7343L, 7344L, 5297L, 5300L, 5301L, 7350L, 7353L, 5306L, 5307L, 5308L, 7361L, 4641L, 3275L, 1228L, 1230L, 5327L, 5329L, 7379L, 2254L, 5339L, 5669L, 1248L, 891L, 4305L, 1256L, 7401L, 7402L, 7403L, 7404L, 7406L, 5359L, 5364L, 7415L, 5368L, 1273L, 7418L, 7650L, 5674L, 7422L, 4782L, 7425L, 3627L, 5380L, 5381L, 5382L, 7431L, 5387L, 5390L, 7443L, 7444L, 438L, 7446L, 7447L, 7448L, 7450L, 7451L, 5408L, 5409L, 5410L, 219L, 7460L, 7461L, 4657L, 5704L, 5418L, 1324L, 5422L, 5426L, 5430L, 7479L, 5433L, 5841L, 5436L, 2806L, 1954L, 7489L, 3394L, 1347L, 7492L, 5445L, 5447L, 7496L, 3401L, 7498L, 7499L, 7501L, 5454L, 5458L, 7510L, 5464L, 7514L, 4069L, 7516L, 7522L, 5691L, 1380L, 6320L, 7532L, 7533L, 5486L, 5488L, 2280L, 7540L, 7541L, 7543L, 7544L, 5498L, 7743L, 7548L, 5501L, 7550L, 3989L, 7554L, 6379L, 7558L, 1417L, 3466L, 7565L, 7567L, 5520L, 7569L, 5522L, 6723L, 7573L, 1430L, 7748L, 6383L, 6799L, 3486L, 5535L, 1440L, 7588L, 7589L, 7590L, 1723L, 3497L, 1450L, 7751L, 1452L, 7598L, 7069L, 7601L, 3508L, 5558L, 7607L, 7608L, 7611L, 5564L, 5567L, 3520L, 7618L, 7619L, 3525L, 5574L, 5575L, 8028L, 7629L, 7630L, 3536L, 2296L, 7634L, 5587L, 7640L, 2980L, 7645L, 7646L, 3551L, 7648L, 3554L, 5603L, 7652L, 3557L, 7654L, 7656L, 252L, 3562L, 7079L, 3567L, 3569L, 7666L, 7670L, 5623L, 5624L, 7673L, 7675L, 1532L, 3581L, 5631L, 5635L, 3588L, 7685L, 4320L, 1543L, 7688L, 7691L, 7692L, 7693L, 7694L, 4013L, 3602L, 7699L, 7700L, 7701L, 6745L, 7705L, 7706L, 3611L, 8030L, 3614L, 2309L, 7713L, 7714L, 5668L, 7717L, 3624L, 7721L, 3626L, 5675L, 7724L, 3629L, 3677L, 1585L, 1587L, 5685L, 7734L, 5688L, 2029L, 7738L, 1595L, 7741L, 6069L, 3649L, 3652L, 5703L, 3656L, 3658L, 4023L, 3660L, 3661L, 7759L, 7762L, 5715L, 5716L, 7766L, 7767L, 1627L, 7773L, 7775L, 7778L, 5731L, 5169L, 5510L, 5736L, 7788L, 5742L, 5743L, 7792L, 7794L, 5750L, 5751L, 1656L, 7802L, 5755L, 5756L, 3709L, 6943L, 1665L, 3714L, 3715L, 3717L, 7814L, 5767L, 7817L, 3723L, 7820L, 7821L, 7823L, 7827L, 7828L, 3733L, 3734L, 5784L, 3737L, 5786L, 3739L, 4321L, 5789L, 6085L, 7840L, 3745L, 7844L, 7497L, 7846L, 7849L, 7850L, 5803L, 7852L, 7853L, 7854L, 1712L, 7857L, 7858L, 3763L, 7860L, 7861L, 7864L, 5818L, 7867L, 5820L, 5821L, 6773L, 3776L, 5825L, 6091L, 3780L, 5830L, 6433L, 7880L, 3787L, 7885L, 7886L, 7888L, 7889L, 7890L, 7891L, 1763L, 7897L, 7898L, 7900L, 7901L, 7902L, 7905L, 5858L, 7907L, 3812L, 7909L, 5863L, 1768L, 7913L, 5867L, 3820L, 2002L, 7919L, 7920L, 7921L, 7922L, 3878L, 3828L, 332L, 2835L, 2719L, 7933L, 7934L, 7936L, 7939L, 7940L, 7944L, 4396L, 1802L, 1806L, 7951L, 3857L, 7955L, 3862L, 7959L, 7960L, 7962L, 7813L, 3872L, 7969L, 7568L, 7974L, 7976L, 7977L, 1671L, 7980L, 7981L, 7982L, 7986L, 3891L, 7988L, 7459L, 1846L, 1847L, 7992L, 436L, 6111L, 5016L, 3901L, 5449L, 5953L, 310L, 6404L, 5959L, 1865L, 5962L, 5965L, 5773L, 8016L, 8017L, 3922L, 3923L, 3925L, 3926L, 4409L, 8024L, 1883L, 3932L, 5981L, 199L, 5983L, 8032L, 5989L, 8039L, 6460L, 3946L, 3949L, 6000L, 6002L, 5779L, 6005L, 5097L, 6009L, 6012L, 6013L, 3966L, 4757L, 6018L, 7830L, 6024L, 1929L, 6026L, 2986L, 1935L, 323L, 4088L, 7833L, 5793L, 4000L, 1008L, 7430L, 7835L, 1957L, 6054L, 4007L, 8019L, 6059L, 4012L, 3816L, 1968L, 6066L, 6131L, 4021L, 6601L, 6135L, 6074L, 6075L, 6077L, 6079L, 1985L, 6084L, 4037L, 6086L, 6087L, 6088L, 6089L, 4043L, 6097L, 6098L, 7502L, 6104L, 6107L, 6109L, 6110L, 4063L, 5659L, 529L, 6116L, 2021L, 5379L, 2026L, 1650L, 6125L, 2030L, 6129L, 4083L, 2036L, 4085L, 2039L, 6136L, 4090L, 5119L, 2044L, 559L, 2047L] -custom_user_ids = [1029L, 1038L, 1039L, 538L, 1054L, 39L, 1069L, 349L, 561L, 564L, 1077L, 569L, 1082L, 1083L, 1084L, 574L, 779L, 1092L, 81L, 596L, 597L, 606L, 1120L, 1125L, 617L, 1132L, 109L, 622L, 112L, 625L, 626L, 1139L, 789L, 133L, 648L, 650L, 1170L, 1171L, 1172L, 1179L, 1180L, 1181L, 671L, 1184L, 1187L, 676L, 1190L, 691L, 1204L, 1209L, 1215L, 1217L, 707L, 1220L, 197L, 712L, 1226L, 1227L, 716L, 211L, 1238L, 1243L, 222L, 1247L, 226L, 1253L, 1254L, 826L, 243L, 762L, 127L, 1276L, 1279L, 768L, 258L, 1284L, 1219L, 1287L, 1290L, 1291L, 1298L, 1301L, 793L, 1306L, 1307L, 285L, 1310L, 1311L, 1312L, 1317L, 49L, 1320L, 1322L, 306L, 1327L, 818L, 1333L, 1336L, 52L, 314L, 1340L, 1342L, 1343L, 1346L, 1347L, 1348L, 1350L, 1351L, 1357L, 849L, 338L, 1363L, 1364L, 342L, 1367L, 1368L, 1369L, 1373L, 865L, 354L, 869L, 876L, 370L, 1086L, 385L, 763L, 394L, 924L, 934L, 424L, 939L, 944L, 945L, 436L, 1183L, 672L, 970L, 461L, 466L, 471L, 985L, 987L, 84L, 993L, 1275L, 1007L, 505L, 1018L, 1019L] -print len(user_ids) -print len(custom_user_ids) +user_ids = [6683, 4097, 6146, 4099, 2052, 4102, 4103, 4104, 6153, 4106, 4107, 6156, 6157, 2062, 6159, 2064, 4114, 6165, 6171, 4125, 4126, 2080, 5808, 4131, 6181, 6151, 6190, 2095, 7176, 6194, 4148, 2101, 6198, 2103, 7829, 5812, 6495, 2058, 6207, 6208, 2114, 6155, 6213, 6214, 6215, 12, 4172, 2128, 5816, 6226, 2131, 6158, 6230, 6233, 6686, 4189, 4190, 6239, 6241, 4195, 6244, 6245, 3090, 4207, 4209, 114, 4211, 4214, 4215, 120, 6265, 4799, 4220, 5652, 7872, 2179, 7873, 6280, 4233, 6378, 2187, 2190, 144, 7192, 6294, 6306, 4259, 925, 7878, 4263, 7707, 6725, 4270, 2223, 4272, 6321, 2226, 2227, 5150, 4809, 4280, 6330, 3103, 2236, 4285, 2239, 4290, 4811, 6144, 7201, 716, 203, 204, 7099, 6350, 2257, 6354, 5838, 4311, 2267, 224, 5840, 6373, 6375, 6376, 6377, 7421, 2283, 236, 2287, 4343, 6392, 7987, 2300, 4351, 6401, 2308, 4357, 2312, 2315, 6412, 5239, 4366, 6417, 2464, 4779, 388, 6428, 3899, 3120, 290, 4389, 1073, 6440, 6443, 2348, 5853, 4401, 1075, 3806, 2358, 4408, 6457, 2364, 394, 320, 4419, 5857, 6472, 6473, 6353, 4428, 6477, 334, 6480, 6482, 5859, 2057, 7225, 4441, 4443, 5861, 4448, 6497, 2402, 6499, 6501, 6545, 360, 6695, 362, 4460, 6509, 4463, 368, 6888, 6515, 6516, 6518, 4472, 6521, 4159, 6529, 7105, 6532, 389, 5868, 4490, 395, 6541, 4495, 401, 4499, 7995, 409, 6553, 410, 6555, 2458, 2462, 6559, 6560, 6562, 2467, 4519, 2472, 5947, 6572, 754, 2742, 6577, 6578, 4531, 4532, 4510, 4995, 7924, 444, 6589, 448, 6593, 451, 6596, 2501, 6600, 4553, 6602, 6604, 7245, 4561, 2515, 6614, 4568, 5744, 6618, 476, 6621, 6623, 6224, 4585, 5267, 6225, 2537, 2538, 6635, 4790, 6568, 2546, 83, 500, 2551, 3631, 4602, 6651, 2556, 7594, 6655, 2560, 4609, 6658, 6659, 6660, 2134, 7191, 4524, 4618, 4620, 2573, 1995, 4525, 4624, 4625, 4626, 6676, 533, 6680, 6681, 4635, 6234, 4638, 4640, 5610, 3496, 4645, 2598, 4529, 6697, 2604, 4655, 6704, 2609, 6707, 2142, 7799, 4665, 570, 4668, 6722, 4675, 4676, 3510, 2631, 6728, 2633, 6731, 6732, 6734, 6735, 5268, 596, 6741, 598, 6743, 4696, 2377, 6751, 6752, 4880, 2661, 4710, 7953, 1468, 5950, 4723, 4725, 4729, 6779, 6977, 6784, 5568, 642, 6934, 6794, 7523, 652, 6798, 2703, 6801, 6804, 6805, 6806, 6807, 2112, 666, 4763, 6812, 6813, 7621, 6817, 6818, 6820, 678, 680, 7524, 3527, 4780, 6829, 6830, 7456, 6833, 2741, 6838, 4791, 696, 6843, 4797, 6847, 4456, 4807, 2761, 6859, 6860, 2850, 4814, 3533, 6864, 3570, 4819, 4824, 2779, 4833, 4837, 5412, 4840, 5244, 2794, 6891, 2796, 4845, 750, 1832, 4850, 4852, 3198, 4854, 4860, 4864, 6504, 6914, 4867, 4869, 6921, 2827, 6924, 784, 6931, 2836, 2838, 4887, 3777, 6939, 2844, 4894, 4895, 4896, 6945, 6946, 4899, 6951, 6952, 2859, 812, 6957, 4910, 5256, 4914, 6963, 6965, 6966, 4919, 4920, 4575, 5258, 2878, 832, 4929, 4930, 835, 6981, 4577, 4936, 3212, 4938, 7723, 4940, 4941, 6990, 4943, 6968, 4963, 7651, 852, 3214, 3558, 4951, 1223, 2906, 2747, 7005, 2910, 7803, 4964, 7013, 871, 4970, 4972, 7021, 878, 7997, 7024, 2929, 7026, 2931, 7599, 6633, 7032, 2937, 7034, 7035, 7037, 7039, 1515, 7044, 903, 5000, 7049, 5003, 7052, 7054, 2962, 7060, 2967, 920, 7065, 5021, 928, 7076, 7665, 5033, 1054, 5037, 5039, 5041, 5042, 7092, 2998, 6644, 5050, 5051, 956, 6986, 5055, 3009, 7106, 5060, 5061, 5062, 7114, 972, 5282, 7120, 5073, 5077, 1188, 3037, 990, 7135, 7136, 993, 994, 995, 3044, 3048, 7676, 8018, 7150, 7151, 5104, 7153, 1010, 4947, 3060, 5109, 7159, 1017, 3583, 7338, 5973, 5121, 5974, 3079, 3080, 5130, 5975, 5132, 4610, 3088, 3089, 7186, 7188, 5141, 3095, 5144, 7195, 3102, 1055, 5968, 6309, 3854, 5157, 5980, 7687, 7212, 4957, 1072, 3592, 5170, 5171, 5172, 7221, 3129, 4264, 3132, 5181, 3135, 7240, 7241, 5197, 1104, 7251, 5204, 7253, 1111, 2675, 5209, 2015, 7271, 5224, 6332, 7274, 6333, 7281, 5234, 1141, 3191, 1145, 1147, 1148, 1150, 3199, 7297, 7298, 4812, 5253, 3206, 7303, 7304, 7306, 7308, 5262, 5263, 7312, 5266, 3219, 7316, 5269, 7320, 3227, 5222, 5281, 7330, 5283, 5284, 1189, 7025, 5289, 5290, 2247, 7341, 7343, 7344, 5297, 5300, 5301, 7350, 7353, 5306, 5307, 5308, 7361, 4641, 3275, 1228, 1230, 5327, 5329, 7379, 2254, 5339, 5669, 1248, 891, 4305, 1256, 7401, 7402, 7403, 7404, 7406, 5359, 5364, 7415, 5368, 1273, 7418, 7650, 5674, 7422, 4782, 7425, 3627, 5380, 5381, 5382, 7431, 5387, 5390, 7443, 7444, 438, 7446, 7447, 7448, 7450, 7451, 5408, 5409, 5410, 219, 7460, 7461, 4657, 5704, 5418, 1324, 5422, 5426, 5430, 7479, 5433, 5841, 5436, 2806, 1954, 7489, 3394, 1347, 7492, 5445, 5447, 7496, 3401, 7498, 7499, 7501, 5454, 5458, 7510, 5464, 7514, 4069, 7516, 7522, 5691, 1380, 6320, 7532, 7533, 5486, 5488, 2280, 7540, 7541, 7543, 7544, 5498, 7743, 7548, 5501, 7550, 3989, 7554, 6379, 7558, 1417, 3466, 7565, 7567, 5520, 7569, 5522, 6723, 7573, 1430, 7748, 6383, 6799, 3486, 5535, 1440, 7588, 7589, 7590, 1723, 3497, 1450, 7751, 1452, 7598, 7069, 7601, 3508, 5558, 7607, 7608, 7611, 5564, 5567, 3520, 7618, 7619, 3525, 5574, 5575, 8028, 7629, 7630, 3536, 2296, 7634, 5587, 7640, 2980, 7645, 7646, 3551, 7648, 3554, 5603, 7652, 3557, 7654, 7656, 252, 3562, 7079, 3567, 3569, 7666, 7670, 5623, 5624, 7673, 7675, 1532, 3581, 5631, 5635, 3588, 7685, 4320, 1543, 7688, 7691, 7692, 7693, 7694, 4013, 3602, 7699, 7700, 7701, 6745, 7705, 7706, 3611, 8030, 3614, 2309, 7713, 7714, 5668, 7717, 3624, 7721, 3626, 5675, 7724, 3629, 3677, 1585, 1587, 5685, 7734, 5688, 2029, 7738, 1595, 7741, 6069, 3649, 3652, 5703, 3656, 3658, 4023, 3660, 3661, 7759, 7762, 5715, 5716, 7766, 7767, 1627, 7773, 7775, 7778, 5731, 5169, 5510, 5736, 7788, 5742, 5743, 7792, 7794, 5750, 5751, 1656, 7802, 5755, 5756, 3709, 6943, 1665, 3714, 3715, 3717, 7814, 5767, 7817, 3723, 7820, 7821, 7823, 7827, 7828, 3733, 3734, 5784, 3737, 5786, 3739, 4321, 5789, 6085, 7840, 3745, 7844, 7497, 7846, 7849, 7850, 5803, 7852, 7853, 7854, 1712, 7857, 7858, 3763, 7860, 7861, 7864, 5818, 7867, 5820, 5821, 6773, 3776, 5825, 6091, 3780, 5830, 6433, 7880, 3787, 7885, 7886, 7888, 7889, 7890, 7891, 1763, 7897, 7898, 7900, 7901, 7902, 7905, 5858, 7907, 3812, 7909, 5863, 1768, 7913, 5867, 3820, 2002, 7919, 7920, 7921, 7922, 3878, 3828, 332, 2835, 2719, 7933, 7934, 7936, 7939, 7940, 7944, 4396, 1802, 1806, 7951, 3857, 7955, 3862, 7959, 7960, 7962, 7813, 3872, 7969, 7568, 7974, 7976, 7977, 1671, 7980, 7981, 7982, 7986, 3891, 7988, 7459, 1846, 1847, 7992, 436, 6111, 5016, 3901, 5449, 5953, 310, 6404, 5959, 1865, 5962, 5965, 5773, 8016, 8017, 3922, 3923, 3925, 3926, 4409, 8024, 1883, 3932, 5981, 199, 5983, 8032, 5989, 8039, 6460, 3946, 3949, 6000, 6002, 5779, 6005, 5097, 6009, 6012, 6013, 3966, 4757, 6018, 7830, 6024, 1929, 6026, 2986, 1935, 323, 4088, 7833, 5793, 4000, 1008, 7430, 7835, 1957, 6054, 4007, 8019, 6059, 4012, 3816, 1968, 6066, 6131, 4021, 6601, 6135, 6074, 6075, 6077, 6079, 1985, 6084, 4037, 6086, 6087, 6088, 6089, 4043, 6097, 6098, 7502, 6104, 6107, 6109, 6110, 4063, 5659, 529, 6116, 2021, 5379, 2026, 1650, 6125, 2030, 6129, 4083, 2036, 4085, 2039, 6136, 4090, 5119, 2044, 559, 2047] +custom_user_ids = [1029, 1038, 1039, 538, 1054, 39, 1069, 349, 561, 564, 1077, 569, 1082, 1083, 1084, 574, 779, 1092, 81, 596, 597, 606, 1120, 1125, 617, 1132, 109, 622, 112, 625, 626, 1139, 789, 133, 648, 650, 1170, 1171, 1172, 1179, 1180, 1181, 671, 1184, 1187, 676, 1190, 691, 1204, 1209, 1215, 1217, 707, 1220, 197, 712, 1226, 1227, 716, 211, 1238, 1243, 222, 1247, 226, 1253, 1254, 826, 243, 762, 127, 1276, 1279, 768, 258, 1284, 1219, 1287, 1290, 1291, 1298, 1301, 793, 1306, 1307, 285, 1310, 1311, 1312, 1317, 49, 1320, 1322, 306, 1327, 818, 1333, 1336, 52, 314, 1340, 1342, 1343, 1346, 1347, 1348, 1350, 1351, 1357, 849, 338, 1363, 1364, 342, 1367, 1368, 1369, 1373, 865, 354, 869, 876, 370, 1086, 385, 763, 394, 924, 934, 424, 939, 944, 945, 436, 1183, 672, 970, 461, 466, 471, 985, 987, 84, 993, 1275, 1007, 505, 1018, 1019] +print(len(user_ids)) +print(len(custom_user_ids)) query = (stable.site == "CodeForces") & \ ((stable.user_id.belongs(user_ids)) | \ (stable.custom_user_id.belongs(custom_user_ids))) -print "Deleting all the submissions for the given IDs" -print db(query).delete() +print("Deleting all the submissions for the given IDs") +print(db(query).delete()) -print "Resetting codeforces last retrieved for auth_user" +print("Resetting codeforces last retrieved for auth_user") db(atable.id.belongs(user_ids)).update(codeforces_lr=current.INITIAL_DATE) -print "Resetting codeforces last retrieved for custom_friend" +print("Resetting codeforces last retrieved for custom_friend") db(cftable.id.belongs(custom_user_ids)).update(codeforces_lr=current.INITIAL_DATE) -print "Resetting delays" +print("Resetting delays") db(nrtable.user_id.belongs(user_ids)).update(codeforces_delay=0) db(nrtable.custom_user_id.belongs(custom_user_ids)).update(codeforces_delay=0) diff --git a/private/scripts/extras/get_tags_timeline.py b/private/scripts/extras/get_tags_timeline.py index d030ad96..2a0f6e39 100644 --- a/private/scripts/extras/get_tags_timeline.py +++ b/private/scripts/extras/get_tags_timeline.py @@ -57,5 +57,5 @@ def get_problem_tags(link): if submission.problem_link not in plink_to_tags: plink_to_tags[submission.problem_link] = get_problem_tags(submission.problem_link) if plink_to_tags[submission.problem_link] is not None: - print plink_to_tags[submission.problem_link][1] + print(plink_to_tags[submission.problem_link][1]) prev_link = submission.problem_link diff --git a/private/scripts/extras/hackerearth_graph.py b/private/scripts/extras/hackerearth_graph.py index 71667de6..5cd19d46 100644 --- a/private/scripts/extras/hackerearth_graph.py +++ b/private/scripts/extras/hackerearth_graph.py @@ -44,4 +44,4 @@ "rating": contest["rating"], "url": url, "rank": contest["rank"]}}) - print time_stamp, name, rating, url + print(time_stamp, name, rating, url) diff --git a/private/scripts/extras/hackerrank_graph.py b/private/scripts/extras/hackerrank_graph.py index c5478c7f..787a3e76 100644 --- a/private/scripts/extras/hackerrank_graph.py +++ b/private/scripts/extras/hackerrank_graph.py @@ -47,4 +47,4 @@ "graph_data": final_json}) for graph in hackerrank_graphs: - print graph + print(graph) diff --git a/private/scripts/extras/internationalization.py b/private/scripts/extras/internationalization.py index ce56a880..964494d1 100644 --- a/private/scripts/extras/internationalization.py +++ b/private/scripts/extras/internationalization.py @@ -27,7 +27,7 @@ start = int(sys.argv[1]) end = int(sys.argv[2]) -for user_id in xrange(start, end + 1): +for user_id in range(start, end + 1): row = db(atable.id == user_id).select(atable.first_name, atable.last_name, atable.email, @@ -49,4 +49,4 @@ Team StopStalk """ % row.stopstalk_handle, mail_type="feature_updates") - print "Mail sent to: %s" % (row.first_name + " " + row.last_name) + print("Mail sent to: %s" % (row.first_name + " " + row.last_name)) diff --git a/private/scripts/extras/merge_problem_duplicates.py b/private/scripts/extras/merge_problem_duplicates.py index 98523f38..f1839b4c 100644 --- a/private/scripts/extras/merge_problem_duplicates.py +++ b/private/scripts/extras/merge_problem_duplicates.py @@ -26,13 +26,13 @@ sttable = db.suggested_tags uetable = db.user_editorials -duplicate_problem_links = [u'http://acm.timus.ru/problem.aspx?space=1&num=1060&locale=en', u'http://www.codeforces.com/problemset/gymProblem/101487/J', u'http://www.codeforces.com/problemset/problem/1011/A', u'http://www.codeforces.com/problemset/problem/810/C', u'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4799', u'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4958', u'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4961', u'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=5031', u'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=5181', u'https://www.codechef.com/ABCS2014/problems/ABA14A', u'https://www.codechef.com/ABCS2014/problems/ABA14B', u'https://www.codechef.com/ABCS2014/problems/ABA14E', u'https://www.codechef.com/ABCS2015/problems/ABA15A', u'https://www.codechef.com/ABCS2015/problems/ABA15C', u'https://www.codechef.com/ABCS2015/problems/ABA15D', u'https://www.codechef.com/ABCS2015/problems/ABA15E', u'https://www.codechef.com/ABCS2015/problems/ABA15F', u'https://www.codechef.com/ABCS2015/problems/ABA15G', u'https://www.codechef.com/ABCS2016/problems/ABACUS01', u'https://www.codechef.com/ABCS2016/problems/ABACUS02', u'https://www.codechef.com/ABCS2016/problems/ABACUS03', u'https://www.codechef.com/ABCS2016/problems/ABACUS04', u'https://www.codechef.com/ABCS2016/problems/ABACUS05', u'https://www.codechef.com/ABCS2016/problems/ABACUS06', u'https://www.codechef.com/ABYN2015/problems/LDIGIT', u'https://www.codechef.com/ABYN2015/problems/LUCBULB', u'https://www.codechef.com/ABYN2015/problems/LUCKYBIT', u'https://www.codechef.com/ABYN2015/problems/LUCXOR', u'https://www.codechef.com/ACMAMR12/problems/ATKCTR', u'https://www.codechef.com/ACMAMR12/problems/BALL', u'https://www.codechef.com/ACMAMR12/problems/CBLOCKS', u'https://www.codechef.com/ACMAMR12/problems/DQPERMS', u'https://www.codechef.com/ACMAMR12/problems/FINDHOLE', u'https://www.codechef.com/ACMAMR12/problems/FSSYNC', u'https://www.codechef.com/ACMAMR12/problems/LIGHTS', u'https://www.codechef.com/ACMAMR12/problems/MINMAX', u'https://www.codechef.com/ACMAMR12/problems/MSTRINGS', u'https://www.codechef.com/ACMAMR12/problems/PSTRINGS', u'https://www.codechef.com/ACMAMR12/problems/RNEST', u'https://www.codechef.com/AIPC2015/problems/AN01', u'https://www.codechef.com/AIPC2015/problems/PRI01', u'https://www.codechef.com/AIPC2015/problems/YA01', u'https://www.codechef.com/ALGT2013/problems/TNMALG01', u'https://www.codechef.com/ALGT2013/problems/TNMALG02', u'https://www.codechef.com/ALGT2013/problems/TNMALG03', u'https://www.codechef.com/ALGT2013/problems/TNMALG04', u'https://www.codechef.com/ALGT2013/problems/TNMALG06', u'https://www.codechef.com/ALGT2013/problems/TNMALG07', u'https://www.codechef.com/ALKH2013/problems/ALK13A', u'https://www.codechef.com/ALKH2013/problems/ALK13B', u'https://www.codechef.com/ALKH2013/problems/ALK13C', u'https://www.codechef.com/ALKH2013/problems/ALK13E', u'https://www.codechef.com/ALKH2013/problems/ALK13F', u'https://www.codechef.com/ALKH2013/problems/ALK13G', u'https://www.codechef.com/ALKH2013/problems/ALK13H', u'https://www.codechef.com/ALKH2016/problems/CLBMK', u'https://www.codechef.com/ALKH2016/problems/DRTVG', u'https://www.codechef.com/ALKH2016/problems/ISD', u'https://www.codechef.com/ALKH2016/problems/LFS', u'https://www.codechef.com/ALKH2016/problems/NRTKH', u'https://www.codechef.com/ALKH2016/problems/NTSK', u'https://www.codechef.com/ALKH2016/problems/PETRM', u'https://www.codechef.com/ALKH2016/problems/POPT', u'https://www.codechef.com/ALKH2016/problems/VLB', u'https://www.codechef.com/ALKH2016/problems/VLD', u'https://www.codechef.com/ALKH2016/problems/VVR', u'https://www.codechef.com/ALMA2015/problems/ALMA01', u'https://www.codechef.com/ALMA2015/problems/ALMA02', u'https://www.codechef.com/ALMA2015/problems/ALMA03', u'https://www.codechef.com/ALMA2015/problems/ALMA04', u'https://www.codechef.com/ALMA2015/problems/ALMA05', u'https://www.codechef.com/ALPH2016/problems/AVGSCORE', u'https://www.codechef.com/ALPH2016/problems/CNTMTX', u'https://www.codechef.com/ALPH2016/problems/VIRAT20', u'https://www.codechef.com/ALPH2016/problems/VIRATGCD', u'https://www.codechef.com/ALPH2016/problems/YUVRAJ', u'https://www.codechef.com/AMR14ROL/problems/ACM14AM1', u'https://www.codechef.com/AMR14ROL/problems/ACM14AM3', u'https://www.codechef.com/AMR14ROL/problems/ACM14AM4', u'https://www.codechef.com/AMR14ROL/problems/ACM14AM5', u'https://www.codechef.com/AMR15ROL/problems/AMR15A', u'https://www.codechef.com/AMR15ROL/problems/AMR15B', u'https://www.codechef.com/AMR15ROL/problems/AMR15C', u'https://www.codechef.com/AMR15ROL/problems/AMR15D', u'https://www.codechef.com/AMSC2015/problems/AMCS01', u'https://www.codechef.com/AMSC2015/problems/AMCS03', u'https://www.codechef.com/AMSC2015/problems/AMCS04', u'https://www.codechef.com/AMSC2015/problems/AMCS05', u'https://www.codechef.com/AMSC2015/problems/AMCS06', u'https://www.codechef.com/APRIL13/problems/CHEFGAME', u'https://www.codechef.com/APRIL13/problems/CYLINDER', u'https://www.codechef.com/APRIL13/problems/FAULT', u'https://www.codechef.com/APRIL13/problems/FCBARCA', u'https://www.codechef.com/APRIL13/problems/KINGCON', u'https://www.codechef.com/APRIL13/problems/LEMUSIC', u'https://www.codechef.com/APRIL13/problems/LEVY', u'https://www.codechef.com/APRIL13/problems/MAXDIFF', u'https://www.codechef.com/APRIL13/problems/STRQUERY', u'https://www.codechef.com/APRIL14/problems/ADIGIT', u'https://www.codechef.com/APRIL14/problems/ANUCBC', u'https://www.codechef.com/APRIL14/problems/BINTREE', u'https://www.codechef.com/APRIL14/problems/CNPIIM', u'https://www.codechef.com/APRIL14/problems/FBCHEF', u'https://www.codechef.com/APRIL14/problems/GERALD08', u'https://www.codechef.com/APRIL14/problems/POTATOES', u'https://www.codechef.com/APRIL14/problems/SEAPERM', u'https://www.codechef.com/APRIL14/problems/TANGDIV', u'https://www.codechef.com/APRIL15/problems/BROKPHON', u'https://www.codechef.com/APRIL15/problems/BWGAME', u'https://www.codechef.com/APRIL15/problems/CARLOS', u'https://www.codechef.com/APRIL15/problems/CHEFLCM', u'https://www.codechef.com/APRIL15/problems/CSEQ', u'https://www.codechef.com/APRIL15/problems/DEVVOTE', u'https://www.codechef.com/APRIL15/problems/DIVLAND', u'https://www.codechef.com/APRIL15/problems/FRMQ', u'https://www.codechef.com/APRIL15/problems/LPARTY', u'https://www.codechef.com/APRIL15/problems/PIANO1', u'https://www.codechef.com/APRIL16/problems/AMAEXPER', u'https://www.codechef.com/APRIL16/problems/BIPIN3', u'https://www.codechef.com/APRIL16/problems/CHBLLNS', u'https://www.codechef.com/APRIL16/problems/CHEFPATH', u'https://www.codechef.com/APRIL16/problems/CHNBGMT', u'https://www.codechef.com/APRIL16/problems/COLOR', u'https://www.codechef.com/APRIL16/problems/DEVGOSTR', u'https://www.codechef.com/APRIL16/problems/FIBQ', u'https://www.codechef.com/APRIL16/problems/FURGRAPH', u'https://www.codechef.com/APRIL16/problems/SNAKGAME', u'https://www.codechef.com/APTT2015/problems/APTT0001', u'https://www.codechef.com/ARHN1502/problems/ARHN01', u'https://www.codechef.com/ARHN1502/problems/ARHN04', u'https://www.codechef.com/ARHN1502/problems/ARHN06', u'https://www.codechef.com/ARHN1502/problems/ARHN07', u'https://www.codechef.com/ARHN1502/problems/ARHN08', u'https://www.codechef.com/ARHN1502/problems/ARHN09', u'https://www.codechef.com/ARHN1502/problems/ARHN10', u'https://www.codechef.com/ASNE2016/problems/FZLKHN', u'https://www.codechef.com/ASNE2016/problems/GHATAK', u'https://www.codechef.com/ASNE2016/problems/STUD2', u'https://www.codechef.com/ASNE2016/problems/STUD3', u'https://www.codechef.com/ASNE2016/problems/STUDD', u'https://www.codechef.com/AUG13/problems/CHMOD', u'https://www.codechef.com/AUG13/problems/CNTSOLS', u'https://www.codechef.com/AUG13/problems/DELNMS', u'https://www.codechef.com/AUG13/problems/HELLO', u'https://www.codechef.com/AUG13/problems/LELEMON', u'https://www.codechef.com/AUG13/problems/LYRC', u'https://www.codechef.com/AUG13/problems/PRIMEDST', u'https://www.codechef.com/AUG13/problems/SEABAL', u'https://www.codechef.com/AUG13/problems/SHIRO', u'https://www.codechef.com/AUG13/problems/SPCANDY', u'https://www.codechef.com/AUG14/problems/CLETAB', u'https://www.codechef.com/AUG14/problems/CRAWA', u'https://www.codechef.com/AUG14/problems/EQUAKE', u'https://www.codechef.com/AUG14/problems/MOU2H', u'https://www.codechef.com/AUG14/problems/PRGIFT', u'https://www.codechef.com/AUG14/problems/REVERSE', u'https://www.codechef.com/AUG14/problems/SEASHUF', u'https://www.codechef.com/AUG14/problems/SIGFIB', u'https://www.codechef.com/AUG14/problems/TSHIRTS', u'https://www.codechef.com/AUG15/problems/ADMAG', u'https://www.codechef.com/AUG15/problems/CHINSM', u'https://www.codechef.com/AUG15/problems/CLOWAY', u'https://www.codechef.com/AUG15/problems/COOKMACH', u'https://www.codechef.com/AUG15/problems/DCGAME', u'https://www.codechef.com/AUG15/problems/DISTNUM', u'https://www.codechef.com/AUG15/problems/GRGUY', u'https://www.codechef.com/AUG15/problems/SCLUSTER', u'https://www.codechef.com/AUG15/problems/STETSKLX', u'https://www.codechef.com/AUG15/problems/WOUT', u'https://www.codechef.com/AUST2016/problems/AUASIF', u'https://www.codechef.com/AUST2016/problems/AUDH', u'https://www.codechef.com/AUST2016/problems/AUEC', u'https://www.codechef.com/AUST2016/problems/AUHASH', u'https://www.codechef.com/AUST2016/problems/AUNX', u'https://www.codechef.com/AUST2016/problems/AUPM', u'https://www.codechef.com/AUST2016/problems/AUSAG', u'https://www.codechef.com/AUST2016/problems/AUSASA', u'https://www.codechef.com/AUST2016/problems/AUSF', u'https://www.codechef.com/BIGO2016/problems/GTH', u'https://www.codechef.com/BIGO2016/problems/SACHGF', u'https://www.codechef.com/BIGO2016/problems/SURF', u'https://www.codechef.com/BIGO2016/problems/WATSY', u'https://www.codechef.com/BIGO2016/problems/WKIMAAL', u'https://www.codechef.com/BION2015/problems/BI01', u'https://www.codechef.com/BION2015/problems/BI02', u'https://www.codechef.com/BITC2016/problems/DMILK', u'https://www.codechef.com/BITC2016/problems/KING', u'https://www.codechef.com/BITC2016/problems/TBD', u'https://www.codechef.com/BITC2016/problems/TRYOUT', u'https://www.codechef.com/BITC2016/problems/TVP', u'https://www.codechef.com/BRCD2015/problems/CKTFEV', u'https://www.codechef.com/BRCD2015/problems/NGTBIT', u'https://www.codechef.com/BRCD2015/problems/PALHAPPY', u'https://www.codechef.com/BRCD2015/problems/RAGOOD', u'https://www.codechef.com/BRCD2015/problems/SURFRN', u'https://www.codechef.com/BRCD2015/problems/TTEACH', u'https://www.codechef.com/BTBT2014/problems/COG14A', u'https://www.codechef.com/BTBT2014/problems/COG14B', u'https://www.codechef.com/BTBT2014/problems/COG14C', u'https://www.codechef.com/BTBT2014/problems/COG14D', u'https://www.codechef.com/BTBT2014/problems/COG14E', u'https://www.codechef.com/BTBT2014/problems/COG14F', u'https://www.codechef.com/BTCD2013/problems/CNG', u'https://www.codechef.com/BTCD2013/problems/DIFBMB', u'https://www.codechef.com/BTCD2013/problems/FMAP', u'https://www.codechef.com/BTCD2013/problems/MAGSTK', u'https://www.codechef.com/BTCD2013/problems/MAXCOMB', u'https://www.codechef.com/BTCD2013/problems/PLAYNUM', u'https://www.codechef.com/BTCD2013/problems/PRSN', u'https://www.codechef.com/BTCD2013/problems/RANBOT', u'https://www.codechef.com/BTCD2013/problems/SCNDWAR', u'https://www.codechef.com/BTCD2013/problems/SPLCND', u'https://www.codechef.com/BTCJ2015/problems/BITCJ1', u'https://www.codechef.com/BTCJ2015/problems/BITCJ3', u'https://www.codechef.com/BTCJ2015/problems/BITCJ4', u'https://www.codechef.com/BTCJ2015/problems/BITCJ5', u'https://www.codechef.com/BTFR2013/problems/NITA02', u'https://www.codechef.com/BTFR2013/problems/NITA04', u'https://www.codechef.com/BTFR2013/problems/NITA05', u'https://www.codechef.com/BTFR2013/problems/NITA06', u'https://www.codechef.com/BTFR2013/problems/NITA07', u'https://www.codechef.com/BTFR2013/problems/NITA09', u'https://www.codechef.com/BTFR2013/problems/NITA10', u'https://www.codechef.com/BTFR2013/problems/NITA11', u'https://www.codechef.com/BTFR2013/problems/NITA13', u'https://www.codechef.com/BYTE2016/problems/BYTES11', u'https://www.codechef.com/BYTE2016/problems/BYTES12', u'https://www.codechef.com/BYTE2016/problems/BYTES13', u'https://www.codechef.com/BYTE2016/problems/BYTES14', u'https://www.codechef.com/BYTE2016/problems/BYTES15', u'https://www.codechef.com/BYTS2013/problems/BYTESA', u'https://www.codechef.com/BYTS2013/problems/BYTESB', u'https://www.codechef.com/BYTS2013/problems/BYTESC', u'https://www.codechef.com/BYTS2013/problems/BYTESD', u'https://www.codechef.com/BYTS2013/problems/BYTESE', u'https://www.codechef.com/BYTS2013/problems/BYTESG', u'https://www.codechef.com/CCBE2015/problems/CCUBE01', u'https://www.codechef.com/CCBE2015/problems/CCUBE04', u'https://www.codechef.com/CDAV2014/problems/JIGGLY', u'https://www.codechef.com/CDAV2014/problems/LCK', u'https://www.codechef.com/CDAV2014/problems/PND', u'https://www.codechef.com/CDAV2014/problems/POWER', u'https://www.codechef.com/CDAV2014/problems/THUNT', u'https://www.codechef.com/CDAV2014/problems/TRAP', u'https://www.codechef.com/CDBR2015/problems/CDBSTR1', u'https://www.codechef.com/CDBR2015/problems/CDBSTR2', u'https://www.codechef.com/CDBR2015/problems/CDBSTR3', u'https://www.codechef.com/CDBR2015/problems/CDBSTR4', u'https://www.codechef.com/CDBR2015/problems/CDBSTR5', u'https://www.codechef.com/CDBR2015/problems/CDBSTR6', u'https://www.codechef.com/CDBR2015/problems/CDBSTR7', u'https://www.codechef.com/CDCL2013/problems/MPAIR', u'https://www.codechef.com/CDCL2013/problems/MPROB', u'https://www.codechef.com/CDCL2013/problems/XAIR', u'https://www.codechef.com/CDCL2013/problems/XLIFE', u'https://www.codechef.com/CDCN2014/problems/CRZ01', u'https://www.codechef.com/CDCN2014/problems/CRZ02', u'https://www.codechef.com/CDCN2014/problems/CRZ04', u'https://www.codechef.com/CDCN2014/problems/CRZ05', u'https://www.codechef.com/CDCR2015/problems/CDCR15_1', u'https://www.codechef.com/CDCR2015/problems/CDCR15_2', u'https://www.codechef.com/CDCR2015/problems/CDCR15_3', u'https://www.codechef.com/CDCR2015/problems/CDCR15_4', u'https://www.codechef.com/CDCR2015/problems/CDCR15_5', u'https://www.codechef.com/CDCRF15R/problems/COPERM', u'https://www.codechef.com/CDCRF15R/problems/CPAL', u'https://www.codechef.com/CDCRF15R/problems/CWAYS', u'https://www.codechef.com/CDCRF15R/problems/LOLOL', u'https://www.codechef.com/CDCRF15R/problems/PNUM', u'https://www.codechef.com/CDCRF15R/problems/THIEF', u'https://www.codechef.com/CDCRF15R/problems/TSORTA', u'https://www.codechef.com/CDCRFT14/problems/ATOM', u'https://www.codechef.com/CDCRFT14/problems/BALLS', u'https://www.codechef.com/CDCRFT14/problems/BIT', u'https://www.codechef.com/CDCRFT14/problems/DURIND', u'https://www.codechef.com/CDCRFT14/problems/GIVEAWAY', u'https://www.codechef.com/CDCRNC13/problems/MRIU11', u'https://www.codechef.com/CDCRNC13/problems/MRIU12', u'https://www.codechef.com/CDCRNC13/problems/MRIU13', u'https://www.codechef.com/CDCRNC13/problems/MRIU14', u'https://www.codechef.com/CDCRNC13/problems/MRIU15', u'https://www.codechef.com/CDCRNT14/problems/CC1', u'https://www.codechef.com/CDCRNT14/problems/CC2', u'https://www.codechef.com/CDCRNT14/problems/CC3', u'https://www.codechef.com/CDCRNT14/problems/CC4', u'https://www.codechef.com/CDCS2014/problems/CDCRTS1', u'https://www.codechef.com/CDCS2014/problems/CDCRTS3', u'https://www.codechef.com/CDCS2014/problems/CDCRTS4', u'https://www.codechef.com/CDCS2014/problems/CDCRTS5', u'https://www.codechef.com/CDCZ2013/problems/BHAV', u'https://www.codechef.com/CDCZ2013/problems/BUYCAR', u'https://www.codechef.com/CDCZ2013/problems/GOTN', u'https://www.codechef.com/CDCZ2013/problems/GOTT', u'https://www.codechef.com/CDCZ2013/problems/JAGE', u'https://www.codechef.com/CDCZ2013/problems/OPDES', u'https://www.codechef.com/CDER2015/problems/DISPLAY', u'https://www.codechef.com/CDER2015/problems/ESYYSE', u'https://www.codechef.com/CDER2015/problems/EXORO', u'https://www.codechef.com/CDER2015/problems/FACT25', u'https://www.codechef.com/CDER2015/problems/HELPND', u'https://www.codechef.com/CDER2015/problems/LUCKYR', u'https://www.codechef.com/CDER2015/problems/MATHS', u'https://www.codechef.com/CDER2015/problems/PALIND', u'https://www.codechef.com/CDER2015/problems/REVER', u'https://www.codechef.com/CDER2015/problems/SHORTCUT', u'https://www.codechef.com/CDGF2013/problems/BINGCD', u'https://www.codechef.com/CDGF2013/problems/FCTRIZE', u'https://www.codechef.com/CDGF2013/problems/MTRANS', u'https://www.codechef.com/CDGF2013/problems/PRQUIN', u'https://www.codechef.com/CDGF2013/problems/TOTAREA', u'https://www.codechef.com/CDGF2016/problems/CDGLF01', u'https://www.codechef.com/CDGF2016/problems/CDGLF02', u'https://www.codechef.com/CDGF2016/problems/CDGLF03', u'https://www.codechef.com/CDGF2016/problems/CDGLF04', u'https://www.codechef.com/CDGF2016/problems/CDGLF05', u'https://www.codechef.com/CDME2015/problems/DGAME', u'https://www.codechef.com/CDME2015/problems/DRKNGHT', u'https://www.codechef.com/CDME2015/problems/LPATH', u'https://www.codechef.com/CDME2015/problems/PRFUN', u'https://www.codechef.com/CDMR2014/problems/JMI00', u'https://www.codechef.com/CDMR2014/problems/JMI01', u'https://www.codechef.com/CDMR2014/problems/JMI02', u'https://www.codechef.com/CDMR2014/problems/JMI03', u'https://www.codechef.com/CDMR2014/problems/JMI04', u'https://www.codechef.com/CDMS2014/problems/CM1401', u'https://www.codechef.com/CDMS2014/problems/CM1403', u'https://www.codechef.com/CDMS2014/problems/CM1404', u'https://www.codechef.com/CDMT2014/problems/CANDB', u'https://www.codechef.com/CDMT2014/problems/CDMT06', u'https://www.codechef.com/CDMT2014/problems/CINEMA', u'https://www.codechef.com/CDMT2014/problems/MIRRORS', u'https://www.codechef.com/CDMT2014/problems/TILE', u'https://www.codechef.com/CDMT2014/problems/TILE0', u'https://www.codechef.com/CDMU2015/problems/CDMU01', u'https://www.codechef.com/CDMU2015/problems/CDMU02', u'https://www.codechef.com/CDMU2015/problems/CDMU03', u'https://www.codechef.com/CDMU2015/problems/CDMU04', u'https://www.codechef.com/CDMU2015/problems/CDMU05', u'https://www.codechef.com/CDMU2015/problems/CDMU06', u'https://www.codechef.com/CDNB2013/problems/IIITBH10', u'https://www.codechef.com/CDNB2013/problems/IIITBH11', u'https://www.codechef.com/CDNB2013/problems/IIITBH13', u'https://www.codechef.com/CDNB2013/problems/IIITBH14', u'https://www.codechef.com/CDNC2013/problems/P1314', u'https://www.codechef.com/CDNC2013/problems/P1316', u'https://www.codechef.com/CDNCTR14/problems/ARRAY', u'https://www.codechef.com/CDNCTR14/problems/FEST', u'https://www.codechef.com/CDNCTR14/problems/GOT', u'https://www.codechef.com/CDNCTR14/problems/JADEJA', u'https://www.codechef.com/CDNCTR14/problems/QUEST', u'https://www.codechef.com/CDOL2013/problems/CDOLP1', u'https://www.codechef.com/CDOT2015/problems/CDOUT1', u'https://www.codechef.com/CDOT2015/problems/CDOUT2', u'https://www.codechef.com/CDOT2015/problems/CDOUT3', u'https://www.codechef.com/CDOT2015/problems/CDOUT4', u'https://www.codechef.com/CDOT2015/problems/CDOUT5', u'https://www.codechef.com/CDOT2015/problems/CDOUT6', u'https://www.codechef.com/CDPH2015/problems/PRIMPAL', u'https://www.codechef.com/CDPH2015/problems/PRLIN', u'https://www.codechef.com/CDPH2015/problems/SPOOKY', u'https://www.codechef.com/CDQT2015/problems/ICQ1', u'https://www.codechef.com/CDQT2015/problems/ICQ2', u'https://www.codechef.com/CDQT2015/problems/ICQ3', u'https://www.codechef.com/CDQT2015/problems/ICQ4', u'https://www.codechef.com/CDQU1601/problems/CDQU01', u'https://www.codechef.com/CDQU1601/problems/CDQU02', u'https://www.codechef.com/CDQU1601/problems/CDQU03', u'https://www.codechef.com/CDQU1601/problems/CDQU04', u'https://www.codechef.com/CDQU1601/problems/CDQU05', u'https://www.codechef.com/CDQU1601/problems/CDQU06', u'https://www.codechef.com/CDQU1601/problems/CDQU07', u'https://www.codechef.com/CDQU1601/problems/CDQU08', u'https://www.codechef.com/CDQU1601/problems/CDQU09', u'https://www.codechef.com/CDQU1601/problems/CDQU10', u'https://www.codechef.com/CDSK2015/problems/CSP1', u'https://www.codechef.com/CDSK2015/problems/CSP3', u'https://www.codechef.com/CDSK2015/problems/CSP4', u'https://www.codechef.com/CDSK2015/problems/CSP5', u'https://www.codechef.com/CDSM2014/problems/CHEFTR', u'https://www.codechef.com/CDSM2014/problems/CHFBOOKS', u'https://www.codechef.com/CDSM2014/problems/CHFFIELD', u'https://www.codechef.com/CDSM2014/problems/CHFMAX', u'https://www.codechef.com/CDSM2014/problems/PPOW', u'https://www.codechef.com/CDST2014/problems/CCCS1', u'https://www.codechef.com/CDST2014/problems/CCCS2', u'https://www.codechef.com/CDSU2015/problems/MHTBAG', u'https://www.codechef.com/CDSU2015/problems/MHTCLASS', u'https://www.codechef.com/CDSU2015/problems/MHTPAIR', u'https://www.codechef.com/CDSU2015/problems/PRDIV', u'https://www.codechef.com/CDSU2015/problems/SWAPS', u'https://www.codechef.com/CDTR1502/problems/MULTIPLY', u'https://www.codechef.com/CDTR1502/problems/QUERIES', u'https://www.codechef.com/CDTR1502/problems/TIME', u'https://www.codechef.com/CDTR1502/problems/TOUR', u'https://www.codechef.com/CDTR2014/problems/CDTR01', u'https://www.codechef.com/CDTR2014/problems/CDTR04', u'https://www.codechef.com/CDTR2014/problems/CDTR05', u'https://www.codechef.com/CDTR2014/problems/CDTR06', u'https://www.codechef.com/CDTR2015/problems/JNTUV1', u'https://www.codechef.com/CDTR2015/problems/JNTUV2', u'https://www.codechef.com/CDTR2015/problems/JNTUV3', u'https://www.codechef.com/CDTR2015/problems/JNTUV4', u'https://www.codechef.com/CDVA16/problems/CDVA1601', u'https://www.codechef.com/CDVA16/problems/CDVA1602', u'https://www.codechef.com/CDVA16/problems/CDVA1603', u'https://www.codechef.com/CDVA16/problems/CDVA1604', u'https://www.codechef.com/CDVA16/problems/CDVA1605', u'https://www.codechef.com/CDVA16/problems/CDVA1606', u'https://www.codechef.com/CDVA16/problems/CDVA1607', u'https://www.codechef.com/CDVA16/problems/CDVA1608', u'https://www.codechef.com/CDVA16/problems/CDVA1610', u'https://www.codechef.com/CDVA2015/problems/CDVA1501', u'https://www.codechef.com/CDVA2015/problems/CDVA1502', u'https://www.codechef.com/CDVA2015/problems/CDVA1503', u'https://www.codechef.com/CDVA2015/problems/CDVA1504', u'https://www.codechef.com/CDVA2015/problems/CDVA1505', u'https://www.codechef.com/CDVA2015/problems/CDVA1507', u'https://www.codechef.com/CDVA2015/problems/CDVA1508', u'https://www.codechef.com/CDVA2015/problems/CDVA1509', u'https://www.codechef.com/CDVA2015/problems/CDVA1510', u'https://www.codechef.com/CDVA2015/problems/CDVS1506', u'https://www.codechef.com/CDWA2016/problems/CHNG', u'https://www.codechef.com/CDWA2016/problems/GUNG', u'https://www.codechef.com/CDWA2016/problems/MAGBALL', u'https://www.codechef.com/CDWA2016/problems/PRGAME', u'https://www.codechef.com/CDWA2016/problems/SPCOL', u'https://www.codechef.com/CDWR2013/problems/CWAR1', u'https://www.codechef.com/CDWR2013/problems/CZIP3', u'https://www.codechef.com/CDWR2013/problems/ESYPROB', u'https://www.codechef.com/CDWR2013/problems/FACTCN', u'https://www.codechef.com/CDWR2013/problems/GPRIME', u'https://www.codechef.com/CDWR2014/problems/CW1', u'https://www.codechef.com/CDWR2014/problems/CW2', u'https://www.codechef.com/CDWR2014/problems/CW3', u'https://www.codechef.com/CDWR2014/problems/CW4', u'https://www.codechef.com/CDWR2014/problems/CW5', u'https://www.codechef.com/CDWR2014/problems/CW6', u'https://www.codechef.com/CDWV2013/problems/ACHESS', u'https://www.codechef.com/CDWV2013/problems/BWIDOW', u'https://www.codechef.com/CDWV2013/problems/IMBOX', u'https://www.codechef.com/CDWV2013/problems/NFURY', u'https://www.codechef.com/CDWV2013/problems/TBATTLE', u'https://www.codechef.com/CDWV2013/problems/TESSER', u'https://www.codechef.com/CDX2015/problems/CDXLRG', u'https://www.codechef.com/CDX2015/problems/CDXNPL', u'https://www.codechef.com/CDX2015/problems/CDXOPTM', u'https://www.codechef.com/CDX2015/problems/CODEXLMB', u'https://www.codechef.com/CDX2015/problems/CODEXTRY', u'https://www.codechef.com/CDZL2014/problems/CDZ14A', u'https://www.codechef.com/CDZL2014/problems/CDZ14B', u'https://www.codechef.com/CDZL2014/problems/CDZ14C', u'https://www.codechef.com/CDZL2014/problems/CDZ14D', u'https://www.codechef.com/CDZL2014/problems/CDZ14E', u'https://www.codechef.com/CDZP2014/problems/AMM45', u'https://www.codechef.com/CDZP2014/problems/BKW', u'https://www.codechef.com/CDZP2014/problems/CAN1', u'https://www.codechef.com/CDZP2014/problems/PRST', u'https://www.codechef.com/CDZP2014/problems/RADRAM', u'https://www.codechef.com/CFSN2015/problems/LINNUM', u'https://www.codechef.com/CFSN2015/problems/LINSUB', u'https://www.codechef.com/CFSN2015/problems/PUNBAN', u'https://www.codechef.com/CFSN2015/problems/SUYBOB', u'https://www.codechef.com/CHN15MOS/problems/CHN05', u'https://www.codechef.com/CHN15MOS/problems/CHN08', u'https://www.codechef.com/CHN15MOS/problems/CHN09', u'https://www.codechef.com/CHN15ROL/problems/CHN15A', u'https://www.codechef.com/CHN15ROL/problems/CHN15B', u'https://www.codechef.com/CHN15ROL/problems/CHN15C', u'https://www.codechef.com/CHN15ROL/problems/CHN15D', u'https://www.codechef.com/CHN15ROL/problems/CHN15E', u'https://www.codechef.com/CLASH13/problems/CREDCJ4', u'https://www.codechef.com/CLASH13/problems/CREDCS1', u'https://www.codechef.com/CLASH13/problems/CREDCS2', u'https://www.codechef.com/CLASH13/problems/CREDCS3', u'https://www.codechef.com/CLDB2016/problems/CB20Q1', u'https://www.codechef.com/CLDB2016/problems/CB20Q3', u'https://www.codechef.com/CLDB2016/problems/CB20Q4', u'https://www.codechef.com/CLDB2016/problems/CB20Q5', u'https://www.codechef.com/COBA2016/problems/CB1', u'https://www.codechef.com/COBA2016/problems/CB2', u'https://www.codechef.com/COBA2016/problems/CB3', u'https://www.codechef.com/COBA2016/problems/CB4', u'https://www.codechef.com/COBL2016/problems/PERFECT', u'https://www.codechef.com/COBL2016/problems/RNGMOD', u'https://www.codechef.com/COBL2016/problems/SWEGARR', u'https://www.codechef.com/COBL2016/problems/SWEGIRL', u'https://www.codechef.com/COBL2016/problems/SWEGSTR', u'https://www.codechef.com/COCL2016/problems/BDAYGIFT', u'https://www.codechef.com/COCL2016/problems/CRAZYMAT', u'https://www.codechef.com/COCL2016/problems/LCKYNUM', u'https://www.codechef.com/COCL2016/problems/NEELSTR', u'https://www.codechef.com/COCL2016/problems/SCRTCD', u'https://www.codechef.com/COCR2015/problems/COCR01', u'https://www.codechef.com/COCR2015/problems/COCR02', u'https://www.codechef.com/COCR2015/problems/COCR04', u'https://www.codechef.com/COCR2015/problems/COCR05', u'https://www.codechef.com/COCR2015/problems/COCR07', u'https://www.codechef.com/COCR2015/problems/COCR08', u'https://www.codechef.com/COCR2015/problems/COCR09', u'https://www.codechef.com/COCU2016/problems/CURR1', u'https://www.codechef.com/COCU2016/problems/CURR2', u'https://www.codechef.com/COCU2016/problems/CURR3', u'https://www.codechef.com/COCU2016/problems/CURR4', u'https://www.codechef.com/CODC2015/problems/CSIXIEAN', u'https://www.codechef.com/CODC2015/problems/CSIXIEPA', u'https://www.codechef.com/CODC2015/problems/CSIXIERL', u'https://www.codechef.com/CODC2015/problems/CSIXIEVR', u'https://www.codechef.com/CODE2015/problems/RIT01', u'https://www.codechef.com/CODE2015/problems/RIT02', u'https://www.codechef.com/CODE2015/problems/RIT03', u'https://www.codechef.com/CODE2015/problems/RIT04', u'https://www.codechef.com/CODEWARS/problems/CW002', u'https://www.codechef.com/CODEWARS/problems/CW003', u'https://www.codechef.com/CODEWARS/problems/CW004', u'https://www.codechef.com/CODEWARS/problems/CW005', u'https://www.codechef.com/CODEWARS/problems/CW006', u'https://www.codechef.com/CODEWARS/problems/CW007', u'https://www.codechef.com/CODEWARS/problems/CW008', u'https://www.codechef.com/CODP2017/problems/CDP01', u'https://www.codechef.com/CODS2013/problems/COADIES1', u'https://www.codechef.com/CODS2013/problems/COADIES2', u'https://www.codechef.com/CODS2013/problems/COADIES5', u'https://www.codechef.com/CODW2013/problems/CDWRS01', u'https://www.codechef.com/CODW2013/problems/CDWRS02', u'https://www.codechef.com/CODW2013/problems/CDWRS03', u'https://www.codechef.com/CODW2013/problems/CDWRS04', u'https://www.codechef.com/CODW2013/problems/CDWRS05', u'https://www.codechef.com/CODW2013/problems/CDWRS06', u'https://www.codechef.com/CODX2014/problems/REN2013A', u'https://www.codechef.com/CODX2014/problems/REN2013B', u'https://www.codechef.com/CODX2014/problems/REN2013C', u'https://www.codechef.com/CODX2014/problems/REN2013D', u'https://www.codechef.com/CODX2014/problems/REN2013E', u'https://www.codechef.com/CODX2014/problems/REN2013F', u'https://www.codechef.com/CODX2014/problems/REN2013G', u'https://www.codechef.com/CODX2014/problems/REN2013I', u'https://www.codechef.com/CODX2014/problems/REN2013J', u'https://www.codechef.com/CODX2014/problems/REN2013K', u'https://www.codechef.com/COFU2015/problems/LINCAN', u'https://www.codechef.com/COFU2015/problems/LINCOM', u'https://www.codechef.com/COFU2015/problems/LINFRI', u'https://www.codechef.com/COFU2015/problems/LINGRP', u'https://www.codechef.com/COFU2015/problems/LINXOR', u'https://www.codechef.com/COJA2016/problems/CODEJAM1', u'https://www.codechef.com/COJA2016/problems/CODEJAM2', u'https://www.codechef.com/COJA2016/problems/CODEJAM3', u'https://www.codechef.com/COJA2016/problems/CODEJAM5', u'https://www.codechef.com/COJA2016/problems/CODEJAM6', u'https://www.codechef.com/COJA2016/problems/CODEJAM7', u'https://www.codechef.com/COLE2016/problems/CLATTK', u'https://www.codechef.com/COLE2016/problems/CLBMUP', u'https://www.codechef.com/COLE2016/problems/CLDROP', u'https://www.codechef.com/COLE2016/problems/CLDSIN', u'https://www.codechef.com/COLE2016/problems/CLDSTR', u'https://www.codechef.com/COLE2016/problems/CLMNTR', u'https://www.codechef.com/COMA2015/problems/CHEFBDAY', u'https://www.codechef.com/COMA2015/problems/COMA01', u'https://www.codechef.com/COMA2015/problems/COMA02', u'https://www.codechef.com/COMA2015/problems/COMA03', u'https://www.codechef.com/COMA2015/problems/COMA04', u'https://www.codechef.com/COMN2015/problems/COMPNUM', u'https://www.codechef.com/COMN2015/problems/DJMATH', u'https://www.codechef.com/COMN2015/problems/MHALL', u'https://www.codechef.com/COMN2015/problems/ODD86', u'https://www.codechef.com/COMN2016/problems/MINION', u'https://www.codechef.com/COMN2016/problems/NIKKLIN', u'https://www.codechef.com/COMN2016/problems/RECAREA', u'https://www.codechef.com/COMN2016/problems/SUMTOUR', u'https://www.codechef.com/COMN2016/problems/THANPK', u'https://www.codechef.com/COMN2016/problems/ZOMBIE', u'https://www.codechef.com/COMS1501/problems/CM1501', u'https://www.codechef.com/COMS1501/problems/CM1503', u'https://www.codechef.com/COMS1501/problems/CM1504', u'https://www.codechef.com/COMS1501/problems/CM1505', u'https://www.codechef.com/CONI2015/problems/CN01', u'https://www.codechef.com/CONI2015/problems/CN02', u'https://www.codechef.com/CONI2015/problems/CN03', u'https://www.codechef.com/CONI2015/problems/CN04', u'https://www.codechef.com/CONI2015/problems/CN05', u'https://www.codechef.com/COOK30/problems/AVDWAST', u'https://www.codechef.com/COOK30/problems/CIELDIST', u'https://www.codechef.com/COOK30/problems/DEFACING', u'https://www.codechef.com/COOK30/problems/MANYCHEF', u'https://www.codechef.com/COOK31/problems/CHEFHCK2', u'https://www.codechef.com/COOK31/problems/HOB2', u'https://www.codechef.com/COOK31/problems/MINWDSUM', u'https://www.codechef.com/COOK31/problems/NOLOGIC', u'https://www.codechef.com/COOK31/problems/ROWCOLOP', u'https://www.codechef.com/COOK32/problems/TABISHOP', u'https://www.codechef.com/COOK32/problems/TABUS', u'https://www.codechef.com/COOK32/problems/TAPALIN', u'https://www.codechef.com/COOK32/problems/TASTR', u'https://www.codechef.com/COOK32/problems/TAVISUAL', u'https://www.codechef.com/COOK33/problems/AMMEAT', u'https://www.codechef.com/COOK33/problems/AMMEAT2', u'https://www.codechef.com/COOK33/problems/AMSTRING', u'https://www.codechef.com/COOK33/problems/LEFEED', u'https://www.codechef.com/COOK34/problems/AMSEQT', u'https://www.codechef.com/COOK34/problems/AMSGAME1', u'https://www.codechef.com/COOK34/problems/AMSGAME2', u'https://www.codechef.com/COOK34/problems/AMXOR', u'https://www.codechef.com/COOK35/problems/ALETHIO', u'https://www.codechef.com/COOK35/problems/ATTIC', u'https://www.codechef.com/COOK35/problems/INVITES', u'https://www.codechef.com/COOK35/problems/TRANSFIG', u'https://www.codechef.com/COOK35/problems/TYTACTIC', u'https://www.codechef.com/COOK36/problems/TAACUTE', u'https://www.codechef.com/COOK36/problems/TAAPLUSB', u'https://www.codechef.com/COOK36/problems/TACHEMIS', u'https://www.codechef.com/COOK36/problems/TACHSTCK', u'https://www.codechef.com/COOK37/problems/DFSGRID', u'https://www.codechef.com/COOK37/problems/DIVQUERY', u'https://www.codechef.com/COOK37/problems/RIGHTRI', u'https://www.codechef.com/COOK37/problems/STRDIG', u'https://www.codechef.com/COOK38/problems/RRCODE', u'https://www.codechef.com/COOK38/problems/RRGAME', u'https://www.codechef.com/COOK38/problems/RRMATRIX', u'https://www.codechef.com/COOK38/problems/RRTREE', u'https://www.codechef.com/COOK39/problems/PPLUCKY', u'https://www.codechef.com/COOK39/problems/PPNUM', u'https://www.codechef.com/COOK39/problems/PPTEST', u'https://www.codechef.com/COOK39/problems/PPTREE', u'https://www.codechef.com/COOK39/problems/PPXOR', u'https://www.codechef.com/COOK40/problems/AMIFIB', u'https://www.codechef.com/COOK40/problems/LOWSUM', u'https://www.codechef.com/COOK40/problems/NEXTNUM', u'https://www.codechef.com/COOK40/problems/NUMPATH', u'https://www.codechef.com/COOK40/problems/TRSUBTR', u'https://www.codechef.com/COOK41/problems/GERALD03', u'https://www.codechef.com/COOK41/problems/GERALD04', u'https://www.codechef.com/COOK41/problems/GERALD05', u'https://www.codechef.com/COOK41/problems/GERALD3', u'https://www.codechef.com/COOK42/problems/CAKE1AM', u'https://www.codechef.com/COOK42/problems/GAMEAAM', u'https://www.codechef.com/COOK42/problems/GANGAAM', u'https://www.codechef.com/COOK43/problems/KINGSHIP', u'https://www.codechef.com/COOK43/problems/LPAIR', u'https://www.codechef.com/COOK43/problems/REMISS', u'https://www.codechef.com/COOK43/problems/UNIQUE', u'https://www.codechef.com/COOK44/problems/ABCSTR', u'https://www.codechef.com/COOK44/problems/DIVGAME', u'https://www.codechef.com/COOK44/problems/DIVIDING', u'https://www.codechef.com/COOK44/problems/MINXOR', u'https://www.codechef.com/COOK44/problems/PALIN3', u'https://www.codechef.com/COOK45/problems/BICO', u'https://www.codechef.com/COOK45/problems/DIREL', u'https://www.codechef.com/COOK45/problems/LOGO', u'https://www.codechef.com/COOK45/problems/SNAPE', u'https://www.codechef.com/COOK45/problems/TCP', u'https://www.codechef.com/COOK46/problems/ANUBGC', u'https://www.codechef.com/COOK46/problems/ANUBTT', u'https://www.codechef.com/COOK46/problems/ANUDTC', u'https://www.codechef.com/COOK46/problems/ANUSAR', u'https://www.codechef.com/COOK46/problems/ANUUND', u'https://www.codechef.com/COOK47/problems/FLAGS', u'https://www.codechef.com/COOK47/problems/KNPSK', u'https://www.codechef.com/COOK47/problems/PNTNG', u'https://www.codechef.com/COOK47/problems/WTHINGS', u'https://www.codechef.com/COOK48/problems/RRCOPY', u'https://www.codechef.com/COOK48/problems/RRDAG', u'https://www.codechef.com/COOK48/problems/RRFRNDS', u'https://www.codechef.com/COOK48/problems/RRSUM', u'https://www.codechef.com/COOK48/problems/RRTREE2', u'https://www.codechef.com/COOK49/problems/CNTDIGIT', u'https://www.codechef.com/COOK49/problems/PERMSUFF', u'https://www.codechef.com/COOK49/problems/SHOOTING', u'https://www.codechef.com/COOK49/problems/TREEGAME', u'https://www.codechef.com/COOK49/problems/TREERGB', u'https://www.codechef.com/COOK50/problems/GRID', u'https://www.codechef.com/COOK50/problems/SUBGCD', u'https://www.codechef.com/COOK50/problems/SUBLCM', u'https://www.codechef.com/COOK50/problems/UPDTREE', u'https://www.codechef.com/COOK50/problems/WW2', u'https://www.codechef.com/COOK51/problems/ANUARM', u'https://www.codechef.com/COOK51/problems/ANUMLA', u'https://www.codechef.com/COOK51/problems/ANUTDP', u'https://www.codechef.com/COOK51/problems/ANUWTA', u'https://www.codechef.com/COOK52/problems/BRACKETS', u'https://www.codechef.com/COOK52/problems/COVERING', u'https://www.codechef.com/COOK52/problems/LSTGRPH', u'https://www.codechef.com/COOK52/problems/MOSTDIST', u'https://www.codechef.com/COOK52/problems/PETERSEN', u'https://www.codechef.com/COOK53/problems/RRJAM', u'https://www.codechef.com/COOK53/problems/RRJOKE', u'https://www.codechef.com/COOK53/problems/RRMTRX2', u'https://www.codechef.com/COOK53/problems/RRPLAYER', u'https://www.codechef.com/COOK53/problems/RRSERVER', u'https://www.codechef.com/COOK54/problems/ANUAAA', u'https://www.codechef.com/COOK54/problems/ANUAHR', u'https://www.codechef.com/COOK54/problems/ANUBTG', u'https://www.codechef.com/COOK54/problems/ANURRZ', u'https://www.codechef.com/COOK54/problems/ANUTHM', u'https://www.codechef.com/COOK55/problems/FOMBRO', u'https://www.codechef.com/COOK55/problems/SPSHORT', u'https://www.codechef.com/COOK55/problems/SUBARRAY', u'https://www.codechef.com/COOK55/problems/TRISQ', u'https://www.codechef.com/COOK55/problems/WORLDCUP', u'https://www.codechef.com/COOK56/problems/DIVGOLD', u'https://www.codechef.com/COOK56/problems/KINT', u'https://www.codechef.com/COOK56/problems/STRAB', u'https://www.codechef.com/COOK56/problems/STRBIT', u'https://www.codechef.com/COOK56/problems/VISITALL', u'https://www.codechef.com/COOK57/problems/AGENTS', u'https://www.codechef.com/COOK57/problems/EQUALITY', u'https://www.codechef.com/COOK57/problems/LFIVES', u'https://www.codechef.com/COOK57/problems/TDRIVER', u'https://www.codechef.com/COOK57/problems/VCS', u'https://www.codechef.com/COOK58/problems/CFRTEST', u'https://www.codechef.com/COOK58/problems/DEVBDAY', u'https://www.codechef.com/COOK58/problems/MINPOLY', u'https://www.codechef.com/COOK58/problems/REARRSTR', u'https://www.codechef.com/COOK58/problems/XORGRID', u'https://www.codechef.com/COOK59/problems/ANKGAME', u'https://www.codechef.com/COOK59/problems/ANKMARKS', u'https://www.codechef.com/COOK59/problems/ANKNIM2', u'https://www.codechef.com/COOK59/problems/ANKPAREN', u'https://www.codechef.com/COOK59/problems/UTMOPR', u'https://www.codechef.com/COOK60/problems/COMB4SUM', u'https://www.codechef.com/COOK60/problems/COPS', u'https://www.codechef.com/COOK60/problems/KNODES', u'https://www.codechef.com/COOK60/problems/SEQTOWER', u'https://www.codechef.com/COOK60/problems/SUMPAIR', u'https://www.codechef.com/COOK61/problems/CARDLINE', u'https://www.codechef.com/COOK61/problems/DUALPAL', u'https://www.codechef.com/COOK61/problems/SEQLCS', u'https://www.codechef.com/COOK61/problems/TWOSTR', u'https://www.codechef.com/COOK61/problems/XORNUBER', u'https://www.codechef.com/COOK62/problems/FRGTNLNG', u'https://www.codechef.com/COOK62/problems/REIGN2', u'https://www.codechef.com/COOK62/problems/SPRNMBRS', u'https://www.codechef.com/COOK62/problems/STACKS', u'https://www.codechef.com/COOK63/problems/ASP', u'https://www.codechef.com/COOK63/problems/FSFSFS', u'https://www.codechef.com/COOK63/problems/PP', u'https://www.codechef.com/COOK63/problems/SLIS', u'https://www.codechef.com/COOK63/problems/STEM', u'https://www.codechef.com/COOK64/problems/SEAARASU', u'https://www.codechef.com/COOK64/problems/SEALINE', u'https://www.codechef.com/COOK64/problems/SEAPAIR', u'https://www.codechef.com/COOK64/problems/SEATR2', u'https://www.codechef.com/COOK65/problems/CHEFARRP', u'https://www.codechef.com/COOK65/problems/CHEFKLCS', u'https://www.codechef.com/COOK65/problems/CHEFQUE', u'https://www.codechef.com/COOK66/problems/CFTREE', u'https://www.codechef.com/COOK66/problems/DESTROY', u'https://www.codechef.com/COOK66/problems/FRUITS', u'https://www.codechef.com/COOK66/problems/MXSM', u'https://www.codechef.com/COOK66/problems/PALSTR', u'https://www.codechef.com/COOK67/problems/PPCTS', u'https://www.codechef.com/COOK67/problems/PPSUM', u'https://www.codechef.com/COOK67/problems/PUPPYPLM', u'https://www.codechef.com/COOK67/problems/TUZGMBR', u'https://www.codechef.com/COOK67/problems/TUZTRN', u'https://www.codechef.com/COOK68/problems/ALTARAY', u'https://www.codechef.com/COOK68/problems/KTHCON', u'https://www.codechef.com/COOK68/problems/NPLANAR', u'https://www.codechef.com/COOK68/problems/ONOZ', u'https://www.codechef.com/COOK68/problems/TWONIM', u'https://www.codechef.com/COOK69/problems/BINTREEQ', u'https://www.codechef.com/COOK69/problems/BITTWIST', u'https://www.codechef.com/COOK69/problems/LCPMAX', u'https://www.codechef.com/COOK69/problems/MOVIEWKN', u'https://www.codechef.com/COOK69/problems/ODDDIV', u'https://www.codechef.com/COOK70/problems/EURO', u'https://www.codechef.com/COOK70/problems/EZNO', u'https://www.codechef.com/COOK70/problems/MAZE', u'https://www.codechef.com/COOK70/problems/P1Z2S', u'https://www.codechef.com/COOK70/problems/TANDEM', u'https://www.codechef.com/COOK71/problems/ANDMIN', u'https://www.codechef.com/COOK71/problems/CAKECUT', u'https://www.codechef.com/COOK71/problems/CHEFLAND', u'https://www.codechef.com/COOK71/problems/RIGHTTRI', u'https://www.codechef.com/COOK71/problems/STICKS', u'https://www.codechef.com/COOK72/problems/CHEFCBA', u'https://www.codechef.com/COOK72/problems/CHEFFED', u'https://www.codechef.com/COOK72/problems/CHEFIHG', u'https://www.codechef.com/COOK72/problems/CHEFLKJ', u'https://www.codechef.com/COOK72/problems/CHEFONM', u'https://www.codechef.com/CORU2015/problems/HOLDIL', u'https://www.codechef.com/CORU2015/problems/LOVEA', u'https://www.codechef.com/CORU2015/problems/SNTYGE', u'https://www.codechef.com/CORU2015/problems/TGOC', u'https://www.codechef.com/COSE2015/problems/CSTRIKE1', u'https://www.codechef.com/COSE2015/problems/CSTRIKE2', u'https://www.codechef.com/COSE2015/problems/CSTRIKE3', u'https://www.codechef.com/COSE2015/problems/CSTRIKE4', u'https://www.codechef.com/COSE2015/problems/CSTRIKE5', u'https://www.codechef.com/COST2015/problems/GWBUT', u'https://www.codechef.com/COST2015/problems/PERFTIME', u'https://www.codechef.com/COST2015/problems/SFRNDS', u'https://www.codechef.com/COST2015/problems/TOFFEES', u'https://www.codechef.com/COST2015/problems/TWOFRNDS', u'https://www.codechef.com/COTG2015/problems/PSG01', u'https://www.codechef.com/COTG2015/problems/PSG02', u'https://www.codechef.com/COTG2015/problems/PSG03', u'https://www.codechef.com/COTG2015/problems/PSG04', u'https://www.codechef.com/COWH2016/problems/DHSPP', u'https://www.codechef.com/COWH2016/problems/INDPAK', u'https://www.codechef.com/COWH2016/problems/JADMST', u'https://www.codechef.com/COWH2016/problems/LVTRI', u'https://www.codechef.com/COWH2016/problems/WT20', u'https://www.codechef.com/COWO1601/problems/BW001', u'https://www.codechef.com/COWO1601/problems/DEB002', u'https://www.codechef.com/COWO1601/problems/SEG003', u'https://www.codechef.com/COWO1601/problems/SQUE1', u'https://www.codechef.com/COWO1601/problems/WAY004', u'https://www.codechef.com/COYA2016/problems/CDYPA01', u'https://www.codechef.com/COYA2016/problems/CDYPA02', u'https://www.codechef.com/COYA2016/problems/CDYPA03', u'https://www.codechef.com/COYA2016/problems/CDYPA04', u'https://www.codechef.com/COYA2016/problems/CDYPA05', u'https://www.codechef.com/COYA2016/problems/CDYPA06', u'https://www.codechef.com/COYA2016/problems/CDYPA07', u'https://www.codechef.com/COYA2016/problems/CDYPA08', u'https://www.codechef.com/COYA2016/problems/CDYPA09', u'https://www.codechef.com/COYA2016/problems/CDYPA10', u'https://www.codechef.com/CRES2016/problems/CRES102', u'https://www.codechef.com/CRES2016/problems/CRES103', u'https://www.codechef.com/CRES2016/problems/CRES104', u'https://www.codechef.com/CRES2016/problems/CRES105', u'https://www.codechef.com/CRNM2013/problems/CRNM1301', u'https://www.codechef.com/CRNM2013/problems/CRNM1302', u'https://www.codechef.com/CRNM2013/problems/CRNM1305', u'https://www.codechef.com/CRNM2014/problems/CRANATOM', u'https://www.codechef.com/CRNM2014/problems/CRANBROM', u'https://www.codechef.com/CRNM2014/problems/CRANCBOY', u'https://www.codechef.com/CRNM2014/problems/CRANCRD', u'https://www.codechef.com/CRNM2014/problems/CRANGIRL', u'https://www.codechef.com/CRNM2014/problems/CRANLOTT', u'https://www.codechef.com/CRNM2015/problems/CRNMBDRP', u'https://www.codechef.com/CRPT2013/problems/CRYPT01', u'https://www.codechef.com/CRPT2013/problems/CRYPT02', u'https://www.codechef.com/CRPT2013/problems/CRYPT03', u'https://www.codechef.com/CRPT2013/problems/CRYPT04', u'https://www.codechef.com/CRPT2013/problems/CRYPT05', u'https://www.codechef.com/CRPT2013/problems/CRYPT06', u'https://www.codechef.com/CRPT2013/problems/CRYPT07', u'https://www.codechef.com/CRPT2013/problems/CRYPT08', u'https://www.codechef.com/CRPT2013/problems/CRYPT09', u'https://www.codechef.com/CSZLPR15/problems/CZPR01', u'https://www.codechef.com/CSZLPR15/problems/CZPR02', u'https://www.codechef.com/CSZLPR15/problems/CZPR03', u'https://www.codechef.com/CSZLPR15/problems/CZPR04', u'https://www.codechef.com/CWAR2015/problems/CWAR01', u'https://www.codechef.com/CWAR2015/problems/CWAR02', u'https://www.codechef.com/CWAR2015/problems/CWAR03', u'https://www.codechef.com/CWAR2015/problems/CWAR04', u'https://www.codechef.com/CWAR2015/problems/CWAR06', u'https://www.codechef.com/CYPH2016/problems/ANOSTR', u'https://www.codechef.com/CYPH2016/problems/HITBIT', u'https://www.codechef.com/CYPH2016/problems/LOSTPW', u'https://www.codechef.com/DBYZ15/problems/DBYZ15A', u'https://www.codechef.com/DBYZ15/problems/DBYZ15C', u'https://www.codechef.com/DBYZ15/problems/DBYZ15F', u'https://www.codechef.com/DBYZ15/problems/DBYZ15T', u'https://www.codechef.com/DBYZ15/problems/STRMCH', u'https://www.codechef.com/DBYZ2013/problems/IITI09', u'https://www.codechef.com/DBYZ2013/problems/IITI11', u'https://www.codechef.com/DBYZ2014/problems/IITI13', u'https://www.codechef.com/DBYZ2014/problems/IITI14', u'https://www.codechef.com/DBYZ2014/problems/IITI15', u'https://www.codechef.com/DBYZ2014/problems/IITI16', u'https://www.codechef.com/DCOD2015/problems/CD1IT1', u'https://www.codechef.com/DCOD2015/problems/CD1IT2', u'https://www.codechef.com/DCOD2015/problems/CD1IT3', u'https://www.codechef.com/DCOD2015/problems/CD1IT4', u'https://www.codechef.com/DCOD2015/problems/CD1IT5', u'https://www.codechef.com/DEC13/problems/ALEXNUMB', u'https://www.codechef.com/DEC13/problems/CHODE', u'https://www.codechef.com/DEC13/problems/CUBE', u'https://www.codechef.com/DEC13/problems/DECORATE', u'https://www.codechef.com/DEC13/problems/MARBLEGF', u'https://www.codechef.com/DEC13/problems/QTREE6', u'https://www.codechef.com/DEC13/problems/REALSET', u'https://www.codechef.com/DEC13/problems/RECTQUER', u'https://www.codechef.com/DEC13/problems/REIGN', u'https://www.codechef.com/DEC13/problems/SMPAINT', u'https://www.codechef.com/DEC14/problems/CAPPLE', u'https://www.codechef.com/DEC14/problems/CHEFBR', u'https://www.codechef.com/DEC14/problems/CHEFPRES', u'https://www.codechef.com/DEC14/problems/DIVIDEN', u'https://www.codechef.com/DEC14/problems/GOODGAL', u'https://www.codechef.com/DEC14/problems/KALKI', u'https://www.codechef.com/DEC14/problems/RIN', u'https://www.codechef.com/DEC14/problems/SANSKAR', u'https://www.codechef.com/DEC14/problems/SEAGCD', u'https://www.codechef.com/DEC14/problems/XORSUB', u'https://www.codechef.com/DEC15/problems/CHCINEMA', u'https://www.codechef.com/DEC15/problems/CHEFFILT', u'https://www.codechef.com/DEC15/problems/CHEFGIRL', u'https://www.codechef.com/DEC15/problems/CHEFST', u'https://www.codechef.com/DEC15/problems/MGCHPERM', u'https://www.codechef.com/DEC15/problems/ORACLCS', u'https://www.codechef.com/DEC15/problems/PLANEDIV', u'https://www.codechef.com/DEC15/problems/SEADIV', u'https://www.codechef.com/DEC15/problems/TANKS', u'https://www.codechef.com/DEC15/problems/WAYPA', u'https://www.codechef.com/DECA2016/problems/DECA01', u'https://www.codechef.com/DECA2016/problems/DECA02', u'https://www.codechef.com/DECA2016/problems/DECA03', u'https://www.codechef.com/DECA2016/problems/DECA05', u'https://www.codechef.com/DIBZ2016/problems/DBZ16RS', u'https://www.codechef.com/DIBZ2016/problems/DBZ16SP', u'https://www.codechef.com/DIBZ2016/problems/DBZ16XOR', u'https://www.codechef.com/DIBZ2016/problems/DBZ16XS1', u'https://www.codechef.com/DIBZ2016/problems/DZ16HITE', u'https://www.codechef.com/DIBZ2016/problems/DZ16KNAP', u'https://www.codechef.com/DIBZ2016/problems/DZ16MAT', u'https://www.codechef.com/DIBZ2016/problems/DZ16SHOP', u'https://www.codechef.com/DIBZ2016/problems/DZ16SUBA', u'https://www.codechef.com/DIBZ2016/problems/DZ16TREE', u'https://www.codechef.com/DINP1501/problems/CHEFARR', u'https://www.codechef.com/DINP1501/problems/CHEFHILL', u'https://www.codechef.com/DINP1501/problems/CHEFMOON', u'https://www.codechef.com/DINP1501/problems/CHEFPOW', u'https://www.codechef.com/DINP1501/problems/CHEFROAD', u'https://www.codechef.com/DINP1501/problems/FIBGCD', u'https://www.codechef.com/DMNT2014/problems/MULFACT', u'https://www.codechef.com/DMNT2014/problems/ORPROFIT', u'https://www.codechef.com/DMNT2014/problems/REVADD', u'https://www.codechef.com/DMNT2014/problems/SNOWWAVE', u'https://www.codechef.com/DMNT2015/problems/AUSCRIC', u'https://www.codechef.com/DMNT2015/problems/BANKPASS', u'https://www.codechef.com/DMNT2015/problems/SNOWLIST', u'https://www.codechef.com/DMNT2015/problems/SNOWPRIM', u'https://www.codechef.com/DMNT2016/problems/DDCC', u'https://www.codechef.com/DMNT2016/problems/POFACT', u'https://www.codechef.com/DMNT2016/problems/POMUSE', u'https://www.codechef.com/DMNT2016/problems/SHISTR', u'https://www.codechef.com/DOEX2015/problems/CHBILL', u'https://www.codechef.com/DOEX2015/problems/DDCP', u'https://www.codechef.com/DOEX2015/problems/LETRI', u'https://www.codechef.com/DOEX2015/problems/VIVAL', u'https://www.codechef.com/DSEC2013/problems/PREE01', u'https://www.codechef.com/DSEC2013/problems/PREE02', u'https://www.codechef.com/DSEC2013/problems/PREE03', u'https://www.codechef.com/DSEC2013/problems/PREE04', u'https://www.codechef.com/DSEC2013/problems/PREE05', u'https://www.codechef.com/DSEC2013/problems/PREE06', u'https://www.codechef.com/DSPF2013/problems/DS15', u'https://www.codechef.com/DSPF2013/problems/DS18', u'https://www.codechef.com/DSPF2013/problems/DS19', u'https://www.codechef.com/DSPF2013/problems/DS5', u'https://www.codechef.com/DSPF2013/problems/DS7', u'https://www.codechef.com/DSPF2013/problems/DS8', u'https://www.codechef.com/DTCT2015/problems/ABSTR', u'https://www.codechef.com/DTCT2015/problems/SSEQ', u'https://www.codechef.com/DTCT2015/problems/SUPERCUP', u'https://www.codechef.com/DTCT2015/problems/VIRAT', u'https://www.codechef.com/DTCT2015/problems/WSERIES', u'https://www.codechef.com/DTMA2015/problems/CHEFHAR', u'https://www.codechef.com/DTMA2015/problems/CHEFU', u'https://www.codechef.com/DTMA2015/problems/LNUM', u'https://www.codechef.com/DTMA2015/problems/NGAME', u'https://www.codechef.com/DTMA2015/problems/RSTRING', u'https://www.codechef.com/EXBT2013/problems/EXEBIT01', u'https://www.codechef.com/EXBT2013/problems/EXEBIT02', u'https://www.codechef.com/EXBT2013/problems/EXEBIT03', u'https://www.codechef.com/EXBT2013/problems/EXEBIT04', u'https://www.codechef.com/EXBT2013/problems/EXEBIT05', u'https://www.codechef.com/EXCT2015/problems/HOBB', u'https://www.codechef.com/EXCT2015/problems/RACEWARS', u'https://www.codechef.com/EXCT2015/problems/TORR', u'https://www.codechef.com/EXCU2015/problems/BEAN', u'https://www.codechef.com/EXCU2015/problems/GOKU', u'https://www.codechef.com/EXCU2015/problems/JERRY', u'https://www.codechef.com/EXCU2015/problems/JHONNY', u'https://www.codechef.com/EXCU2015/problems/OLIVE', u'https://www.codechef.com/EXCU2015/problems/POKE', u'https://www.codechef.com/EXTE2015/problems/CHAOS', u'https://www.codechef.com/EXTE2015/problems/DDPROB', u'https://www.codechef.com/EXTE2015/problems/PALSUB', u'https://www.codechef.com/EXTE2015/problems/PMARK', u'https://www.codechef.com/EXTE2015/problems/RKIRON', u'https://www.codechef.com/FBFRW15/problems/FBFRW1', u'https://www.codechef.com/FBFRW15/problems/FBFRW2', u'https://www.codechef.com/FBFRW15/problems/FBFRW3', u'https://www.codechef.com/FEB13/problems/BUY1GET1', u'https://www.codechef.com/FEB13/problems/CLMBSTRS', u'https://www.codechef.com/FEB13/problems/EFFPAINT', u'https://www.codechef.com/FEB13/problems/LECARDS', u'https://www.codechef.com/FEB13/problems/MBOARD', u'https://www.codechef.com/FEB13/problems/ROC', u'https://www.codechef.com/FEB13/problems/TESTERS', u'https://www.codechef.com/FEB13/problems/TRIQUERY', u'https://www.codechef.com/FEB13/problems/WPLAY', u'https://www.codechef.com/FEB14/problems/CHSEQ22', u'https://www.codechef.com/FEB14/problems/COLARR', u'https://www.codechef.com/FEB14/problems/COT5', u'https://www.codechef.com/FEB14/problems/DAGCH', u'https://www.codechef.com/FEB14/problems/DRGHTS', u'https://www.codechef.com/FEB14/problems/LCPESY', u'https://www.codechef.com/FEB14/problems/LEMOVIE', u'https://www.codechef.com/FEB14/problems/LMATRIX2', u'https://www.codechef.com/FEB14/problems/SUBMIN', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'https://www.codechef.com/FEB15/problems/CHEFCH', u'https://www.codechef.com/FEB15/problems/CHEFEQ', u'https://www.codechef.com/FEB15/problems/CHEFGRPH', u'https://www.codechef.com/FEB15/problems/CHPUZZLE', u'https://www.codechef.com/FEB15/problems/CUSTPRIM', u'https://www.codechef.com/FEB15/problems/DEVLOCK', u'https://www.codechef.com/FEB15/problems/RANKLIST', u'https://www.codechef.com/FEB15/problems/STFM', u'https://www.codechef.com/FEB15/problems/STRQ', u'https://www.codechef.com/FEB15/problems/XRMTRX', u'https://www.codechef.com/FEB16/problems/CALLSCHE', u'https://www.codechef.com/FEB16/problems/CHEFDETE', u'https://www.codechef.com/FEB16/problems/CHEFJR', u'https://www.codechef.com/FEB16/problems/DEVLDISC', u'https://www.codechef.com/FEB16/problems/MTMXSUM', u'https://www.codechef.com/FEB16/problems/RECTLOVE', u'https://www.codechef.com/FEB16/problems/SEAPERMS', u'https://www.codechef.com/FEB16/problems/SEATL', u'https://www.codechef.com/FEB16/problems/STROPR', u'https://www.codechef.com/FEB16/problems/WRDSUM', u'https://www.codechef.com/FLFI2016/problems/CHKAR', u'https://www.codechef.com/FLFI2016/problems/CHKDST', u'https://www.codechef.com/FLFI2016/problems/CHKSEL', u'https://www.codechef.com/FLFI2016/problems/CHKSTR', u'https://www.codechef.com/FLFI2016/problems/CHKTRE', u'https://www.codechef.com/GOC2014/problems/GOC01', u'https://www.codechef.com/GOC2014/problems/GOC02', u'https://www.codechef.com/GOC2014/problems/GOC03', u'https://www.codechef.com/GOC2014/problems/GOC04', u'https://www.codechef.com/GOC2015/problems/ITM001', u'https://www.codechef.com/GOC2015/problems/ITM002', u'https://www.codechef.com/GOC2015/problems/ITM003', u'https://www.codechef.com/GOCD2015/problems/GOC201', u'https://www.codechef.com/GOCD2015/problems/GOC202', u'https://www.codechef.com/GOCD2015/problems/GOC203', u'https://www.codechef.com/GOCD2015/problems/GOC204', u'https://www.codechef.com/GOCD2015/problems/GOC205', u'https://www.codechef.com/GOOG2015/problems/GOOGOL01', u'https://www.codechef.com/GOOG2015/problems/GOOGOL03', u'https://www.codechef.com/GOOG2015/problems/GOOGOL04', u'https://www.codechef.com/GOOG2015/problems/GOOGOL05', u'https://www.codechef.com/HOCO2015/problems/MQRY', u'https://www.codechef.com/HOCO2015/problems/NOWAYS', u'https://www.codechef.com/IC32016/problems/CCFY', u'https://www.codechef.com/IC32016/problems/HBB', u'https://www.codechef.com/IC32016/problems/STD', u'https://www.codechef.com/IC32016/problems/TINT', u'https://www.codechef.com/ICOD2016/problems/ICODE16B', u'https://www.codechef.com/ICOD2016/problems/ICODE16C', u'https://www.codechef.com/ICOD2016/problems/ICODE16D', u'https://www.codechef.com/ICOD2016/problems/ICODE16E', u'https://www.codechef.com/ICOD2016/problems/ICODE16G', u'https://www.codechef.com/ICOD2016/problems/ICODE16H', u'https://www.codechef.com/ICOD2016/problems/ICODE16I', u'https://www.codechef.com/ICOD2016/problems/ICODE16J', u'https://www.codechef.com/ICOD2016/problems/ICODE16K', u'https://www.codechef.com/IGCD2015/problems/IGCDLIFT', u'https://www.codechef.com/IGCD2015/problems/IGCDMAT', u'https://www.codechef.com/IGCD2015/problems/IGCDMNKY', u'https://www.codechef.com/IGNS2014/problems/IGNUS14A', u'https://www.codechef.com/IGNS2014/problems/IGNUS14B', u'https://www.codechef.com/IGNS2014/problems/IGNUS14C', u'https://www.codechef.com/IGNS2014/problems/IGNUS14D', u'https://www.codechef.com/IGNS2014/problems/IGNUS14E', u'https://www.codechef.com/IGNU2015/problems/IGNUS15A', u'https://www.codechef.com/IGNU2015/problems/IGNUS15B', u'https://www.codechef.com/IGNU2015/problems/IGNUS15C', u'https://www.codechef.com/IGNU2015/problems/IGNUS15D', u'https://www.codechef.com/IGNU2015/problems/IGNUS15E', u'https://www.codechef.com/INPR1501/problems/CULPRO', u'https://www.codechef.com/INPR1501/problems/DOMSOL', u'https://www.codechef.com/INPR1502/problems/GLBEGA', u'https://www.codechef.com/INPR1502/problems/REACAR', u'https://www.codechef.com/INPR1503/problems/TWINRO', u'https://www.codechef.com/INPR1503/problems/VOGOZO', u'https://www.codechef.com/INSCRP13/problems/INSCTS1', u'https://www.codechef.com/INSCRP13/problems/INSCTS2', u'https://www.codechef.com/INSCRP13/problems/INSCTS3', u'https://www.codechef.com/INSCRP13/problems/INSCTS4', u'https://www.codechef.com/INSCRP13/problems/INSCTS5', u'https://www.codechef.com/INSM2013/problems/ELOHB', u'https://www.codechef.com/INSM2013/problems/INS01', u'https://www.codechef.com/INSM2013/problems/INS02', u'https://www.codechef.com/INSM2013/problems/INS03', u'https://www.codechef.com/INSM2013/problems/INS05', u'https://www.codechef.com/INSM2013/problems/JETSONS', u'https://www.codechef.com/INSM2013/problems/MONTU', u'https://www.codechef.com/INSM2014/problems/INSM01', u'https://www.codechef.com/INSM2014/problems/INSM02', u'https://www.codechef.com/INSM2014/problems/INSM03', u'https://www.codechef.com/INSM2014/problems/INSM04', u'https://www.codechef.com/INSM2014/problems/INSM06', u'https://www.codechef.com/INST2013/problems/I13BL', u'https://www.codechef.com/INST2013/problems/I13EAF', u'https://www.codechef.com/INST2013/problems/I13POF', u'https://www.codechef.com/INST2013/problems/I13TPG', u'https://www.codechef.com/INST2013/problems/I13TS', u'https://www.codechef.com/INTO2015/problems/DIRTBYTE', u'https://www.codechef.com/INTO2015/problems/FIBCODE', u'https://www.codechef.com/INTO2015/problems/MINTOXIA', u'https://www.codechef.com/INTO2015/problems/T9BYTE', u'https://www.codechef.com/INTO2015/problems/WEEKDAY', u'https://www.codechef.com/INVS2013/problems/CDZ1301', u'https://www.codechef.com/INVS2013/problems/CDZ1302', u'https://www.codechef.com/INVS2013/problems/CDZ1303', u'https://www.codechef.com/INVS2013/problems/CDZ1304', u'https://www.codechef.com/INVS2013/problems/CDZ1305', u'https://www.codechef.com/IOIPRAC/problems/INOI1201', u'https://www.codechef.com/IOIPRAC/problems/INOI1202', u'https://www.codechef.com/IOIPRAC/problems/INOI1301', u'https://www.codechef.com/IOIPRAC/problems/INOI1302', u'https://www.codechef.com/IOIPRAC/problems/INOI1401', u'https://www.codechef.com/IOIPRAC/problems/INOI1402', u'https://www.codechef.com/IOIPRAC/problems/INOI1501', u'https://www.codechef.com/IOIPRAC/problems/INOI1502', u'https://www.codechef.com/ITRA2016/problems/ITRA01', u'https://www.codechef.com/ITRA2016/problems/ITRA03', u'https://www.codechef.com/ITRA2016/problems/ITRA04', u'https://www.codechef.com/ITRA2016/problems/ITRA05', u'https://www.codechef.com/ITRA2016/problems/ITRA06', u'https://www.codechef.com/ITRA2016/problems/ITRA07', u'https://www.codechef.com/ITRA2016/problems/ITRA10', u'https://www.codechef.com/ITRA2016/problems/NPT', u'https://www.codechef.com/ITRX2016/problems/ITRIX16A', u'https://www.codechef.com/ITRX2016/problems/ITRIX16C', u'https://www.codechef.com/ITRX2016/problems/ITRIX16D', u'https://www.codechef.com/ITRX2016/problems/ITRIX16F', u'https://www.codechef.com/JAN13/problems/ANDOOR', u'https://www.codechef.com/JAN13/problems/CHEFHACK', u'https://www.codechef.com/JAN13/problems/CVOTE', u'https://www.codechef.com/JAN13/problems/DIVPRO', u'https://www.codechef.com/JAN13/problems/HOB', u'https://www.codechef.com/JAN13/problems/KILOWHAT', u'https://www.codechef.com/JAN13/problems/LEALCO', u'https://www.codechef.com/JAN13/problems/SALARY', u'https://www.codechef.com/JAN13/problems/THREEDIF', u'https://www.codechef.com/JAN14/problems/CNTDSETS', u'https://www.codechef.com/JAN14/problems/ERROR', u'https://www.codechef.com/JAN14/problems/FGFS', u'https://www.codechef.com/JAN14/problems/FRBSUM', u'https://www.codechef.com/JAN14/problems/METEORAK', u'https://www.codechef.com/JAN14/problems/MTRICK', u'https://www.codechef.com/JAN14/problems/PLZLYKME', u'https://www.codechef.com/JAN14/problems/SEAGRP', u'https://www.codechef.com/JAN14/problems/TAPAIR', u'https://www.codechef.com/JAN14/problems/TOURBUS', u'https://www.codechef.com/JAN15/problems/CHEFSTON', u'https://www.codechef.com/JAN15/problems/CLPERM', u'https://www.codechef.com/JAN15/problems/GCDQ', u'https://www.codechef.com/JAN15/problems/ONEKING', u'https://www.codechef.com/JAN15/problems/QSET', u'https://www.codechef.com/JAN15/problems/RANKA', u'https://www.codechef.com/JAN15/problems/SEALCM', u'https://www.codechef.com/JAN15/problems/SEAND2', u'https://www.codechef.com/JAN15/problems/SEAVOTE', u'https://www.codechef.com/JAN15/problems/XRQRS', u'https://www.codechef.com/JAN16/problems/ASTRD', u'https://www.codechef.com/JAN16/problems/CBALLS', u'https://www.codechef.com/JAN16/problems/CHEFTMA', u'https://www.codechef.com/JAN16/problems/CHINFL', u'https://www.codechef.com/JAN16/problems/CHMKTRPS', u'https://www.codechef.com/JAN16/problems/CYCLRACE', u'https://www.codechef.com/JAN16/problems/DEVPERF', u'https://www.codechef.com/JAN16/problems/DMCS', u'https://www.codechef.com/JAN16/problems/RGAME', u'https://www.codechef.com/JAN16/problems/SEAKAM', u'https://www.codechef.com/JULY13/problems/CHRECT', u'https://www.codechef.com/JULY13/problems/CIRKILL', u'https://www.codechef.com/JULY13/problems/FARASA', u'https://www.codechef.com/JULY13/problems/GALACTIK', u'https://www.codechef.com/JULY13/problems/KPRIME', u'https://www.codechef.com/JULY13/problems/MOU1H', u'https://www.codechef.com/JULY13/problems/NPIN', u'https://www.codechef.com/JULY13/problems/PROB', u'https://www.codechef.com/JULY13/problems/RIVPILE', u'https://www.codechef.com/JULY13/problems/SEASOR', u'https://www.codechef.com/JULY14/problems/CSUB', u'https://www.codechef.com/JULY14/problems/DISHOWN', u'https://www.codechef.com/JULY14/problems/FROGV', u'https://www.codechef.com/JULY14/problems/GERALD09', u'https://www.codechef.com/JULY14/problems/GNUM', u'https://www.codechef.com/JULY14/problems/LEPAINT', u'https://www.codechef.com/JULY14/problems/LUCKG', u'https://www.codechef.com/JULY14/problems/RETPO', u'https://www.codechef.com/JULY14/problems/SEAEQ', u'https://www.codechef.com/JULY14/problems/SGARDEN', u'https://www.codechef.com/JULY15/problems/ADDMUL', u'https://www.codechef.com/JULY15/problems/CHCUBE', u'https://www.codechef.com/JULY15/problems/EASYEX', u'https://www.codechef.com/JULY15/problems/EGBOBRD', u'https://www.codechef.com/JULY15/problems/HAMILG', u'https://www.codechef.com/JULY15/problems/LCKYST', u'https://www.codechef.com/JULY15/problems/MAXDIFFW', u'https://www.codechef.com/JULY15/problems/MCHEF', u'https://www.codechef.com/JULY15/problems/NTHCIR', u'https://www.codechef.com/JULY15/problems/SEAGM2', u'https://www.codechef.com/JULY16/problems/ALLPOLY', u'https://www.codechef.com/JULY16/problems/CHEFARC', u'https://www.codechef.com/JULY16/problems/CHEFELEC', u'https://www.codechef.com/JULY16/problems/CHEFPOL', u'https://www.codechef.com/JULY16/problems/CHEFTET', u'https://www.codechef.com/JULY16/problems/CHSGMNTS', u'https://www.codechef.com/JULY16/problems/CLUSSCHE', u'https://www.codechef.com/JULY16/problems/EGRANDR', u'https://www.codechef.com/JULY16/problems/POLYEVAL', u'https://www.codechef.com/JULY16/problems/WORKCHEF', u'https://www.codechef.com/JUNE13/problems/CHAORNOT', u'https://www.codechef.com/JUNE13/problems/COLLECT', u'https://www.codechef.com/JUNE13/problems/DELISH', u'https://www.codechef.com/JUNE13/problems/LAPIN', u'https://www.codechef.com/JUNE13/problems/LEMOUSE', u'https://www.codechef.com/JUNE13/problems/PERMUTE', u'https://www.codechef.com/JUNE13/problems/PREDICT', u'https://www.codechef.com/JUNE13/problems/SPMATRIX', u'https://www.codechef.com/JUNE13/problems/TKCONVEX', u'https://www.codechef.com/JUNE13/problems/WSTRING', u'https://www.codechef.com/JUNE14/problems/CHEFZOT', u'https://www.codechef.com/JUNE14/problems/DARTS', u'https://www.codechef.com/JUNE14/problems/DIGJUMP', u'https://www.codechef.com/JUNE14/problems/FORGETPW', u'https://www.codechef.com/JUNE14/problems/FUNC', u'https://www.codechef.com/JUNE14/problems/GUESS', u'https://www.codechef.com/JUNE14/problems/LEBLOCKS', u'https://www.codechef.com/JUNE14/problems/MAXPR', u'https://www.codechef.com/JUNE14/problems/SEAARC', u'https://www.codechef.com/JUNE14/problems/TWOCOMP', u'https://www.codechef.com/JUNE15/problems/ANCOIMP', u'https://www.codechef.com/JUNE15/problems/CBARG', u'https://www.codechef.com/JUNE15/problems/CHEFBOOK', u'https://www.codechef.com/JUNE15/problems/CHPLGNS', u'https://www.codechef.com/JUNE15/problems/CHSTR', u'https://www.codechef.com/JUNE15/problems/CONPOIN', u'https://www.codechef.com/JUNE15/problems/FRNDMTNG', u'https://www.codechef.com/JUNE15/problems/MOREFB', u'https://www.codechef.com/JUNE15/problems/SEADIVM', u'https://www.codechef.com/JUNE15/problems/STDYTAB', u'https://www.codechef.com/JUNE16/problems/BINOP', u'https://www.codechef.com/JUNE16/problems/CHCOINSG', u'https://www.codechef.com/JUNE16/problems/CHEARMY', u'https://www.codechef.com/JUNE16/problems/CHEFARK', u'https://www.codechef.com/JUNE16/problems/CHNWGM', u'https://www.codechef.com/JUNE16/problems/CHSQARR', u'https://www.codechef.com/JUNE16/problems/DEVARRAY', u'https://www.codechef.com/JUNE16/problems/FRJUMP', u'https://www.codechef.com/JUNE16/problems/MGCHGEOM', u'https://www.codechef.com/JUNE16/problems/SADPAIRS', u'https://www.codechef.com/JUNE18B/problems/TWOFL', u'https://www.codechef.com/JUNE18B/problems/WRKWAYS', u'https://www.codechef.com/KAN14ROL/problems/ACM14KN1', u'https://www.codechef.com/KAN14ROL/problems/ACM14KN3', u'https://www.codechef.com/KAN14ROL/problems/ACM14KN4', u'https://www.codechef.com/KDAT2013/problems/CHEFREST', u'https://www.codechef.com/KDAT2013/problems/CHEFSTR', u'https://www.codechef.com/KDAT2013/problems/CLUSTER', u'https://www.codechef.com/KDAT2013/problems/DEVILNUM', u'https://www.codechef.com/KDAT2013/problems/WGHTLIF', u'https://www.codechef.com/KG14ROL2/problems/ACM14KP2', u'https://www.codechef.com/KG14ROL2/problems/ACM14KP5', u'https://www.codechef.com/KGP14ROL/problems/ACM14KG2', u'https://www.codechef.com/KGP14ROL/problems/ACM14KG3', u'https://www.codechef.com/KJCC1501/problems/KJCC01', u'https://www.codechef.com/KJCC1501/problems/KJCC02', u'https://www.codechef.com/KJCC1501/problems/KJCC03', u'https://www.codechef.com/KJCC1501/problems/KJCC04', u'https://www.codechef.com/KJCC1501/problems/KJCC05', u'https://www.codechef.com/KJCC1501/problems/KJCC06', u'https://www.codechef.com/KJCC1501/problems/KJCC07', u'https://www.codechef.com/KJCC1501/problems/KJCC08', u'https://www.codechef.com/KJCC2015/problems/ALPHA', u'https://www.codechef.com/KJCC2015/problems/BERMUDA', u'https://www.codechef.com/KJCC2015/problems/LINEAR', u'https://www.codechef.com/KJCC2015/problems/LUCKY', u'https://www.codechef.com/KJCC2015/problems/PIZZA', u'https://www.codechef.com/KJCC2015/problems/WINNER', u'https://www.codechef.com/KJSP1602/problems/KJCC11', u'https://www.codechef.com/KJSP1602/problems/KJCC12', u'https://www.codechef.com/KJSP1602/problems/KJCC13', u'https://www.codechef.com/KJSP1602/problems/KJCC14', u'https://www.codechef.com/KJSP1602/problems/KJCC15', u'https://www.codechef.com/KJSP1602/problems/KJCC16', u'https://www.codechef.com/KJSP1602/problems/KJCC17', u'https://www.codechef.com/KOAT2015/problems/ALTRTREE', u'https://www.codechef.com/KOAT2015/problems/CYCENCR', u'https://www.codechef.com/KOAT2015/problems/KDATZERO', u'https://www.codechef.com/KOAT2015/problems/MASNUM', u'https://www.codechef.com/KOAT2015/problems/MASTRIAN', u'https://www.codechef.com/KOAT2015/problems/PINOCH1', u'https://www.codechef.com/KOAT2015/problems/PINOCH2', u'https://www.codechef.com/KOKT2015/problems/KOKT01', u'https://www.codechef.com/KOKT2015/problems/KOKT02', u'https://www.codechef.com/KOKT2015/problems/KOKT03', u'https://www.codechef.com/KOKT2015/problems/KOKT04', u'https://www.codechef.com/KOKT2015/problems/KOKT05', u'https://www.codechef.com/KOKT2015/problems/KOKT06', u'https://www.codechef.com/KOL15MOS/problems/KOL1504', u'https://www.codechef.com/KOL15MOS/problems/KOL1505', u'https://www.codechef.com/KOL15ROL/problems/KOL15A', u'https://www.codechef.com/KOL15ROL/problems/KOL15B', u'https://www.codechef.com/KOL15ROL/problems/KOL15C', u'https://www.codechef.com/KOPC2016/problems/K16B', u'https://www.codechef.com/KOPC2016/problems/K16C', u'https://www.codechef.com/KOPC2016/problems/K16E', u'https://www.codechef.com/KOPC2016/problems/K16F', u'https://www.codechef.com/KOPC2016/problems/K16G', u'https://www.codechef.com/KOPC2016/problems/K16I', u'https://www.codechef.com/KOPC2016/problems/K16J', u'https://www.codechef.com/KQPM2016/problems/KETFAST', u'https://www.codechef.com/KQPM2016/problems/KETSWAP', u'https://www.codechef.com/KRKS2015/problems/K15A', u'https://www.codechef.com/KRKS2015/problems/K15B', u'https://www.codechef.com/KRKS2015/problems/K15C', u'https://www.codechef.com/KRKS2015/problems/K15D', u'https://www.codechef.com/KRKS2015/problems/K15E', u'https://www.codechef.com/KRKS2015/problems/K15H', u'https://www.codechef.com/KRKS2015/problems/K15J', u'https://www.codechef.com/KRKS2015/problems/K15K', u'https://www.codechef.com/KTBC2015/problems/DELSUM', u'https://www.codechef.com/KTBC2015/problems/KETYES', u'https://www.codechef.com/LGCD2013/problems/LOGIC1', u'https://www.codechef.com/LGCD2013/problems/LOGIC2', u'https://www.codechef.com/LGCD2013/problems/LOGIC3', u'https://www.codechef.com/LGCD2013/problems/LOGIC4', u'https://www.codechef.com/LGCD2013/problems/LOGIC5', u'https://www.codechef.com/LGCD2013/problems/LOGIC6', u'https://www.codechef.com/LOCAPR16/problems/ACDEMY', u'https://www.codechef.com/LOCAPR16/problems/BLTOUR', u'https://www.codechef.com/LOCAPR16/problems/ROLLDEEP', u'https://www.codechef.com/LOCAPR16/problems/RUNNING', u'https://www.codechef.com/LOCAPR16/problems/VSQ2', u'https://www.codechef.com/LOCFEB16/problems/ACRONYM', u'https://www.codechef.com/LOCFEB16/problems/CHOCOLAT', u'https://www.codechef.com/LOCFEB16/problems/ICECREAM', u'https://www.codechef.com/LOCFEB16/problems/LOCRECT', u'https://www.codechef.com/LOCFEB16/problems/POLYDIFR', u'https://www.codechef.com/LOCJUL16/problems/CHEFSPCL', u'https://www.codechef.com/LOCJUL16/problems/FORALN', u'https://www.codechef.com/LOCJUL16/problems/LEVENSUB', u'https://www.codechef.com/LOCJUL16/problems/NUMHOLMS', u'https://www.codechef.com/LOCJUL16/problems/PROGCOMP', u'https://www.codechef.com/LOCJUN16/problems/CHEFLIQD', u'https://www.codechef.com/LOCJUN16/problems/CHSHIFU', u'https://www.codechef.com/LOCJUN16/problems/EXAMCOPY', u'https://www.codechef.com/LOCJUN16/problems/GOODNUMB', u'https://www.codechef.com/LOCJUN16/problems/MXSUBARR', u'https://www.codechef.com/LOCJUN16/problems/PEOPLOVE', u'https://www.codechef.com/LOCJUN16/problems/SKYSCR', u'https://www.codechef.com/LOCMAR16/problems/BTREAT', u'https://www.codechef.com/LOCMAR16/problems/CHEFREC', u'https://www.codechef.com/LOCMAR16/problems/FRAC', u'https://www.codechef.com/LOCMAR16/problems/LOCRPT', u'https://www.codechef.com/LOCMAR16/problems/MOD', u'https://www.codechef.com/LOCMAR16/problems/ROSES', u'https://www.codechef.com/LOCMAR16/problems/VSQ', u'https://www.codechef.com/LOCMAY16/problems/CRACE', u'https://www.codechef.com/LOCMAY16/problems/MDOSA', u'https://www.codechef.com/LOCMAY16/problems/POSTIT', u'https://www.codechef.com/LOCMAY16/problems/TEACHTR', u'https://www.codechef.com/LOCMAY16/problems/VSQ3', u'https://www.codechef.com/LTIME01/problems/COUPON', u'https://www.codechef.com/LTIME01/problems/GRTRIP', u'https://www.codechef.com/LTIME01/problems/NUMFACT', u'https://www.codechef.com/LTIME01/problems/TASTYD', u'https://www.codechef.com/LTIME02/problems/COINCHNG', u'https://www.codechef.com/LTIME02/problems/COOKFOOD', u'https://www.codechef.com/LTIME02/problems/TANGLED', u'https://www.codechef.com/LTIME02/problems/TRIPCOST', u'https://www.codechef.com/LTIME03/problems/AND', u'https://www.codechef.com/LTIME03/problems/MATRIX2', u'https://www.codechef.com/LTIME03/problems/ROUTES', u'https://www.codechef.com/LTIME03/problems/SORTING', u'https://www.codechef.com/LTIME04/problems/CHGIFT1', u'https://www.codechef.com/LTIME04/problems/CHITHH', u'https://www.codechef.com/LTIME04/problems/CHMAGIC', u'https://www.codechef.com/LTIME04/problems/CHXORR', u'https://www.codechef.com/LTIME05/problems/CHFQUEUE', u'https://www.codechef.com/LTIME05/problems/CHGLSTGT', u'https://www.codechef.com/LTIME05/problems/CNR', u'https://www.codechef.com/LTIME05/problems/EXPGAME', u'https://www.codechef.com/LTIME06/problems/LMA1', u'https://www.codechef.com/LTIME06/problems/NUMBERS', u'https://www.codechef.com/LTIME06/problems/PALINDR', u'https://www.codechef.com/LTIME07/problems/MIKE1', u'https://www.codechef.com/LTIME07/problems/MIKE2', u'https://www.codechef.com/LTIME07/problems/SFUNC', u'https://www.codechef.com/LTIME07/problems/SUBARR', u'https://www.codechef.com/LTIME08/problems/CHRL1', u'https://www.codechef.com/LTIME08/problems/CHRL2', u'https://www.codechef.com/LTIME08/problems/CHRL3', u'https://www.codechef.com/LTIME08/problems/CHRL4', u'https://www.codechef.com/LTIME09/problems/LFEB14B', u'https://www.codechef.com/LTIME09/problems/SEAD', u'https://www.codechef.com/LTIME09/problems/SEARRAYS', u'https://www.codechef.com/LTIME10/problems/CORRCHK', u'https://www.codechef.com/LTIME10/problems/SEQCOUNT', u'https://www.codechef.com/LTIME10/problems/SUBSGM', u'https://www.codechef.com/LTIME11/problems/KFORK', u'https://www.codechef.com/LTIME11/problems/MPROD', u'https://www.codechef.com/LTIME12/problems/APPROX2', u'https://www.codechef.com/LTIME12/problems/BNGAME', u'https://www.codechef.com/LTIME12/problems/DIVSUBS', u'https://www.codechef.com/LTIME13/problems/COPRIME3', u'https://www.codechef.com/LTIME13/problems/DYNAINV', u'https://www.codechef.com/LTIME13/problems/SMPAIR', u'https://www.codechef.com/LTIME13/problems/SUBQUERY', u'https://www.codechef.com/LTIME14/problems/TAAND', u'https://www.codechef.com/LTIME14/problems/TAEDITOR', u'https://www.codechef.com/LTIME14/problems/TALCA', u'https://www.codechef.com/LTIME14/problems/TASHIFT', u'https://www.codechef.com/LTIME15/problems/DRAGONST', u'https://www.codechef.com/LTIME15/problems/HHAL', u'https://www.codechef.com/LTIME15/problems/IRONISL', u'https://www.codechef.com/LTIME15/problems/WALL', u'https://www.codechef.com/LTIME16/problems/CHEFA', u'https://www.codechef.com/LTIME16/problems/CHEFB', u'https://www.codechef.com/LTIME16/problems/CHEFC', u'https://www.codechef.com/LTIME16/problems/CHEFD', u'https://www.codechef.com/LTIME17/problems/ANDTUPLE', u'https://www.codechef.com/LTIME17/problems/CSS2', u'https://www.codechef.com/LTIME17/problems/HEADBOB', u'https://www.codechef.com/LTIME17/problems/PHYSICS', u'https://www.codechef.com/LTIME18/problems/DIVIDE', u'https://www.codechef.com/LTIME18/problems/GRIDCONN', u'https://www.codechef.com/LTIME18/problems/WSC', u'https://www.codechef.com/LTIME18/problems/WSCAGAIN', u'https://www.codechef.com/LTIME19/problems/TADELIVE', u'https://www.codechef.com/LTIME19/problems/TAQTREE', u'https://www.codechef.com/LTIME19/problems/TASTRMAT', u'https://www.codechef.com/LTIME19/problems/TASUMOBC', u'https://www.codechef.com/LTIME20/problems/LCH15CD', u'https://www.codechef.com/LTIME20/problems/LCH15JAB', u'https://www.codechef.com/LTIME20/problems/LCH15JEF', u'https://www.codechef.com/LTIME20/problems/LCH15JGH', u'https://www.codechef.com/LTIME21/problems/FCUBE', u'https://www.codechef.com/LTIME21/problems/HLDOTS', u'https://www.codechef.com/LTIME21/problems/LUCKFOUR', u'https://www.codechef.com/LTIME21/problems/WPROB', u'https://www.codechef.com/LTIME22/problems/ASHIGIFT', u'https://www.codechef.com/LTIME22/problems/CHEFANUP', u'https://www.codechef.com/LTIME22/problems/PAINTBOX', u'https://www.codechef.com/LTIME22/problems/UNPAIR', u'https://www.codechef.com/LTIME23/problems/HCLEAN', u'https://www.codechef.com/LTIME23/problems/PALPROB', u'https://www.codechef.com/LTIME23/problems/TICKETS5', u'https://www.codechef.com/LTIME23/problems/XETF', u'https://www.codechef.com/LTIME24/problems/DEVUGRAP', u'https://www.codechef.com/LTIME24/problems/MAXMATCH', u'https://www.codechef.com/LTIME24/problems/MDIST', u'https://www.codechef.com/LTIME24/problems/NWAYS', u'https://www.codechef.com/LTIME25/problems/CHEFAOR', u'https://www.codechef.com/LTIME25/problems/CHEFAXR', u'https://www.codechef.com/LTIME25/problems/CHEFDTRE', u'https://www.codechef.com/LTIME25/problems/CHEFSTLT', u'https://www.codechef.com/LTIME26/problems/GDOG', u'https://www.codechef.com/LTIME26/problems/PUPPYCT', u'https://www.codechef.com/LTIME26/problems/PUPPYGCD', u'https://www.codechef.com/LTIME26/problems/PUPPYGM', u'https://www.codechef.com/LTIME27/problems/CLOST', u'https://www.codechef.com/LTIME27/problems/INVERT', u'https://www.codechef.com/LTIME27/problems/MAKPALIN', u'https://www.codechef.com/LTIME27/problems/MNMX', u'https://www.codechef.com/LTIME28/problems/COFFEE', u'https://www.codechef.com/LTIME28/problems/MANYLIST', u'https://www.codechef.com/LTIME28/problems/PATTMATC', u'https://www.codechef.com/LTIME28/problems/SPALNUM', u'https://www.codechef.com/LTIME29/problems/EMITL', u'https://www.codechef.com/LTIME29/problems/FSTSQ', u'https://www.codechef.com/LTIME29/problems/STDPRGS', u'https://www.codechef.com/LTIME29/problems/SVNTR', u'https://www.codechef.com/LTIME30/problems/BWCELL', u'https://www.codechef.com/LTIME30/problems/KCONNECT', u'https://www.codechef.com/LTIME30/problems/QMAXTRIX', u'https://www.codechef.com/LTIME30/problems/TREEPROD', u'https://www.codechef.com/LTIME31/problems/ABROADS', u'https://www.codechef.com/LTIME31/problems/DISTCODE', u'https://www.codechef.com/LTIME31/problems/EXNETWRK', u'https://www.codechef.com/LTIME31/problems/SEEDLING', u'https://www.codechef.com/LTIME32/problems/EXPALIN', u'https://www.codechef.com/LTIME32/problems/PEAKS', u'https://www.codechef.com/LTIME32/problems/TABLECOV', u'https://www.codechef.com/LTIME32/problems/TRIANGCL', u'https://www.codechef.com/LTIME33/problems/CHEFDOMA', u'https://www.codechef.com/LTIME33/problems/CHEFPOLY', u'https://www.codechef.com/LTIME33/problems/CHEFSOCK', u'https://www.codechef.com/LTIME33/problems/CHEFTIC', u'https://www.codechef.com/LTIME34/problems/ABABAABA', u'https://www.codechef.com/LTIME34/problems/ARRAYSUM', u'https://www.codechef.com/LTIME34/problems/PAIRCLST', u'https://www.codechef.com/LTIME34/problems/SIMPSTAT', u'https://www.codechef.com/LTIME35/problems/COLORING', u'https://www.codechef.com/LTIME35/problems/KSUM', u'https://www.codechef.com/LTIME35/problems/LABEL', u'https://www.codechef.com/LTIME35/problems/TRICOIN', u'https://www.codechef.com/LTIME36/problems/ACBALL', u'https://www.codechef.com/LTIME36/problems/AHWORK', u'https://www.codechef.com/LTIME36/problems/ALOST', u'https://www.codechef.com/LTIME36/problems/ASTRING', u'https://www.codechef.com/LTIME37/problems/LCOLLIS', u'https://www.codechef.com/LTIME37/problems/OMWG', u'https://www.codechef.com/LTIME37/problems/SQNUMBF', u'https://www.codechef.com/LTIME37/problems/TRAVTREE', u'https://www.codechef.com/LTIME58B/problems/ARRP', u'https://www.codechef.com/MARCH13/problems/APPROX', u'https://www.codechef.com/MARCH13/problems/FIRESC', u'https://www.codechef.com/MARCH13/problems/LECOINS', u'https://www.codechef.com/MARCH13/problems/LONGART', u'https://www.codechef.com/MARCH13/problems/MINESWPR', u'https://www.codechef.com/MARCH13/problems/RDF', u'https://www.codechef.com/MARCH13/problems/SUBTREE', u'https://www.codechef.com/MARCH13/problems/TOTR', u'https://www.codechef.com/MARCH13/problems/ZENCALC', u'https://www.codechef.com/MARCH14/problems/ANUGCD', u'https://www.codechef.com/MARCH14/problems/BINTOUR', u'https://www.codechef.com/MARCH14/problems/GERALD07', u'https://www.codechef.com/MARCH14/problems/MIKE3', u'https://www.codechef.com/MARCH14/problems/PROSUM', u'https://www.codechef.com/MARCH14/problems/SEASORT2', u'https://www.codechef.com/MARCH14/problems/SSTORY', u'https://www.codechef.com/MARCH14/problems/STREETTA', u'https://www.codechef.com/MARCH14/problems/TMSLT', u'https://www.codechef.com/MARCH14/problems/WALK', u'https://www.codechef.com/MARCH15/problems/CNOTE', u'https://www.codechef.com/MARCH15/problems/DEVCLASS', u'https://www.codechef.com/MARCH15/problems/EMBED', u'https://www.codechef.com/MARCH15/problems/MTRWY', u'https://www.codechef.com/MARCH15/problems/QCHEF', u'https://www.codechef.com/MARCH15/problems/RNG', u'https://www.codechef.com/MARCH15/problems/SEAPROAR', u'https://www.codechef.com/MARCH15/problems/SIGNWAVE', u'https://www.codechef.com/MARCH15/problems/STRSUB', u'https://www.codechef.com/MARCH15/problems/TREECNT2', u'https://www.codechef.com/MARCH16/problems/CHEFPC', u'https://www.codechef.com/MARCH16/problems/CHEFSPL', u'https://www.codechef.com/MARCH16/problems/CHNGSS', u'https://www.codechef.com/MARCH16/problems/FLOORDIS', u'https://www.codechef.com/MARCH16/problems/HBIRD', u'https://www.codechef.com/MARCH16/problems/MAXISUM', u'https://www.codechef.com/MARCH16/problems/PARITREE', u'https://www.codechef.com/MARCH16/problems/SEATSTR2', u'https://www.codechef.com/MARCH16/problems/STRPALIN', u'https://www.codechef.com/MARCH16/problems/TULIPS', u'https://www.codechef.com/MAY13/problems/CHALENGE', u'https://www.codechef.com/MAY13/problems/CPP', u'https://www.codechef.com/MAY13/problems/FTRIP', u'https://www.codechef.com/MAY13/problems/JUNONGF', u'https://www.codechef.com/MAY13/problems/MSTICK', u'https://www.codechef.com/MAY13/problems/NAME1', u'https://www.codechef.com/MAY13/problems/NAME2', u'https://www.codechef.com/MAY13/problems/QTREE', u'https://www.codechef.com/MAY13/problems/TREE', u'https://www.codechef.com/MAY13/problems/WITMATH', u'https://www.codechef.com/MAY14/problems/ANUMFS', u'https://www.codechef.com/MAY14/problems/CHEFBM', u'https://www.codechef.com/MAY14/problems/COMPILER', u'https://www.codechef.com/MAY14/problems/FUNAGP', u'https://www.codechef.com/MAY14/problems/LEBALONS', u'https://www.codechef.com/MAY14/problems/OJUMPS', u'https://www.codechef.com/MAY14/problems/RRSTONE', u'https://www.codechef.com/MAY14/problems/SEAGM', u'https://www.codechef.com/MAY14/problems/SEINC', u'https://www.codechef.com/MAY15/problems/CBAL', u'https://www.codechef.com/MAY15/problems/CHAPD', u'https://www.codechef.com/MAY15/problems/CHEFCK', u'https://www.codechef.com/MAY15/problems/CHEFRP', u'https://www.codechef.com/MAY15/problems/DEVHAND', u'https://www.codechef.com/MAY15/problems/DEVSTR', u'https://www.codechef.com/MAY15/problems/GRAPHCNT', u'https://www.codechef.com/MAY15/problems/SETDIFF', u'https://www.codechef.com/MAY15/problems/SEZ', u'https://www.codechef.com/MAY15/problems/SHOPPING', u'https://www.codechef.com/MAY16/problems/CHBLLS', u'https://www.codechef.com/MAY16/problems/CHEFMATH', u'https://www.codechef.com/MAY16/problems/CHEFNUM', u'https://www.codechef.com/MAY16/problems/CHEFSOC2', u'https://www.codechef.com/MAY16/problems/DISTNUM2', u'https://www.codechef.com/MAY16/problems/FORESTGA', u'https://www.codechef.com/MAY16/problems/LADDU', u'https://www.codechef.com/MAY16/problems/SEAGCD2', u'https://www.codechef.com/MAY16/problems/SHOP2', u'https://www.codechef.com/MAY16/problems/STARROAD', u'https://www.codechef.com/MDSW2015/problems/ALNUM', u'https://www.codechef.com/MDSW2015/problems/CDTHN', u'https://www.codechef.com/MDSW2015/problems/IDCLOVE', u'https://www.codechef.com/MDSW2015/problems/IDCMSG', u'https://www.codechef.com/MDSW2015/problems/JOV', u'https://www.codechef.com/MTHX2015/problems/CHOCS', u'https://www.codechef.com/MTHX2015/problems/FASTFUR', u'https://www.codechef.com/MTRX2014/problems/APPUZZLE', u'https://www.codechef.com/MTRX2014/problems/DATE', u'https://www.codechef.com/MTRX2014/problems/FLITKT', u'https://www.codechef.com/MTRX2014/problems/JERRYRUN', u'https://www.codechef.com/MTRX2014/problems/JERYFIBO', u'https://www.codechef.com/MTRX2014/problems/STIKGAME', u'https://www.codechef.com/MTRX2014/problems/TOMJER', u'https://www.codechef.com/NCC2014/problems/EXAM', u'https://www.codechef.com/NCC2014/problems/MULDIV', u'https://www.codechef.com/NCC2014/problems/QUAD', u'https://www.codechef.com/NCC2014/problems/RECT', u'https://www.codechef.com/NCC2014/problems/SNET', u'https://www.codechef.com/NCC2014/problems/SNOOKER', u'https://www.codechef.com/NCC2016/problems/NCC01', u'https://www.codechef.com/NCC2016/problems/NCC02', u'https://www.codechef.com/NCC2016/problems/NCC05', u'https://www.codechef.com/NCC2016/problems/NCC06', u'https://www.codechef.com/NCDFEB14/problems/MOVF', u'https://www.codechef.com/NCDFEB14/problems/MPROJ', u'https://www.codechef.com/NCDFEB14/problems/NFEB3', u'https://www.codechef.com/NCDFEB14/problems/NFEB4', u'https://www.codechef.com/NCDFEB14/problems/NFEB5', u'https://www.codechef.com/NCDRN13/problems/GPNY', u'https://www.codechef.com/NCDRN13/problems/SVHR', u'https://www.codechef.com/NCDRN13/problems/TPLOT', u'https://www.codechef.com/NCDRN13/problems/UVHST', u'https://www.codechef.com/NCDRN13/problems/UVTR', u'https://www.codechef.com/NEPR2015/problems/NEXUS00', u'https://www.codechef.com/NEPR2015/problems/NEXUS01', u'https://www.codechef.com/NEPR2015/problems/NEXUS02', u'https://www.codechef.com/NEPR2015/problems/NEXUS03', u'https://www.codechef.com/NOV13/problems/CHEFGM', u'https://www.codechef.com/NOV13/problems/GERALD2', u'https://www.codechef.com/NOV13/problems/JOHNY', u'https://www.codechef.com/NOV13/problems/MCHAIRS', u'https://www.codechef.com/NOV13/problems/MONOPLOY', u'https://www.codechef.com/NOV13/problems/PRETNUM', u'https://www.codechef.com/NOV13/problems/SDSQUARE', u'https://www.codechef.com/NOV13/problems/SEAVEC', u'https://www.codechef.com/NOV13/problems/SPOTWO', u'https://www.codechef.com/NOV14/problems/CHEFSEG', u'https://www.codechef.com/NOV14/problems/CHEFWORD', u'https://www.codechef.com/NOV14/problems/DISCHAR', u'https://www.codechef.com/NOV14/problems/FNCS', u'https://www.codechef.com/NOV14/problems/POWERMUL', u'https://www.codechef.com/NOV14/problems/PRPALN', u'https://www.codechef.com/NOV14/problems/RBTREE', u'https://www.codechef.com/NOV14/problems/SEAORD', u'https://www.codechef.com/NOV14/problems/SEAPERM2', u'https://www.codechef.com/NOV14/problems/SPELL', u'https://www.codechef.com/NOV15/problems/CHEFSHOP', u'https://www.codechef.com/NOV15/problems/CHSTAMP', u'https://www.codechef.com/NOV15/problems/EGRCAKE', u'https://www.codechef.com/NOV15/problems/KFUNC', u'https://www.codechef.com/NOV15/problems/REBTET', u'https://www.codechef.com/NOV15/problems/RECRECOV', u'https://www.codechef.com/NOV15/problems/SMPLSUM', u'https://www.codechef.com/NOV15/problems/TREEP', u'https://www.codechef.com/NOV15/problems/TREEPATH', u'https://www.codechef.com/NPLQ2017/problems/NPL1701A', u'https://www.codechef.com/NPLQ2017/problems/NPL1701B', u'https://www.codechef.com/NPLQ2018/problems/NPLQ18G', u'https://www.codechef.com/NPLTZ15/problems/BALSEQ', u'https://www.codechef.com/NPLTZ15/problems/FINDEX', u'https://www.codechef.com/NPLTZ15/problems/MISNUM', u'https://www.codechef.com/NPLTZ15/problems/MULMAGIC', u'https://www.codechef.com/NPLTZ15/problems/ROTARR', u'https://www.codechef.com/NPLTZ15/problems/SCORES', u'https://www.codechef.com/NUCD2015/problems/NU01', u'https://www.codechef.com/NUCD2015/problems/NU02', u'https://www.codechef.com/NUCD2015/problems/NU03', u'https://www.codechef.com/NUPNMR15/problems/NYUMAT', u'https://www.codechef.com/NUPNMR15/problems/NYUMTEA', u'https://www.codechef.com/NUPNMR15/problems/NYUPIZZA', u'https://www.codechef.com/NUPNMR15/problems/NYUPLOCK', u'https://www.codechef.com/NUPNMR15/problems/NYUSTONE', u'https://www.codechef.com/OCT13/problems/ARRGAME2', u'https://www.codechef.com/OCT13/problems/CAOS3', u'https://www.codechef.com/OCT13/problems/DEG3MAXT', u'https://www.codechef.com/OCT13/problems/EDSTGRID', u'https://www.codechef.com/OCT13/problems/FN', u'https://www.codechef.com/OCT13/problems/HELPLIRA', u'https://www.codechef.com/OCT13/problems/KMHAMHA', u'https://www.codechef.com/OCT13/problems/LEBAMBOO', u'https://www.codechef.com/OCT13/problems/MAANDI', u'https://www.codechef.com/OCT13/problems/SEATRSF', u'https://www.codechef.com/OCT14/problems/CHEFGR', u'https://www.codechef.com/OCT14/problems/CHEFPNT', u'https://www.codechef.com/OCT14/problems/CHEFSQUA', u'https://www.codechef.com/OCT14/problems/FATCHEF', u'https://www.codechef.com/OCT14/problems/PRLADDU', u'https://www.codechef.com/OCT14/problems/PRPOTION', u'https://www.codechef.com/OCT14/problems/QSTRING', u'https://www.codechef.com/OCT14/problems/SEATSR', u'https://www.codechef.com/OCT14/problems/TRIPS', u'https://www.codechef.com/OCT15/problems/ADTRI', u'https://www.codechef.com/OCT15/problems/EFFDELIV', u'https://www.codechef.com/OCT15/problems/JUMP', u'https://www.codechef.com/OCT15/problems/KSPHERES', u'https://www.codechef.com/OCT15/problems/LOTERY', u'https://www.codechef.com/OCT15/problems/MGCHGYM', u'https://www.codechef.com/OCT15/problems/PERSHFTS', u'https://www.codechef.com/OCT15/problems/SUBINC', u'https://www.codechef.com/OCT15/problems/TIMEASR', u'https://www.codechef.com/OCT15/problems/WDTBAM', u'https://www.codechef.com/ODCD2013/problems/LEBALLS', u'https://www.codechef.com/ODCD2013/problems/LEDISHES', u'https://www.codechef.com/ODCD2013/problems/LEMAGIK', u'https://www.codechef.com/ODCD2013/problems/LEMARKS', u'https://www.codechef.com/ODCD2013/problems/LEPROM', u'https://www.codechef.com/ODCD2013/problems/LETHOR', u'https://www.codechef.com/ODCD2013/problems/LEWINE', u'https://www.codechef.com/OVNT2012/problems/ALIENC', u'https://www.codechef.com/OVNT2012/problems/CHOCOAL', u'https://www.codechef.com/OVNT2012/problems/GNUMBER', u'https://www.codechef.com/OVNT2012/problems/SVEARTH', u'https://www.codechef.com/OVRN2013/problems/CATCH', u'https://www.codechef.com/OVRN2013/problems/RECRUIT', u'https://www.codechef.com/PRACTICE/problems/A1', u'https://www.codechef.com/PRACTICE/problems/A2', u'https://www.codechef.com/PRACTICE/problems/A3', u'https://www.codechef.com/PRACTICE/problems/A4', u'https://www.codechef.com/PRACTICE/problems/A6', u'https://www.codechef.com/PRACTICE/problems/ABA15E', u'https://www.codechef.com/PRACTICE/problems/ABA15F', u'https://www.codechef.com/PRACTICE/problems/ABA15G', u'https://www.codechef.com/PRACTICE/problems/ABABAABA', u'https://www.codechef.com/PRACTICE/problems/ABACUS01', u'https://www.codechef.com/PRACTICE/problems/ABACUS02', u'https://www.codechef.com/PRACTICE/problems/ABACUS03', u'https://www.codechef.com/PRACTICE/problems/ABACUS04', u'https://www.codechef.com/PRACTICE/problems/ABACUS05', u'https://www.codechef.com/PRACTICE/problems/ABACUS06', u'https://www.codechef.com/PRACTICE/problems/ABCSTR', u'https://www.codechef.com/PRACTICE/problems/ABHMNSTR', u'https://www.codechef.com/PRACTICE/problems/ABHSTR', u'https://www.codechef.com/PRACTICE/problems/ABROADS', u'https://www.codechef.com/PRACTICE/problems/ABSNUM', u'https://www.codechef.com/PRACTICE/problems/ABSTR', u'https://www.codechef.com/PRACTICE/problems/ACBALL', u'https://www.codechef.com/PRACTICE/problems/ACDEMY', u'https://www.codechef.com/PRACTICE/problems/ACM14AM1', u'https://www.codechef.com/PRACTICE/problems/ACM14AM2', u'https://www.codechef.com/PRACTICE/problems/ACM14AM3', u'https://www.codechef.com/PRACTICE/problems/ACM14AM4', u'https://www.codechef.com/PRACTICE/problems/ACM14AM5', u'https://www.codechef.com/PRACTICE/problems/ACM14KG1', u'https://www.codechef.com/PRACTICE/problems/ACM14KG2', u'https://www.codechef.com/PRACTICE/problems/ACM14KG3', u'https://www.codechef.com/PRACTICE/problems/ACM14KG5', u'https://www.codechef.com/PRACTICE/problems/ACM14KN1', u'https://www.codechef.com/PRACTICE/problems/ACM14KN2', u'https://www.codechef.com/PRACTICE/problems/ACM14KN3', u'https://www.codechef.com/PRACTICE/problems/ACM14KN4', u'https://www.codechef.com/PRACTICE/problems/ACM14KP1', u'https://www.codechef.com/PRACTICE/problems/ACM14KP2', u'https://www.codechef.com/PRACTICE/problems/ACM14KP3', u'https://www.codechef.com/PRACTICE/problems/ACM14KP5', u'https://www.codechef.com/PRACTICE/problems/ACMICL01', u'https://www.codechef.com/PRACTICE/problems/ACMICL02', u'https://www.codechef.com/PRACTICE/problems/ACMICL03', u'https://www.codechef.com/PRACTICE/problems/ACMICL1', u'https://www.codechef.com/PRACTICE/problems/ACMICL2', u'https://www.codechef.com/PRACTICE/problems/ACMICL3', u'https://www.codechef.com/PRACTICE/problems/ACMKANPB', u'https://www.codechef.com/PRACTICE/problems/ACMKANPD', u'https://www.codechef.com/PRACTICE/problems/ACRONYM', u'https://www.codechef.com/PRACTICE/problems/ACUGRAM', u'https://www.codechef.com/PRACTICE/problems/ACUGRAY', u'https://www.codechef.com/PRACTICE/problems/ACULIST', u'https://www.codechef.com/PRACTICE/problems/AD1', u'https://www.codechef.com/PRACTICE/problems/AD2', u'https://www.codechef.com/PRACTICE/problems/ADDFRAC', u'https://www.codechef.com/PRACTICE/problems/ADDMUL', u'https://www.codechef.com/PRACTICE/problems/ADIGIT', u'https://www.codechef.com/PRACTICE/problems/ADMAG', u'https://www.codechef.com/PRACTICE/problems/ADTRI', u'https://www.codechef.com/PRACTICE/problems/AEHASH', u'https://www.codechef.com/PRACTICE/problems/AFDMSD', u'https://www.codechef.com/PRACTICE/problems/AGRAPH', u'https://www.codechef.com/PRACTICE/problems/AHWORK', u'https://www.codechef.com/PRACTICE/problems/AKASHPRB', u'https://www.codechef.com/PRACTICE/problems/ALETHIO', u'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', u'https://www.codechef.com/PRACTICE/problems/ALFZ01', u'https://www.codechef.com/PRACTICE/problems/ALFZ03', u'https://www.codechef.com/PRACTICE/problems/ALFZ07', u'https://www.codechef.com/PRACTICE/problems/ALG06', u'https://www.codechef.com/PRACTICE/problems/ALG2N', u'https://www.codechef.com/PRACTICE/problems/ALGFACT', u'https://www.codechef.com/PRACTICE/problems/ALGPRX', u'https://www.codechef.com/PRACTICE/problems/ALIENC', u'https://www.codechef.com/PRACTICE/problems/ALK1104', u'https://www.codechef.com/PRACTICE/problems/ALK1105', u'https://www.codechef.com/PRACTICE/problems/ALK13A', u'https://www.codechef.com/PRACTICE/problems/ALK13C', u'https://www.codechef.com/PRACTICE/problems/ALK13G', u'https://www.codechef.com/PRACTICE/problems/ALLIANCE', u'https://www.codechef.com/PRACTICE/problems/ALLPOLY', u'https://www.codechef.com/PRACTICE/problems/ALMA01', u'https://www.codechef.com/PRACTICE/problems/ALMA02', u'https://www.codechef.com/PRACTICE/problems/ALMA03', u'https://www.codechef.com/PRACTICE/problems/ALMA04', u'https://www.codechef.com/PRACTICE/problems/ALMA05', u'https://www.codechef.com/PRACTICE/problems/ALMOSTPR', u'https://www.codechef.com/PRACTICE/problems/ALNUM', u'https://www.codechef.com/PRACTICE/problems/ALOST', u'https://www.codechef.com/PRACTICE/problems/ALPHA', u'https://www.codechef.com/PRACTICE/problems/ALTARAY', u'https://www.codechef.com/PRACTICE/problems/AMAEXPER', u'https://www.codechef.com/PRACTICE/problems/AMBDAY', u'https://www.codechef.com/PRACTICE/problems/AMCAM', u'https://www.codechef.com/PRACTICE/problems/AMCAS', u'https://www.codechef.com/PRACTICE/problems/AMCS01', u'https://www.codechef.com/PRACTICE/problems/AMCS03', u'https://www.codechef.com/PRACTICE/problems/AMCS04', u'https://www.codechef.com/PRACTICE/problems/AMCS05', u'https://www.codechef.com/PRACTICE/problems/AMCS06', u'https://www.codechef.com/PRACTICE/problems/AMIFIB', u'https://www.codechef.com/PRACTICE/problems/AMJMP', u'https://www.codechef.com/PRACTICE/problems/AMLPALIN', u'https://www.codechef.com/PRACTICE/problems/AMMEAT', u'https://www.codechef.com/PRACTICE/problems/AMMEAT2', u'https://www.codechef.com/PRACTICE/problems/AMR14B', u'https://www.codechef.com/PRACTICE/problems/AMR14C', u'https://www.codechef.com/PRACTICE/problems/AMR14D', u'https://www.codechef.com/PRACTICE/problems/AMR14E', u'https://www.codechef.com/PRACTICE/problems/AMR14F', u'https://www.codechef.com/PRACTICE/problems/AMR14G', u'https://www.codechef.com/PRACTICE/problems/AMR14H', u'https://www.codechef.com/PRACTICE/problems/AMR14I', u'https://www.codechef.com/PRACTICE/problems/AMR14J', u'https://www.codechef.com/PRACTICE/problems/AMR15A', u'https://www.codechef.com/PRACTICE/problems/AMR15B', u'https://www.codechef.com/PRACTICE/problems/AMR15C', u'https://www.codechef.com/PRACTICE/problems/AMR15D', u'https://www.codechef.com/PRACTICE/problems/AMR15E', u'https://www.codechef.com/PRACTICE/problems/AMROOK', u'https://www.codechef.com/PRACTICE/problems/AMSEQT', u'https://www.codechef.com/PRACTICE/problems/AMSGAME1', u'https://www.codechef.com/PRACTICE/problems/AMSGAME2', u'https://www.codechef.com/PRACTICE/problems/AMSS', u'https://www.codechef.com/PRACTICE/problems/AMSTRING', u'https://www.codechef.com/PRACTICE/problems/AMXOR', u'https://www.codechef.com/PRACTICE/problems/ANAGRAM', u'https://www.codechef.com/PRACTICE/problems/ANCOIMP', u'https://www.codechef.com/PRACTICE/problems/AND', u'https://www.codechef.com/PRACTICE/problems/ANDMAT', u'https://www.codechef.com/PRACTICE/problems/ANDMIN', u'https://www.codechef.com/PRACTICE/problems/ANDTUPLE', u'https://www.codechef.com/PRACTICE/problems/ANKGAME', u'https://www.codechef.com/PRACTICE/problems/ANKLEX', u'https://www.codechef.com/PRACTICE/problems/ANKMARKS', u'https://www.codechef.com/PRACTICE/problems/ANKNIM2', u'https://www.codechef.com/PRACTICE/problems/ANKPAL', u'https://www.codechef.com/PRACTICE/problems/ANKPAREN', u'https://www.codechef.com/PRACTICE/problems/ANUAAA', u'https://www.codechef.com/PRACTICE/problems/ANUAHR', u'https://www.codechef.com/PRACTICE/problems/ANUARM', u'https://www.codechef.com/PRACTICE/problems/ANUBGC', u'https://www.codechef.com/PRACTICE/problems/ANUBTG', u'https://www.codechef.com/PRACTICE/problems/ANUBTT', u'https://www.codechef.com/PRACTICE/problems/ANUCBC', u'https://www.codechef.com/PRACTICE/problems/ANUDTC', u'https://www.codechef.com/PRACTICE/problems/ANUGCD', u'https://www.codechef.com/PRACTICE/problems/ANUMFS', u'https://www.codechef.com/PRACTICE/problems/ANUMLA', u'https://www.codechef.com/PRACTICE/problems/ANURRZ', u'https://www.codechef.com/PRACTICE/problems/ANUSAR', u'https://www.codechef.com/PRACTICE/problems/ANUTDP', u'https://www.codechef.com/PRACTICE/problems/ANUTHM', u'https://www.codechef.com/PRACTICE/problems/ANUUND', u'https://www.codechef.com/PRACTICE/problems/ANUWTA', u'https://www.codechef.com/PRACTICE/problems/AOPN', u'https://www.codechef.com/PRACTICE/problems/AOU', u'https://www.codechef.com/PRACTICE/problems/APGE01', u'https://www.codechef.com/PRACTICE/problems/APGP', u'https://www.codechef.com/PRACTICE/problems/APOWB', u'https://www.codechef.com/PRACTICE/problems/APPROX', u'https://www.codechef.com/PRACTICE/problems/APPROX2', u'https://www.codechef.com/PRACTICE/problems/APPUZZLE', u'https://www.codechef.com/PRACTICE/problems/ARAN01', u'https://www.codechef.com/PRACTICE/problems/ARAN03', u'https://www.codechef.com/PRACTICE/problems/ARAN07', u'https://www.codechef.com/PRACTICE/problems/ARB', u'https://www.codechef.com/PRACTICE/problems/ARHN01', u'https://www.codechef.com/PRACTICE/problems/ARHN03', u'https://www.codechef.com/PRACTICE/problems/ARHN04', u'https://www.codechef.com/PRACTICE/problems/ARHN06', u'https://www.codechef.com/PRACTICE/problems/ARHN07', u'https://www.codechef.com/PRACTICE/problems/ARHN08', u'https://www.codechef.com/PRACTICE/problems/ARHN09', u'https://www.codechef.com/PRACTICE/problems/ARHN10', u'https://www.codechef.com/PRACTICE/problems/ARITHM', u'https://www.codechef.com/PRACTICE/problems/ARRANGE', u'https://www.codechef.com/PRACTICE/problems/ARRAY', u'https://www.codechef.com/PRACTICE/problems/ARRAYSUM', u'https://www.codechef.com/PRACTICE/problems/ARRAYTRM', u'https://www.codechef.com/PRACTICE/problems/ARRGAME2', u'https://www.codechef.com/PRACTICE/problems/ARRGM', u'https://www.codechef.com/PRACTICE/problems/ARTHMNCY', u'https://www.codechef.com/PRACTICE/problems/ASHIGIFT', u'https://www.codechef.com/PRACTICE/problems/ASP', u'https://www.codechef.com/PRACTICE/problems/ASTRD', u'https://www.codechef.com/PRACTICE/problems/ASTRGAME', u'https://www.codechef.com/PRACTICE/problems/ASTRING', u'https://www.codechef.com/PRACTICE/problems/ASYA1', u'https://www.codechef.com/PRACTICE/problems/ATKCTR', u'https://www.codechef.com/PRACTICE/problems/ATM5', u'https://www.codechef.com/PRACTICE/problems/ATOM', u'https://www.codechef.com/PRACTICE/problems/ATOMS', u'https://www.codechef.com/PRACTICE/problems/ATTIC', u'https://www.codechef.com/PRACTICE/problems/AUDH', u'https://www.codechef.com/PRACTICE/problems/AUEC', u'https://www.codechef.com/PRACTICE/problems/AUNX', u'https://www.codechef.com/PRACTICE/problems/AUPM', u'https://www.codechef.com/PRACTICE/problems/AUSAG', u'https://www.codechef.com/PRACTICE/problems/AUSASA', u'https://www.codechef.com/PRACTICE/problems/AUSCRIC', u'https://www.codechef.com/PRACTICE/problems/AUSF', u'https://www.codechef.com/PRACTICE/problems/AUTHEN', u'https://www.codechef.com/PRACTICE/problems/AVATAR', u'https://www.codechef.com/PRACTICE/problems/AVDWAST', u'https://www.codechef.com/PRACTICE/problems/AVGSCORE', u'https://www.codechef.com/PRACTICE/problems/AVISKR01', u'https://www.codechef.com/PRACTICE/problems/AVISKR02', u'https://www.codechef.com/PRACTICE/problems/AX04', u'https://www.codechef.com/PRACTICE/problems/AXR1P2', u'https://www.codechef.com/PRACTICE/problems/AXR1P3', u'https://www.codechef.com/PRACTICE/problems/AXR3P3', u'https://www.codechef.com/PRACTICE/problems/AXR3P4', u'https://www.codechef.com/PRACTICE/problems/B1', u'https://www.codechef.com/PRACTICE/problems/B5', u'https://www.codechef.com/PRACTICE/problems/BACO1601', u'https://www.codechef.com/PRACTICE/problems/BACO1602', u'https://www.codechef.com/PRACTICE/problems/BACO1603', u'https://www.codechef.com/PRACTICE/problems/BACO1604', u'https://www.codechef.com/PRACTICE/problems/BACO1605', u'https://www.codechef.com/PRACTICE/problems/BALLS', u'https://www.codechef.com/PRACTICE/problems/BALPRIME', u'https://www.codechef.com/PRACTICE/problems/BALSEQ', u'https://www.codechef.com/PRACTICE/problems/BANKPASS', u'https://www.codechef.com/PRACTICE/problems/BANROB', u'https://www.codechef.com/PRACTICE/problems/BAO', u'https://www.codechef.com/PRACTICE/problems/BASECHG', u'https://www.codechef.com/PRACTICE/problems/BBSYSTEM', u'https://www.codechef.com/PRACTICE/problems/BC1', u'https://www.codechef.com/PRACTICE/problems/BEATRICE', u'https://www.codechef.com/PRACTICE/problems/BEAUTY', u'https://www.codechef.com/PRACTICE/problems/BESTBATS', u'https://www.codechef.com/PRACTICE/problems/BEX', u'https://www.codechef.com/PRACTICE/problems/BGSM', u'https://www.codechef.com/PRACTICE/problems/BICO', u'https://www.codechef.com/PRACTICE/problems/BIGO01', u'https://www.codechef.com/PRACTICE/problems/BIGO02', u'https://www.codechef.com/PRACTICE/problems/BIGO03', u'https://www.codechef.com/PRACTICE/problems/BIGO04', u'https://www.codechef.com/PRACTICE/problems/BIGO05', u'https://www.codechef.com/PRACTICE/problems/BIGOF01', u'https://www.codechef.com/PRACTICE/problems/BIGOF02', u'https://www.codechef.com/PRACTICE/problems/BIGOF06', u'https://www.codechef.com/PRACTICE/problems/BIGP', u'https://www.codechef.com/PRACTICE/problems/BIGPIZA', u'https://www.codechef.com/PRACTICE/problems/BINGCD', u'https://www.codechef.com/PRACTICE/problems/BINOP', u'https://www.codechef.com/PRACTICE/problems/BINTOUR', u'https://www.codechef.com/PRACTICE/problems/BINTREE', u'https://www.codechef.com/PRACTICE/problems/BINTREEQ', u'https://www.codechef.com/PRACTICE/problems/BIPIN3', u'https://www.codechef.com/PRACTICE/problems/BISHOP', u'https://www.codechef.com/PRACTICE/problems/BIT', u'https://www.codechef.com/PRACTICE/problems/BIT1501', u'https://www.codechef.com/PRACTICE/problems/BIT1502', u'https://www.codechef.com/PRACTICE/problems/BIT1506', u'https://www.codechef.com/PRACTICE/problems/BITCJ1', u'https://www.codechef.com/PRACTICE/problems/BITCJ4', u'https://www.codechef.com/PRACTICE/problems/BITCJ5', u'https://www.codechef.com/PRACTICE/problems/BITS02', u'https://www.codechef.com/PRACTICE/problems/BITS3', u'https://www.codechef.com/PRACTICE/problems/BITS4', u'https://www.codechef.com/PRACTICE/problems/BITTWIST', u'https://www.codechef.com/PRACTICE/problems/BLDNGS', u'https://www.codechef.com/PRACTICE/problems/BLTOUR', u'https://www.codechef.com/PRACTICE/problems/BNGAME', u'https://www.codechef.com/PRACTICE/problems/BOGOSORT', u'https://www.codechef.com/PRACTICE/problems/BOTM', u'https://www.codechef.com/PRACTICE/problems/BPHC03', u'https://www.codechef.com/PRACTICE/problems/BRACKETS', u'https://www.codechef.com/PRACTICE/problems/BRCKMT', u'https://www.codechef.com/PRACTICE/problems/BRCKTSRM', u'https://www.codechef.com/PRACTICE/problems/BROKPHON', u'https://www.codechef.com/PRACTICE/problems/BST', u'https://www.codechef.com/PRACTICE/problems/BSTCLASS', u'https://www.codechef.com/PRACTICE/problems/BSTRLCP', u'https://www.codechef.com/PRACTICE/problems/BTCD14F', u'https://www.codechef.com/PRACTICE/problems/BTCD1503', u'https://www.codechef.com/PRACTICE/problems/BTCD1504', u'https://www.codechef.com/PRACTICE/problems/BTCD1506', u'https://www.codechef.com/PRACTICE/problems/BTCD1510', u'https://www.codechef.com/PRACTICE/problems/BTCO1611', u'https://www.codechef.com/PRACTICE/problems/BTCODE_A', u'https://www.codechef.com/PRACTICE/problems/BTCODE_G', u'https://www.codechef.com/PRACTICE/problems/BTREAT', u'https://www.codechef.com/PRACTICE/problems/BTREEKK', u'https://www.codechef.com/PRACTICE/problems/BUGATACK', u'https://www.codechef.com/PRACTICE/problems/BUTTONS', u'https://www.codechef.com/PRACTICE/problems/BUY1GET1', u'https://www.codechef.com/PRACTICE/problems/BUYING2', u'https://www.codechef.com/PRACTICE/problems/BW001', u'https://www.codechef.com/PRACTICE/problems/BWALL', u'https://www.codechef.com/PRACTICE/problems/BWCELL', u'https://www.codechef.com/PRACTICE/problems/BWGAME', u'https://www.codechef.com/PRACTICE/problems/BWINDOWS', u'https://www.codechef.com/PRACTICE/problems/BWKNIGHT', u'https://www.codechef.com/PRACTICE/problems/BWTREE', u'https://www.codechef.com/PRACTICE/problems/BYCD1602', u'https://www.codechef.com/PRACTICE/problems/BYCD1606', u'https://www.codechef.com/PRACTICE/problems/BYCD1607', u'https://www.codechef.com/PRACTICE/problems/BYTEISLE', u'https://www.codechef.com/PRACTICE/problems/BYTES1', u'https://www.codechef.com/PRACTICE/problems/BYTES11', u'https://www.codechef.com/PRACTICE/problems/BYTES12', u'https://www.codechef.com/PRACTICE/problems/BYTES13', u'https://www.codechef.com/PRACTICE/problems/BYTES14', u'https://www.codechef.com/PRACTICE/problems/BYTES15', u'https://www.codechef.com/PRACTICE/problems/BYTES3', u'https://www.codechef.com/PRACTICE/problems/BYTES4', u'https://www.codechef.com/PRACTICE/problems/BYTES6', u'https://www.codechef.com/PRACTICE/problems/BYTESA', u'https://www.codechef.com/PRACTICE/problems/BYTESE', u'https://www.codechef.com/PRACTICE/problems/C2', u'https://www.codechef.com/PRACTICE/problems/C3', u'https://www.codechef.com/PRACTICE/problems/C3002', u'https://www.codechef.com/PRACTICE/problems/C3003', u'https://www.codechef.com/PRACTICE/problems/C3004', u'https://www.codechef.com/PRACTICE/problems/C5', u'https://www.codechef.com/PRACTICE/problems/CAKE1AM', u'https://www.codechef.com/PRACTICE/problems/CAKECUT', u'https://www.codechef.com/PRACTICE/problems/CAKEDOOM', u'https://www.codechef.com/PRACTICE/problems/CALLSCHE', u'https://www.codechef.com/PRACTICE/problems/CAMERAS', u'https://www.codechef.com/PRACTICE/problems/CAMERAS2', u'https://www.codechef.com/PRACTICE/problems/CANDLE', u'https://www.codechef.com/PRACTICE/problems/CANDYGAM', u'https://www.codechef.com/PRACTICE/problems/CAOS1', u'https://www.codechef.com/PRACTICE/problems/CAOS2', u'https://www.codechef.com/PRACTICE/problems/CAOS3', u'https://www.codechef.com/PRACTICE/problems/CAPPLE', u'https://www.codechef.com/PRACTICE/problems/CARCOUNT', u'https://www.codechef.com/PRACTICE/problems/CARDINAL', u'https://www.codechef.com/PRACTICE/problems/CARDLINE', u'https://www.codechef.com/PRACTICE/problems/CARDSHUF', u'https://www.codechef.com/PRACTICE/problems/CARLOS', u'https://www.codechef.com/PRACTICE/problems/CARVANS', u'https://www.codechef.com/PRACTICE/problems/CATCH', u'https://www.codechef.com/PRACTICE/problems/CB01', u'https://www.codechef.com/PRACTICE/problems/CB02', u'https://www.codechef.com/PRACTICE/problems/CB03', u'https://www.codechef.com/PRACTICE/problems/CB04', u'https://www.codechef.com/PRACTICE/problems/CB07', u'https://www.codechef.com/PRACTICE/problems/CB1', u'https://www.codechef.com/PRACTICE/problems/CB2', u'https://www.codechef.com/PRACTICE/problems/CB20Q5', u'https://www.codechef.com/PRACTICE/problems/CB3', u'https://www.codechef.com/PRACTICE/problems/CB4', u'https://www.codechef.com/PRACTICE/problems/CBAL', u'https://www.codechef.com/PRACTICE/problems/CBALLS', u'https://www.codechef.com/PRACTICE/problems/CBARG', u'https://www.codechef.com/PRACTICE/problems/CBARS', u'https://www.codechef.com/PRACTICE/problems/CBLOCKS', u'https://www.codechef.com/PRACTICE/problems/CC', u'https://www.codechef.com/PRACTICE/problems/CC2', u'https://www.codechef.com/PRACTICE/problems/CCAURCC5', u'https://www.codechef.com/PRACTICE/problems/CCCB03', u'https://www.codechef.com/PRACTICE/problems/CCCS1', u'https://www.codechef.com/PRACTICE/problems/CCCS2', u'https://www.codechef.com/PRACTICE/problems/CD101', u'https://www.codechef.com/PRACTICE/problems/CD1IT1', u'https://www.codechef.com/PRACTICE/problems/CD1IT2', u'https://www.codechef.com/PRACTICE/problems/CD1IT3', u'https://www.codechef.com/PRACTICE/problems/CD1IT4', u'https://www.codechef.com/PRACTICE/problems/CD1IT5', u'https://www.codechef.com/PRACTICE/problems/CD202', u'https://www.codechef.com/PRACTICE/problems/CDBSTR05', u'https://www.codechef.com/PRACTICE/problems/CDBSTR07', u'https://www.codechef.com/PRACTICE/problems/CDBSTR2', u'https://www.codechef.com/PRACTICE/problems/CDBSTR7', u'https://www.codechef.com/PRACTICE/problems/CDCR15_1', u'https://www.codechef.com/PRACTICE/problems/CDFX01', u'https://www.codechef.com/PRACTICE/problems/CDFX02', u'https://www.codechef.com/PRACTICE/problems/CDFX03', u'https://www.codechef.com/PRACTICE/problems/CDFX04', u'https://www.codechef.com/PRACTICE/problems/CDGO1603', u'https://www.codechef.com/PRACTICE/problems/CDM01', u'https://www.codechef.com/PRACTICE/problems/CDM02', u'https://www.codechef.com/PRACTICE/problems/CDM03', u'https://www.codechef.com/PRACTICE/problems/CDME03', u'https://www.codechef.com/PRACTICE/problems/CDMN01', u'https://www.codechef.com/PRACTICE/problems/CDMN03', u'https://www.codechef.com/PRACTICE/problems/CDMN05', u'https://www.codechef.com/PRACTICE/problems/CDMN1601', u'https://www.codechef.com/PRACTICE/problems/CDMN1602', u'https://www.codechef.com/PRACTICE/problems/CDMT06', u'https://www.codechef.com/PRACTICE/problems/CDMU02', u'https://www.codechef.com/PRACTICE/problems/CDOL01', u'https://www.codechef.com/PRACTICE/problems/CDOLP1', u'https://www.codechef.com/PRACTICE/problems/CDOLP3', u'https://www.codechef.com/PRACTICE/problems/CDOUT1', u'https://www.codechef.com/PRACTICE/problems/CDOUT2', u'https://www.codechef.com/PRACTICE/problems/CDOUT5', u'https://www.codechef.com/PRACTICE/problems/CDPR16C', u'https://www.codechef.com/PRACTICE/problems/CDQU03', u'https://www.codechef.com/PRACTICE/problems/CDQU04', u'https://www.codechef.com/PRACTICE/problems/CDQU06', u'https://www.codechef.com/PRACTICE/problems/CDQU09', u'https://www.codechef.com/PRACTICE/problems/CDQU1', u'https://www.codechef.com/PRACTICE/problems/CDQU2', u'https://www.codechef.com/PRACTICE/problems/CDQU3', u'https://www.codechef.com/PRACTICE/problems/CDQU4', u'https://www.codechef.com/PRACTICE/problems/CDQU5', u'https://www.codechef.com/PRACTICE/problems/CDS003', u'https://www.codechef.com/PRACTICE/problems/CDSE03', u'https://www.codechef.com/PRACTICE/problems/CDSE04', u'https://www.codechef.com/PRACTICE/problems/CDSE06', u'https://www.codechef.com/PRACTICE/problems/CDSW151', u'https://www.codechef.com/PRACTICE/problems/CDSW152', u'https://www.codechef.com/PRACTICE/problems/CDTHN', u'https://www.codechef.com/PRACTICE/problems/CDVA1502', u'https://www.codechef.com/PRACTICE/problems/CDVA1504', u'https://www.codechef.com/PRACTICE/problems/CDVA1507', u'https://www.codechef.com/PRACTICE/problems/CDVA1510', u'https://www.codechef.com/PRACTICE/problems/CDVA1601', u'https://www.codechef.com/PRACTICE/problems/CDVA1603', u'https://www.codechef.com/PRACTICE/problems/CDVA1604', u'https://www.codechef.com/PRACTICE/problems/CDVA1605', u'https://www.codechef.com/PRACTICE/problems/CDVA1607', u'https://www.codechef.com/PRACTICE/problems/CDWRS01', u'https://www.codechef.com/PRACTICE/problems/CDWRS05', u'https://www.codechef.com/PRACTICE/problems/CDWRS06', u'https://www.codechef.com/PRACTICE/problems/CDXLRG', u'https://www.codechef.com/PRACTICE/problems/CDXM1', u'https://www.codechef.com/PRACTICE/problems/CDXM2', u'https://www.codechef.com/PRACTICE/problems/CDXM3', u'https://www.codechef.com/PRACTICE/problems/CDXM4', u'https://www.codechef.com/PRACTICE/problems/CDXOPTM', u'https://www.codechef.com/PRACTICE/problems/CDYPA01', u'https://www.codechef.com/PRACTICE/problems/CDYPA02', u'https://www.codechef.com/PRACTICE/problems/CDYPA04', u'https://www.codechef.com/PRACTICE/problems/CDYPA06', u'https://www.codechef.com/PRACTICE/problems/CDYPA10', u'https://www.codechef.com/PRACTICE/problems/CDZ1301', u'https://www.codechef.com/PRACTICE/problems/CDZ14B', u'https://www.codechef.com/PRACTICE/problems/CDZ14C', u'https://www.codechef.com/PRACTICE/problems/CDZ14D', u'https://www.codechef.com/PRACTICE/problems/CDZ14E', u'https://www.codechef.com/PRACTICE/problems/CE01', u'https://www.codechef.com/PRACTICE/problems/CE02', u'https://www.codechef.com/PRACTICE/problems/CE06', u'https://www.codechef.com/PRACTICE/problems/CE07', u'https://www.codechef.com/PRACTICE/problems/CEANGR', u'https://www.codechef.com/PRACTICE/problems/CELZJS', u'https://www.codechef.com/PRACTICE/problems/CENCODE', u'https://www.codechef.com/PRACTICE/problems/CEXP04', u'https://www.codechef.com/PRACTICE/problems/CF203', u'https://www.codechef.com/PRACTICE/problems/CF204', u'https://www.codechef.com/PRACTICE/problems/CF210', u'https://www.codechef.com/PRACTICE/problems/CF211', u'https://www.codechef.com/PRACTICE/problems/CF212', u'https://www.codechef.com/PRACTICE/problems/CF224', u'https://www.codechef.com/PRACTICE/problems/CF226', u'https://www.codechef.com/PRACTICE/problems/CFR101', u'https://www.codechef.com/PRACTICE/problems/CFR102', u'https://www.codechef.com/PRACTICE/problems/CFR103', u'https://www.codechef.com/PRACTICE/problems/CFR203', u'https://www.codechef.com/PRACTICE/problems/CFR301', u'https://www.codechef.com/PRACTICE/problems/CFR303', u'https://www.codechef.com/PRACTICE/problems/CFR304', u'https://www.codechef.com/PRACTICE/problems/CFRTEST', u'https://www.codechef.com/PRACTICE/problems/CFTREE', u'https://www.codechef.com/PRACTICE/problems/CG02', u'https://www.codechef.com/PRACTICE/problems/CHALENGE', u'https://www.codechef.com/PRACTICE/problems/CHAORNOT', u'https://www.codechef.com/PRACTICE/problems/CHAOS', u'https://www.codechef.com/PRACTICE/problems/CHAPD', u'https://www.codechef.com/PRACTICE/problems/CHBILL', u'https://www.codechef.com/PRACTICE/problems/CHBLLNS', u'https://www.codechef.com/PRACTICE/problems/CHBLLS', u'https://www.codechef.com/PRACTICE/problems/CHCINEMA', u'https://www.codechef.com/PRACTICE/problems/CHCOINSG', u'https://www.codechef.com/PRACTICE/problems/CHCOM', u'https://www.codechef.com/PRACTICE/problems/CHCUBE', u'https://www.codechef.com/PRACTICE/problems/CHEARMY', u'https://www.codechef.com/PRACTICE/problems/CHEFA', u'https://www.codechef.com/PRACTICE/problems/CHEFANUP', u'https://www.codechef.com/PRACTICE/problems/CHEFAOR', u'https://www.codechef.com/PRACTICE/problems/CHEFARC', u'https://www.codechef.com/PRACTICE/problems/CHEFARK', u'https://www.codechef.com/PRACTICE/problems/CHEFARR', u'https://www.codechef.com/PRACTICE/problems/CHEFARRP', u'https://www.codechef.com/PRACTICE/problems/CHEFAXR', u'https://www.codechef.com/PRACTICE/problems/CHEFB', u'https://www.codechef.com/PRACTICE/problems/CHEFBM', u'https://www.codechef.com/PRACTICE/problems/CHEFBR', u'https://www.codechef.com/PRACTICE/problems/CHEFBRO', u'https://www.codechef.com/PRACTICE/problems/CHEFBWN', u'https://www.codechef.com/PRACTICE/problems/CHEFC', u'https://www.codechef.com/PRACTICE/problems/CHEFCBA', u'https://www.codechef.com/PRACTICE/problems/CHEFCH', u'https://www.codechef.com/PRACTICE/problems/CHEFCK', u'https://www.codechef.com/PRACTICE/problems/CHEFD', u'https://www.codechef.com/PRACTICE/problems/CHEFDETE', u'https://www.codechef.com/PRACTICE/problems/CHEFDOMA', u'https://www.codechef.com/PRACTICE/problems/CHEFDTRE', u'https://www.codechef.com/PRACTICE/problems/CHEFELEC', u'https://www.codechef.com/PRACTICE/problems/CHEFEQ', u'https://www.codechef.com/PRACTICE/problems/CHEFFED', u'https://www.codechef.com/PRACTICE/problems/CHEFFILT', u'https://www.codechef.com/PRACTICE/problems/CHEFGAME', u'https://www.codechef.com/PRACTICE/problems/CHEFGARD', u'https://www.codechef.com/PRACTICE/problems/CHEFGIFT', u'https://www.codechef.com/PRACTICE/problems/CHEFGIRL', u'https://www.codechef.com/PRACTICE/problems/CHEFGM', u'https://www.codechef.com/PRACTICE/problems/CHEFGR', u'https://www.codechef.com/PRACTICE/problems/CHEFGRPH', u'https://www.codechef.com/PRACTICE/problems/CHEFHACK', u'https://www.codechef.com/PRACTICE/problems/CHEFHCK2', u'https://www.codechef.com/PRACTICE/problems/CHEFHILL', u'https://www.codechef.com/PRACTICE/problems/CHEFHOME', u'https://www.codechef.com/PRACTICE/problems/CHEFIHG', u'https://www.codechef.com/PRACTICE/problems/CHEFINV', u'https://www.codechef.com/PRACTICE/problems/CHEFKLCS', u'https://www.codechef.com/PRACTICE/problems/CHEFLAND', u'https://www.codechef.com/PRACTICE/problems/CHEFLAPT', u'https://www.codechef.com/PRACTICE/problems/CHEFLCM', u'https://www.codechef.com/PRACTICE/problems/CHEFLIQD', u'https://www.codechef.com/PRACTICE/problems/CHEFLKJ', u'https://www.codechef.com/PRACTICE/problems/CHEFLR', u'https://www.codechef.com/PRACTICE/problems/CHEFLUCK', u'https://www.codechef.com/PRACTICE/problems/CHEFMATH', u'https://www.codechef.com/PRACTICE/problems/CHEFMOON', u'https://www.codechef.com/PRACTICE/problems/CHEFNUM', u'https://www.codechef.com/PRACTICE/problems/CHEFPATH', u'https://www.codechef.com/PRACTICE/problems/CHEFPNT', u'https://www.codechef.com/PRACTICE/problems/CHEFPOLY', u'https://www.codechef.com/PRACTICE/problems/CHEFPOT', u'https://www.codechef.com/PRACTICE/problems/CHEFPOW', u'https://www.codechef.com/PRACTICE/problems/CHEFPRES', u'https://www.codechef.com/PRACTICE/problems/CHEFQUE', u'https://www.codechef.com/PRACTICE/problems/CHEFREC', u'https://www.codechef.com/PRACTICE/problems/CHEFROAD', u'https://www.codechef.com/PRACTICE/problems/CHEFRP', u'https://www.codechef.com/PRACTICE/problems/CHEFSEG', u'https://www.codechef.com/PRACTICE/problems/CHEFSHOP', u'https://www.codechef.com/PRACTICE/problems/CHEFSOC2', u'https://www.codechef.com/PRACTICE/problems/CHEFSOCK', u'https://www.codechef.com/PRACTICE/problems/CHEFSPL', u'https://www.codechef.com/PRACTICE/problems/CHEFSQ', u'https://www.codechef.com/PRACTICE/problems/CHEFSQUA', u'https://www.codechef.com/PRACTICE/problems/CHEFST', u'https://www.codechef.com/PRACTICE/problems/CHEFSTLT', u'https://www.codechef.com/PRACTICE/problems/CHEFSTON', u'https://www.codechef.com/PRACTICE/problems/CHEFTEAM', u'https://www.codechef.com/PRACTICE/problems/CHEFTET', u'https://www.codechef.com/PRACTICE/problems/CHEFTIC', u'https://www.codechef.com/PRACTICE/problems/CHEFTMA', u'https://www.codechef.com/PRACTICE/problems/CHEFTOWN', u'https://www.codechef.com/PRACTICE/problems/CHEFTR', u'https://www.codechef.com/PRACTICE/problems/CHEFTREE', u'https://www.codechef.com/PRACTICE/problems/CHEFU', u'https://www.codechef.com/PRACTICE/problems/CHEFVEC', u'https://www.codechef.com/PRACTICE/problems/CHEFVOTE', u'https://www.codechef.com/PRACTICE/problems/CHEFWORD', u'https://www.codechef.com/PRACTICE/problems/CHEFZOT', u'https://www.codechef.com/PRACTICE/problems/CHFANS', u'https://www.codechef.com/PRACTICE/problems/CHFBOOKS', u'https://www.codechef.com/PRACTICE/problems/CHFFIELD', u'https://www.codechef.com/PRACTICE/problems/CHFMAX', u'https://www.codechef.com/PRACTICE/problems/CHFQUEUE', u'https://www.codechef.com/PRACTICE/problems/CHGIFT1', u'https://www.codechef.com/PRACTICE/problems/CHGLSTGT', u'https://www.codechef.com/PRACTICE/problems/CHIEFETT', u'https://www.codechef.com/PRACTICE/problems/CHINFL', u'https://www.codechef.com/PRACTICE/problems/CHINSM', u'https://www.codechef.com/PRACTICE/problems/CHITHH', u'https://www.codechef.com/PRACTICE/problems/CHKSEL', u'https://www.codechef.com/PRACTICE/problems/CHMAGIC', u'https://www.codechef.com/PRACTICE/problems/CHMKTRPS', u'https://www.codechef.com/PRACTICE/problems/CHMOD', u'https://www.codechef.com/PRACTICE/problems/CHN09', u'https://www.codechef.com/PRACTICE/problems/CHN15A', u'https://www.codechef.com/PRACTICE/problems/CHN15B', u'https://www.codechef.com/PRACTICE/problems/CHN15C', u'https://www.codechef.com/PRACTICE/problems/CHN15D', u'https://www.codechef.com/PRACTICE/problems/CHNBGMT', u'https://www.codechef.com/PRACTICE/problems/CHNGSS', u'https://www.codechef.com/PRACTICE/problems/CHNWGM', u'https://www.codechef.com/PRACTICE/problems/CHOC', u'https://www.codechef.com/PRACTICE/problems/CHOCOLAT', u'https://www.codechef.com/PRACTICE/problems/CHODE', u'https://www.codechef.com/PRACTICE/problems/CHOPRT', u'https://www.codechef.com/PRACTICE/problems/CHPLGNS', u'https://www.codechef.com/PRACTICE/problems/CHPLNTS', u'https://www.codechef.com/PRACTICE/problems/CHPUZZLE', u'https://www.codechef.com/PRACTICE/problems/CHRECT', u'https://www.codechef.com/PRACTICE/problems/CHRL1', u'https://www.codechef.com/PRACTICE/problems/CHRL2', u'https://www.codechef.com/PRACTICE/problems/CHRL3', u'https://www.codechef.com/PRACTICE/problems/CHRL4', u'https://www.codechef.com/PRACTICE/problems/CHSEQ22', u'https://www.codechef.com/PRACTICE/problems/CHSGMNTS', u'https://www.codechef.com/PRACTICE/problems/CHSHIFU', u'https://www.codechef.com/PRACTICE/problems/CHSPARR', u'https://www.codechef.com/PRACTICE/problems/CHSQARR', u'https://www.codechef.com/PRACTICE/problems/CHSTAMP', u'https://www.codechef.com/PRACTICE/problems/CHSTR', u'https://www.codechef.com/PRACTICE/problems/CHTTRS', u'https://www.codechef.com/PRACTICE/problems/CHXORR', u'https://www.codechef.com/PRACTICE/problems/CIEL8STR', u'https://www.codechef.com/PRACTICE/problems/CIELAB', u'https://www.codechef.com/PRACTICE/problems/CIELDIST', u'https://www.codechef.com/PRACTICE/problems/CIELMAP', u'https://www.codechef.com/PRACTICE/problems/CIELNUM1', u'https://www.codechef.com/PRACTICE/problems/CIELNUM2', u'https://www.codechef.com/PRACTICE/problems/CIELRCPT', u'https://www.codechef.com/PRACTICE/problems/CIELTOMY', u'https://www.codechef.com/PRACTICE/problems/CINEMA', u'https://www.codechef.com/PRACTICE/problems/CIPHER', u'https://www.codechef.com/PRACTICE/problems/CIRCLE', u'https://www.codechef.com/PRACTICE/problems/CIRCUITS', u'https://www.codechef.com/PRACTICE/problems/CIRKILL', u'https://www.codechef.com/PRACTICE/problems/CKISSHUG', u'https://www.codechef.com/PRACTICE/problems/CKTFEV', u'https://www.codechef.com/PRACTICE/problems/CLARISSA', u'https://www.codechef.com/PRACTICE/problems/CLBMUP', u'https://www.codechef.com/PRACTICE/problems/CLCO02', u'https://www.codechef.com/PRACTICE/problems/CLCO03', u'https://www.codechef.com/PRACTICE/problems/CLCO04', u'https://www.codechef.com/PRACTICE/problems/CLCO05', u'https://www.codechef.com/PRACTICE/problems/CLCO06', u'https://www.codechef.com/PRACTICE/problems/CLCO08', u'https://www.codechef.com/PRACTICE/problems/CLDROP', u'https://www.codechef.com/PRACTICE/problems/CLDSIN', u'https://www.codechef.com/PRACTICE/problems/CLEANUP', u'https://www.codechef.com/PRACTICE/problems/CLETAB', u'https://www.codechef.com/PRACTICE/problems/CLMBSTRS', u'https://www.codechef.com/PRACTICE/problems/CLNDR', u'https://www.codechef.com/PRACTICE/problems/CLNFORUM', u'https://www.codechef.com/PRACTICE/problems/CLOST', u'https://www.codechef.com/PRACTICE/problems/CLPERM', u'https://www.codechef.com/PRACTICE/problems/CLUSSCHE', u'https://www.codechef.com/PRACTICE/problems/CLUSTER', u'https://www.codechef.com/PRACTICE/problems/CM02', u'https://www.codechef.com/PRACTICE/problems/CM04', u'https://www.codechef.com/PRACTICE/problems/CM1404', u'https://www.codechef.com/PRACTICE/problems/CM1505', u'https://www.codechef.com/PRACTICE/problems/CMAN', u'https://www.codechef.com/PRACTICE/problems/CMB01', u'https://www.codechef.com/PRACTICE/problems/CMB02', u'https://www.codechef.com/PRACTICE/problems/CMB03', u'https://www.codechef.com/PRACTICE/problems/CMB05', u'https://www.codechef.com/PRACTICE/problems/CME04', u'https://www.codechef.com/PRACTICE/problems/CN01', u'https://www.codechef.com/PRACTICE/problems/CN02', u'https://www.codechef.com/PRACTICE/problems/CN03', u'https://www.codechef.com/PRACTICE/problems/CN04', u'https://www.codechef.com/PRACTICE/problems/CN05', u'https://www.codechef.com/PRACTICE/problems/CNG', u'https://www.codechef.com/PRACTICE/problems/CNOTE', u'https://www.codechef.com/PRACTICE/problems/CNPIIM', u'https://www.codechef.com/PRACTICE/problems/CNR', u'https://www.codechef.com/PRACTICE/problems/CNT1S', u'https://www.codechef.com/PRACTICE/problems/CNTDIGIT', u'https://www.codechef.com/PRACTICE/problems/CNTDSETS', u'https://www.codechef.com/PRACTICE/problems/CNTPERM', u'https://www.codechef.com/PRACTICE/problems/CNTPRIME', u'https://www.codechef.com/PRACTICE/problems/CNTSOLS', u'https://www.codechef.com/PRACTICE/problems/CNTWAYS', u'https://www.codechef.com/PRACTICE/problems/CO319TSG', u'https://www.codechef.com/PRACTICE/problems/COAD03', u'https://www.codechef.com/PRACTICE/problems/COADIES2', u'https://www.codechef.com/PRACTICE/problems/COADIES5', u'https://www.codechef.com/PRACTICE/problems/COALSCAM', u'https://www.codechef.com/PRACTICE/problems/COCR02', u'https://www.codechef.com/PRACTICE/problems/COCR04', u'https://www.codechef.com/PRACTICE/problems/COCR07', u'https://www.codechef.com/PRACTICE/problems/COCRMR03', u'https://www.codechef.com/PRACTICE/problems/COCRMR06', u'https://www.codechef.com/PRACTICE/problems/COD04', u'https://www.codechef.com/PRACTICE/problems/CODE1602', u'https://www.codechef.com/PRACTICE/problems/CODECRCK', u'https://www.codechef.com/PRACTICE/problems/CODEIT1', u'https://www.codechef.com/PRACTICE/problems/CODEJAM1', u'https://www.codechef.com/PRACTICE/problems/CODEJAM7', u'https://www.codechef.com/PRACTICE/problems/CODEN01', u'https://www.codechef.com/PRACTICE/problems/CODEN02', u'https://www.codechef.com/PRACTICE/problems/CODEN03', u'https://www.codechef.com/PRACTICE/problems/CODQ2', u'https://www.codechef.com/PRACTICE/problems/CODQ7', u'https://www.codechef.com/PRACTICE/problems/CODQ8', u'https://www.codechef.com/PRACTICE/problems/COFFEE', u'https://www.codechef.com/PRACTICE/problems/COG14A', u'https://www.codechef.com/PRACTICE/problems/COG14B', u'https://www.codechef.com/PRACTICE/problems/COGNI15B', u'https://www.codechef.com/PRACTICE/problems/COINCHNG', u'https://www.codechef.com/PRACTICE/problems/COINS', u'https://www.codechef.com/PRACTICE/problems/COLARR', u'https://www.codechef.com/PRACTICE/problems/COLLECT', u'https://www.codechef.com/PRACTICE/problems/COLLIDE', u'https://www.codechef.com/PRACTICE/problems/COLOR', u'https://www.codechef.com/PRACTICE/problems/COLORING', u'https://www.codechef.com/PRACTICE/problems/COLTREE', u'https://www.codechef.com/PRACTICE/problems/COMA01', u'https://www.codechef.com/PRACTICE/problems/COMA02', u'https://www.codechef.com/PRACTICE/problems/COMA04', u'https://www.codechef.com/PRACTICE/problems/COMB4SUM', u'https://www.codechef.com/PRACTICE/problems/COMM3', u'https://www.codechef.com/PRACTICE/problems/COMMUTE', u'https://www.codechef.com/PRACTICE/problems/COMP01', u'https://www.codechef.com/PRACTICE/problems/COMP02', u'https://www.codechef.com/PRACTICE/problems/COMP03', u'https://www.codechef.com/PRACTICE/problems/COMPILER', u'https://www.codechef.com/PRACTICE/problems/COMPNUM', u'https://www.codechef.com/PRACTICE/problems/COMR01', u'https://www.codechef.com/PRACTICE/problems/CONCAT', u'https://www.codechef.com/PRACTICE/problems/CONFLIP', u'https://www.codechef.com/PRACTICE/problems/CONPOIN', u'https://www.codechef.com/PRACTICE/problems/COOKFOOD', u'https://www.codechef.com/PRACTICE/problems/COOKMACH', u'https://www.codechef.com/PRACTICE/problems/COOLGUYS', u'https://www.codechef.com/PRACTICE/problems/COOLING', u'https://www.codechef.com/PRACTICE/problems/COOP5', u'https://www.codechef.com/PRACTICE/problems/COPR16A', u'https://www.codechef.com/PRACTICE/problems/COPR16B', u'https://www.codechef.com/PRACTICE/problems/COPR16C', u'https://www.codechef.com/PRACTICE/problems/COPR16D', u'https://www.codechef.com/PRACTICE/problems/COPR16E', u'https://www.codechef.com/PRACTICE/problems/COPR16F', u'https://www.codechef.com/PRACTICE/problems/COPR16G', u'https://www.codechef.com/PRACTICE/problems/COPRIME3', u'https://www.codechef.com/PRACTICE/problems/COPS', u'https://www.codechef.com/PRACTICE/problems/COPSUM', u'https://www.codechef.com/PRACTICE/problems/CORE3', u'https://www.codechef.com/PRACTICE/problems/CORE4', u'https://www.codechef.com/PRACTICE/problems/CORE9', u'https://www.codechef.com/PRACTICE/problems/CORRCHK', u'https://www.codechef.com/PRACTICE/problems/COSH1501', u'https://www.codechef.com/PRACTICE/problems/COSH1502', u'https://www.codechef.com/PRACTICE/problems/COSH1503', u'https://www.codechef.com/PRACTICE/problems/COSH1505', u'https://www.codechef.com/PRACTICE/problems/COSUK', u'https://www.codechef.com/PRACTICE/problems/COT5', u'https://www.codechef.com/PRACTICE/problems/COTA', u'https://www.codechef.com/PRACTICE/problems/COTR03', u'https://www.codechef.com/PRACTICE/problems/COUNTARI', u'https://www.codechef.com/PRACTICE/problems/COUNTC', u'https://www.codechef.com/PRACTICE/problems/COUNTPAL', u'https://www.codechef.com/PRACTICE/problems/COUNTREL', u'https://www.codechef.com/PRACTICE/problems/COUNTSTR', u'https://www.codechef.com/PRACTICE/problems/COUNZ', u'https://www.codechef.com/PRACTICE/problems/COUPON', u'https://www.codechef.com/PRACTICE/problems/COURSE', u'https://www.codechef.com/PRACTICE/problems/COVERING', u'https://www.codechef.com/PRACTICE/problems/COWA7', u'https://www.codechef.com/PRACTICE/problems/COWA8', u'https://www.codechef.com/PRACTICE/problems/CPOINT', u'https://www.codechef.com/PRACTICE/problems/CR02', u'https://www.codechef.com/PRACTICE/problems/CR06', u'https://www.codechef.com/PRACTICE/problems/CR10', u'https://www.codechef.com/PRACTICE/problems/CRACE', u'https://www.codechef.com/PRACTICE/problems/CRAFT05', u'https://www.codechef.com/PRACTICE/problems/CRANATOM', u'https://www.codechef.com/PRACTICE/problems/CRANBROM', u'https://www.codechef.com/PRACTICE/problems/CRANCRD', u'https://www.codechef.com/PRACTICE/problems/CRAWA', u'https://www.codechef.com/PRACTICE/problems/CREDCHES', u'https://www.codechef.com/PRACTICE/problems/CREDCHOC', u'https://www.codechef.com/PRACTICE/problems/CREDDIST', u'https://www.codechef.com/PRACTICE/problems/CREDE2', u'https://www.codechef.com/PRACTICE/problems/CREDEXAM', u'https://www.codechef.com/PRACTICE/problems/CREDFIBO', u'https://www.codechef.com/PRACTICE/problems/CREDLEAD', u'https://www.codechef.com/PRACTICE/problems/CREDMAEX', u'https://www.codechef.com/PRACTICE/problems/CREDROPE', u'https://www.codechef.com/PRACTICE/problems/CREDSNET', u'https://www.codechef.com/PRACTICE/problems/CREDSQR', u'https://www.codechef.com/PRACTICE/problems/CRES104', u'https://www.codechef.com/PRACTICE/problems/CRES105', u'https://www.codechef.com/PRACTICE/problems/CRICINFO', u'https://www.codechef.com/PRACTICE/problems/CRNG2048', u'https://www.codechef.com/PRACTICE/problems/CRNM1301', u'https://www.codechef.com/PRACTICE/problems/CRNM1305', u'https://www.codechef.com/PRACTICE/problems/CRNMBDRP', u'https://www.codechef.com/PRACTICE/problems/CROCDILE', u'https://www.codechef.com/PRACTICE/problems/CROWD', u'https://www.codechef.com/PRACTICE/problems/CRZ02', u'https://www.codechef.com/PRACTICE/problems/CRZ04', u'https://www.codechef.com/PRACTICE/problems/CS001', u'https://www.codechef.com/PRACTICE/problems/CSEA2', u'https://www.codechef.com/PRACTICE/problems/CSEA3', u'https://www.codechef.com/PRACTICE/problems/CSEA4', u'https://www.codechef.com/PRACTICE/problems/CSEQ', u'https://www.codechef.com/PRACTICE/problems/CSIXIEAN', u'https://www.codechef.com/PRACTICE/problems/CSIXIEPA', u'https://www.codechef.com/PRACTICE/problems/CSIXIERL', u'https://www.codechef.com/PRACTICE/problems/CSIXIEVR', u'https://www.codechef.com/PRACTICE/problems/CSKR', u'https://www.codechef.com/PRACTICE/problems/CSS2', u'https://www.codechef.com/PRACTICE/problems/CSTRIKE2', u'https://www.codechef.com/PRACTICE/problems/CSTRIKE3', u'https://www.codechef.com/PRACTICE/problems/CSTRIKE4', u'https://www.codechef.com/PRACTICE/problems/CSTRIKE5', u'https://www.codechef.com/PRACTICE/problems/CSUB', u'https://www.codechef.com/PRACTICE/problems/CSUBARR', u'https://www.codechef.com/PRACTICE/problems/CSUMD', u'https://www.codechef.com/PRACTICE/problems/CTEAMS', u'https://www.codechef.com/PRACTICE/problems/CTRA01', u'https://www.codechef.com/PRACTICE/problems/CUBE', u'https://www.codechef.com/PRACTICE/problems/CUBES', u'https://www.codechef.com/PRACTICE/problems/CUBESUM', u'https://www.codechef.com/PRACTICE/problems/CUBTOWER', u'https://www.codechef.com/PRACTICE/problems/CULPRO', u'https://www.codechef.com/PRACTICE/problems/CURR2', u'https://www.codechef.com/PRACTICE/problems/CVOTE', u'https://www.codechef.com/PRACTICE/problems/CW01', u'https://www.codechef.com/PRACTICE/problems/CW02', u'https://www.codechef.com/PRACTICE/problems/CW03', u'https://www.codechef.com/PRACTICE/problems/CW04', u'https://www.codechef.com/PRACTICE/problems/CW05', u'https://www.codechef.com/PRACTICE/problems/CW06', u'https://www.codechef.com/PRACTICE/problems/CW08', u'https://www.codechef.com/PRACTICE/problems/CW1', u'https://www.codechef.com/PRACTICE/problems/CW2', u'https://www.codechef.com/PRACTICE/problems/CW4', u'https://www.codechef.com/PRACTICE/problems/CW5', u'https://www.codechef.com/PRACTICE/problems/CW6', u'https://www.codechef.com/PRACTICE/problems/CWAM1502', u'https://www.codechef.com/PRACTICE/problems/CWAYS', u'https://www.codechef.com/PRACTICE/problems/CYCLIST', u'https://www.codechef.com/PRACTICE/problems/CYCLRACE', u'https://www.codechef.com/PRACTICE/problems/CYLINDER', u'https://www.codechef.com/PRACTICE/problems/CYW02', u'https://www.codechef.com/PRACTICE/problems/CYW04', u'https://www.codechef.com/PRACTICE/problems/CYW07', u'https://www.codechef.com/PRACTICE/problems/CYW09', u'https://www.codechef.com/PRACTICE/problems/C_HOLIC4', u'https://www.codechef.com/PRACTICE/problems/D04', u'https://www.codechef.com/PRACTICE/problems/D1', u'https://www.codechef.com/PRACTICE/problems/D2', u'https://www.codechef.com/PRACTICE/problems/D4', u'https://www.codechef.com/PRACTICE/problems/D6', u'https://www.codechef.com/PRACTICE/problems/DAILY', u'https://www.codechef.com/PRACTICE/problems/DARTS', u'https://www.codechef.com/PRACTICE/problems/DATE', u'https://www.codechef.com/PRACTICE/problems/DBLSTR7', u'https://www.codechef.com/PRACTICE/problems/DBOY', u'https://www.codechef.com/PRACTICE/problems/DBYZ15A', u'https://www.codechef.com/PRACTICE/problems/DBYZ15B', u'https://www.codechef.com/PRACTICE/problems/DBYZ15C', u'https://www.codechef.com/PRACTICE/problems/DBYZ15F', u'https://www.codechef.com/PRACTICE/problems/DBYZ15T', u'https://www.codechef.com/PRACTICE/problems/DBYZ15T2', u'https://www.codechef.com/PRACTICE/problems/DBZ16RS', u'https://www.codechef.com/PRACTICE/problems/DBZ16XOR', u'https://www.codechef.com/PRACTICE/problems/DBZ16XS1', u'https://www.codechef.com/PRACTICE/problems/DCE02', u'https://www.codechef.com/PRACTICE/problems/DCE03', u'https://www.codechef.com/PRACTICE/problems/DCE04', u'https://www.codechef.com/PRACTICE/problems/DCE05', u'https://www.codechef.com/PRACTICE/problems/DCGAME', u'https://www.codechef.com/PRACTICE/problems/DCL2015A', u'https://www.codechef.com/PRACTICE/problems/DCL2015B', u'https://www.codechef.com/PRACTICE/problems/DCL2015E', u'https://www.codechef.com/PRACTICE/problems/DCL2015I', u'https://www.codechef.com/PRACTICE/problems/DCOL', u'https://www.codechef.com/PRACTICE/problems/DDCC', u'https://www.codechef.com/PRACTICE/problems/DDILEMMA', u'https://www.codechef.com/PRACTICE/problems/DDISH', u'https://www.codechef.com/PRACTICE/problems/DEB002', u'https://www.codechef.com/PRACTICE/problems/DECA02', u'https://www.codechef.com/PRACTICE/problems/DECA05', u'https://www.codechef.com/PRACTICE/problems/DECORATE', u'https://www.codechef.com/PRACTICE/problems/DECSTR', u'https://www.codechef.com/PRACTICE/problems/DEFACING', u'https://www.codechef.com/PRACTICE/problems/DELISH', u'https://www.codechef.com/PRACTICE/problems/DELNMS', u'https://www.codechef.com/PRACTICE/problems/DELSUM', u'https://www.codechef.com/PRACTICE/problems/DESTROY', u'https://www.codechef.com/PRACTICE/problems/DETDET', u'https://www.codechef.com/PRACTICE/problems/DEVARRAY', u'https://www.codechef.com/PRACTICE/problems/DEVBDAY', u'https://www.codechef.com/PRACTICE/problems/DEVCLASS', u'https://www.codechef.com/PRACTICE/problems/DEVGOSTR', u'https://www.codechef.com/PRACTICE/problems/DEVHAND', u'https://www.codechef.com/PRACTICE/problems/DEVILNUM', u'https://www.codechef.com/PRACTICE/problems/DEVJERRY', u'https://www.codechef.com/PRACTICE/problems/DEVLDISC', u'https://www.codechef.com/PRACTICE/problems/DEVLOCK', u'https://www.codechef.com/PRACTICE/problems/DEVPERF', u'https://www.codechef.com/PRACTICE/problems/DEVSHOW', u'https://www.codechef.com/PRACTICE/problems/DEVSTR', u'https://www.codechef.com/PRACTICE/problems/DEVUGRAP', u'https://www.codechef.com/PRACTICE/problems/DEVVOTE', u'https://www.codechef.com/PRACTICE/problems/DGCD', u'https://www.codechef.com/PRACTICE/problems/DIAMOND', u'https://www.codechef.com/PRACTICE/problems/DIGFORST', u'https://www.codechef.com/PRACTICE/problems/DIGJUMP', u'https://www.codechef.com/PRACTICE/problems/DIGROT', u'https://www.codechef.com/PRACTICE/problems/DINING', u'https://www.codechef.com/PRACTICE/problems/DIRECTI', u'https://www.codechef.com/PRACTICE/problems/DIRTBYTE', u'https://www.codechef.com/PRACTICE/problems/DISCHAR', u'https://www.codechef.com/PRACTICE/problems/DISHBAL', u'https://www.codechef.com/PRACTICE/problems/DISHDIS', u'https://www.codechef.com/PRACTICE/problems/DISHOWN', u'https://www.codechef.com/PRACTICE/problems/DISPLAY', u'https://www.codechef.com/PRACTICE/problems/DISTCODE', u'https://www.codechef.com/PRACTICE/problems/DISTNUM', u'https://www.codechef.com/PRACTICE/problems/DISTNUM2', u'https://www.codechef.com/PRACTICE/problems/DIVGAME', u'https://www.codechef.com/PRACTICE/problems/DIVGOLD', u'https://www.codechef.com/PRACTICE/problems/DIVIDE', u'https://www.codechef.com/PRACTICE/problems/DIVIDING', u'https://www.codechef.com/PRACTICE/problems/DIVLAND', u'https://www.codechef.com/PRACTICE/problems/DIVNINE', u'https://www.codechef.com/PRACTICE/problems/DIVPAIR', u'https://www.codechef.com/PRACTICE/problems/DIVQUERY', u'https://www.codechef.com/PRACTICE/problems/DIVSUBS', u'https://www.codechef.com/PRACTICE/problems/DLCT06', u'https://www.codechef.com/PRACTICE/problems/DMILK', u'https://www.codechef.com/PRACTICE/problems/DMNOS', u'https://www.codechef.com/PRACTICE/problems/DMSG', u'https://www.codechef.com/PRACTICE/problems/DOMSOL', u'https://www.codechef.com/PRACTICE/problems/DONUTS', u'https://www.codechef.com/PRACTICE/problems/DOORS', u'https://www.codechef.com/PRACTICE/problems/DORAEMON', u'https://www.codechef.com/PRACTICE/problems/DOUBLE', u'https://www.codechef.com/PRACTICE/problems/DOWNLOAD', u'https://www.codechef.com/PRACTICE/problems/DPC101', u'https://www.codechef.com/PRACTICE/problems/DPC103', u'https://www.codechef.com/PRACTICE/problems/DPC203', u'https://www.codechef.com/PRACTICE/problems/DPC204', u'https://www.codechef.com/PRACTICE/problems/DPC206', u'https://www.codechef.com/PRACTICE/problems/DPC207', u'https://www.codechef.com/PRACTICE/problems/DPC210', u'https://www.codechef.com/PRACTICE/problems/DPOOL02', u'https://www.codechef.com/PRACTICE/problems/DPOOL05', u'https://www.codechef.com/PRACTICE/problems/DPOOL08', u'https://www.codechef.com/PRACTICE/problems/DPOOL09', u'https://www.codechef.com/PRACTICE/problems/DRAGNXOR', u'https://www.codechef.com/PRACTICE/problems/DRAGONST', u'https://www.codechef.com/PRACTICE/problems/DRANGE', u'https://www.codechef.com/PRACTICE/problems/DRCTNSRM', u'https://www.codechef.com/PRACTICE/problems/DREAM', u'https://www.codechef.com/PRACTICE/problems/DRGHTS', u'https://www.codechef.com/PRACTICE/problems/DRGNBOOL', u'https://www.codechef.com/PRACTICE/problems/DS04', u'https://www.codechef.com/PRACTICE/problems/DS05', u'https://www.codechef.com/PRACTICE/problems/DS06', u'https://www.codechef.com/PRACTICE/problems/DS07', u'https://www.codechef.com/PRACTICE/problems/DS08', u'https://www.codechef.com/PRACTICE/problems/DS09', u'https://www.codechef.com/PRACTICE/problems/DS10', u'https://www.codechef.com/PRACTICE/problems/DS11', u'https://www.codechef.com/PRACTICE/problems/DS15', u'https://www.codechef.com/PRACTICE/problems/DS7', u'https://www.codechef.com/PRACTICE/problems/DSPATNA1', u'https://www.codechef.com/PRACTICE/problems/DSPATNA3', u'https://www.codechef.com/PRACTICE/problems/DSPC304', u'https://www.codechef.com/PRACTICE/problems/DSPCXI01', u'https://www.codechef.com/PRACTICE/problems/DSPCXI02', u'https://www.codechef.com/PRACTICE/problems/DUALPAL', u'https://www.codechef.com/PRACTICE/problems/DUMPLING', u'https://www.codechef.com/PRACTICE/problems/DX', u'https://www.codechef.com/PRACTICE/problems/DYNAINV', u'https://www.codechef.com/PRACTICE/problems/DZ16HITE', u'https://www.codechef.com/PRACTICE/problems/DZ16KNAP', u'https://www.codechef.com/PRACTICE/problems/DZ16MAT', u'https://www.codechef.com/PRACTICE/problems/DZ16SHOP', u'https://www.codechef.com/PRACTICE/problems/DZ16SUBA', u'https://www.codechef.com/PRACTICE/problems/DZ16TREE', u'https://www.codechef.com/PRACTICE/problems/E1', u'https://www.codechef.com/PRACTICE/problems/E2', u'https://www.codechef.com/PRACTICE/problems/E4', u'https://www.codechef.com/PRACTICE/problems/E5', u'https://www.codechef.com/PRACTICE/problems/EASYEX', u'https://www.codechef.com/PRACTICE/problems/EASYPROB', u'https://www.codechef.com/PRACTICE/problems/EDITLIST', u'https://www.codechef.com/PRACTICE/problems/EDSTGRID', u'https://www.codechef.com/PRACTICE/problems/EGBOBRD', u'https://www.codechef.com/PRACTICE/problems/EGRANDR', u'https://www.codechef.com/PRACTICE/problems/EGRCAKE', u'https://www.codechef.com/PRACTICE/problems/EGYPTFRA', u'https://www.codechef.com/PRACTICE/problems/ELPHANT', u'https://www.codechef.com/PRACTICE/problems/EMA01', u'https://www.codechef.com/PRACTICE/problems/EMA03', u'https://www.codechef.com/PRACTICE/problems/EMA09', u'https://www.codechef.com/PRACTICE/problems/EMITL', u'https://www.codechef.com/PRACTICE/problems/EMRGENCY', u'https://www.codechef.com/PRACTICE/problems/ENCD02', u'https://www.codechef.com/PRACTICE/problems/ENCD04', u'https://www.codechef.com/PRACTICE/problems/ENCD06', u'https://www.codechef.com/PRACTICE/problems/ENCD09', u'https://www.codechef.com/PRACTICE/problems/ENCODE01', u'https://www.codechef.com/PRACTICE/problems/ENCODE02', u'https://www.codechef.com/PRACTICE/problems/ENCODE04', u'https://www.codechef.com/PRACTICE/problems/ENTEXAM', u'https://www.codechef.com/PRACTICE/problems/EPI01', u'https://www.codechef.com/PRACTICE/problems/EPI02', u'https://www.codechef.com/PRACTICE/problems/EPI03', u'https://www.codechef.com/PRACTICE/problems/EQCANDY', u'https://www.codechef.com/PRACTICE/problems/EQIDLIS', u'https://www.codechef.com/PRACTICE/problems/EQUAKE', u'https://www.codechef.com/PRACTICE/problems/EQUALITY', u'https://www.codechef.com/PRACTICE/problems/EQUALIZ', u'https://www.codechef.com/PRACTICE/problems/EQUALIZE', u'https://www.codechef.com/PRACTICE/problems/EQUATIO', u'https://www.codechef.com/PRACTICE/problems/EQUATION', u'https://www.codechef.com/PRACTICE/problems/EQUINUM', u'https://www.codechef.com/PRACTICE/problems/ERROR', u'https://www.codechef.com/PRACTICE/problems/ETMX04', u'https://www.codechef.com/PRACTICE/problems/ETMX05', u'https://www.codechef.com/PRACTICE/problems/ETMX06', u'https://www.codechef.com/PRACTICE/problems/ETMX07', u'https://www.codechef.com/PRACTICE/problems/EXAM', u'https://www.codechef.com/PRACTICE/problems/EXGCD', u'https://www.codechef.com/PRACTICE/problems/EXNETWRK', u'https://www.codechef.com/PRACTICE/problems/EXPALIN', u'https://www.codechef.com/PRACTICE/problems/EXPCOMM', u'https://www.codechef.com/PRACTICE/problems/EXPGAME', u'https://www.codechef.com/PRACTICE/problems/EZNO', u'https://www.codechef.com/PRACTICE/problems/F1', u'https://www.codechef.com/PRACTICE/problems/FACT25', u'https://www.codechef.com/PRACTICE/problems/FACTEASY', u'https://www.codechef.com/PRACTICE/problems/FACTORIZ', u'https://www.codechef.com/PRACTICE/problems/FACTSUM', u'https://www.codechef.com/PRACTICE/problems/FAIRPAIR', u'https://www.codechef.com/PRACTICE/problems/FALLDOWN', u'https://www.codechef.com/PRACTICE/problems/FARASA', u'https://www.codechef.com/PRACTICE/problems/FASTFUR', u'https://www.codechef.com/PRACTICE/problems/FATCHEF', u'https://www.codechef.com/PRACTICE/problems/FAULT', u'https://www.codechef.com/PRACTICE/problems/FAVNUM', u'https://www.codechef.com/PRACTICE/problems/FBCHEF', u'https://www.codechef.com/PRACTICE/problems/FBFRW1', u'https://www.codechef.com/PRACTICE/problems/FBFRW2', u'https://www.codechef.com/PRACTICE/problems/FBFRW3', u'https://www.codechef.com/PRACTICE/problems/FCBARCA', u'https://www.codechef.com/PRACTICE/problems/FCTDIG', u'https://www.codechef.com/PRACTICE/problems/FCTR1', u'https://www.codechef.com/PRACTICE/problems/FCTRL', u'https://www.codechef.com/PRACTICE/problems/FCTRL2', u'https://www.codechef.com/PRACTICE/problems/FCUBE', u'https://www.codechef.com/PRACTICE/problems/FDIVGAME', u'https://www.codechef.com/PRACTICE/problems/FEST', u'https://www.codechef.com/PRACTICE/problems/FEST03', u'https://www.codechef.com/PRACTICE/problems/FEYNMAN', u'https://www.codechef.com/PRACTICE/problems/FGFS', u'https://www.codechef.com/PRACTICE/problems/FIBEQN', u'https://www.codechef.com/PRACTICE/problems/FIBGCD', u'https://www.codechef.com/PRACTICE/problems/FIBQ', u'https://www.codechef.com/PRACTICE/problems/FIBTREE', u'https://www.codechef.com/PRACTICE/problems/FINDEX', u'https://www.codechef.com/PRACTICE/problems/FINDHOLE', u'https://www.codechef.com/PRACTICE/problems/FIRE', u'https://www.codechef.com/PRACTICE/problems/FIRESC', u'https://www.codechef.com/PRACTICE/problems/FLAGS', u'https://www.codechef.com/PRACTICE/problems/FLCM', u'https://www.codechef.com/PRACTICE/problems/FLIPCOIN', u'https://www.codechef.com/PRACTICE/problems/FLOOR', u'https://www.codechef.com/PRACTICE/problems/FLOORDIS', u'https://www.codechef.com/PRACTICE/problems/FLOORI4', u'https://www.codechef.com/PRACTICE/problems/FLOW001', u'https://www.codechef.com/PRACTICE/problems/FLOW002', u'https://www.codechef.com/PRACTICE/problems/FLOW004', u'https://www.codechef.com/PRACTICE/problems/FLOW005', u'https://www.codechef.com/PRACTICE/problems/FLOW006', u'https://www.codechef.com/PRACTICE/problems/FLOW007', u'https://www.codechef.com/PRACTICE/problems/FLOW008', u'https://www.codechef.com/PRACTICE/problems/FLOW009', u'https://www.codechef.com/PRACTICE/problems/FLOW010', u'https://www.codechef.com/PRACTICE/problems/FLOW011', u'https://www.codechef.com/PRACTICE/problems/FLOW013', u'https://www.codechef.com/PRACTICE/problems/FLOW014', u'https://www.codechef.com/PRACTICE/problems/FLOW015', u'https://www.codechef.com/PRACTICE/problems/FLOW016', u'https://www.codechef.com/PRACTICE/problems/FLOW017', u'https://www.codechef.com/PRACTICE/problems/FLOW018', u'https://www.codechef.com/PRACTICE/problems/FLUSHOT', u'https://www.codechef.com/PRACTICE/problems/FN', u'https://www.codechef.com/PRACTICE/problems/FNCS', u'https://www.codechef.com/PRACTICE/problems/FOMBRO', u'https://www.codechef.com/PRACTICE/problems/FORCES', u'https://www.codechef.com/PRACTICE/problems/FORESTGA', u'https://www.codechef.com/PRACTICE/problems/FORGETPW', u'https://www.codechef.com/PRACTICE/problems/FP03', u'https://www.codechef.com/PRACTICE/problems/FP09', u'https://www.codechef.com/PRACTICE/problems/FRAC', u'https://www.codechef.com/PRACTICE/problems/FRBSUM', u'https://www.codechef.com/PRACTICE/problems/FRGTNLNG', u'https://www.codechef.com/PRACTICE/problems/FRJUMP', u'https://www.codechef.com/PRACTICE/problems/FRMQ', u'https://www.codechef.com/PRACTICE/problems/FRNDMTNG', u'https://www.codechef.com/PRACTICE/problems/FROGV', u'https://www.codechef.com/PRACTICE/problems/FRUITS', u'https://www.codechef.com/PRACTICE/problems/FSEQ', u'https://www.codechef.com/PRACTICE/problems/FSFSFS', u'https://www.codechef.com/PRACTICE/problems/FSQRT', u'https://www.codechef.com/PRACTICE/problems/FSSYNC', u'https://www.codechef.com/PRACTICE/problems/FSTSQ', u'https://www.codechef.com/PRACTICE/problems/FTH', u'https://www.codechef.com/PRACTICE/problems/FTRIP', u'https://www.codechef.com/PRACTICE/problems/FUNAGP', u'https://www.codechef.com/PRACTICE/problems/FUNC', u'https://www.codechef.com/PRACTICE/problems/FUNKVAL', u'https://www.codechef.com/PRACTICE/problems/FUNN', u'https://www.codechef.com/PRACTICE/problems/FURGRAPH', u'https://www.codechef.com/PRACTICE/problems/FUZZYADD', u'https://www.codechef.com/PRACTICE/problems/GALACTIK', u'https://www.codechef.com/PRACTICE/problems/GAME2048', u'https://www.codechef.com/PRACTICE/problems/GAMEAAM', u'https://www.codechef.com/PRACTICE/problems/GANGAAM', u'https://www.codechef.com/PRACTICE/problems/GARDENSQ', u'https://www.codechef.com/PRACTICE/problems/GBALLS', u'https://www.codechef.com/PRACTICE/problems/GCD', u'https://www.codechef.com/PRACTICE/problems/GCD2', u'https://www.codechef.com/PRACTICE/problems/GCDMAX1', u'https://www.codechef.com/PRACTICE/problems/GCDQ', u'https://www.codechef.com/PRACTICE/problems/GCDTREE', u'https://www.codechef.com/PRACTICE/problems/GDOG', u'https://www.codechef.com/PRACTICE/problems/GENARSEQ', u'https://www.codechef.com/PRACTICE/problems/GENETICS', u'https://www.codechef.com/PRACTICE/problems/GERALD03', u'https://www.codechef.com/PRACTICE/problems/GERALD04', u'https://www.codechef.com/PRACTICE/problems/GERALD05', u'https://www.codechef.com/PRACTICE/problems/GERALD07', u'https://www.codechef.com/PRACTICE/problems/GERALD08', u'https://www.codechef.com/PRACTICE/problems/GERALD09', u'https://www.codechef.com/PRACTICE/problems/GERALD2', u'https://www.codechef.com/PRACTICE/problems/GERALD3', u'https://www.codechef.com/PRACTICE/problems/GGAME', u'https://www.codechef.com/PRACTICE/problems/GIVCANDY', u'https://www.codechef.com/PRACTICE/problems/GIVEAWAY', u'https://www.codechef.com/PRACTICE/problems/GLBEGA', u'https://www.codechef.com/PRACTICE/problems/GMB01', u'https://www.codechef.com/PRACTICE/problems/GNUM', u'https://www.codechef.com/PRACTICE/problems/GOALIE', u'https://www.codechef.com/PRACTICE/problems/GOC01', u'https://www.codechef.com/PRACTICE/problems/GOC201', u'https://www.codechef.com/PRACTICE/problems/GOC202', u'https://www.codechef.com/PRACTICE/problems/GOC203', u'https://www.codechef.com/PRACTICE/problems/GOC204', u'https://www.codechef.com/PRACTICE/problems/GOKU', u'https://www.codechef.com/PRACTICE/problems/GOODNUMB', u'https://www.codechef.com/PRACTICE/problems/GOOGOL01', u'https://www.codechef.com/PRACTICE/problems/GOOGOL03', u'https://www.codechef.com/PRACTICE/problems/GOOGOL04', u'https://www.codechef.com/PRACTICE/problems/GOOGOL05', u'https://www.codechef.com/PRACTICE/problems/GOPJ', u'https://www.codechef.com/PRACTICE/problems/GOPR', u'https://www.codechef.com/PRACTICE/problems/GOT', u'https://www.codechef.com/PRACTICE/problems/GOTN', u'https://www.codechef.com/PRACTICE/problems/GOVT', u'https://www.codechef.com/PRACTICE/problems/GPRIME', u'https://www.codechef.com/PRACTICE/problems/GRANAMA', u'https://www.codechef.com/PRACTICE/problems/GRAPHCNT', u'https://www.codechef.com/PRACTICE/problems/GRAYCODE', u'https://www.codechef.com/PRACTICE/problems/GRAYSC', u'https://www.codechef.com/PRACTICE/problems/GRGUY', u'https://www.codechef.com/PRACTICE/problems/GRID', u'https://www.codechef.com/PRACTICE/problems/GRID01', u'https://www.codechef.com/PRACTICE/problems/GRIDCONN', u'https://www.codechef.com/PRACTICE/problems/GROADS', u'https://www.codechef.com/PRACTICE/problems/GROWGOLD', u'https://www.codechef.com/PRACTICE/problems/GRTRIP', u'https://www.codechef.com/PRACTICE/problems/GSHUFF', u'https://www.codechef.com/PRACTICE/problems/GTH', u'https://www.codechef.com/PRACTICE/problems/GUESS', u'https://www.codechef.com/PRACTICE/problems/GWBUT', u'https://www.codechef.com/PRACTICE/problems/H1', u'https://www.codechef.com/PRACTICE/problems/H2', u'https://www.codechef.com/PRACTICE/problems/H4', u'https://www.codechef.com/PRACTICE/problems/HAMILG', u'https://www.codechef.com/PRACTICE/problems/HAREJUMP', u'https://www.codechef.com/PRACTICE/problems/HARRY', u'https://www.codechef.com/PRACTICE/problems/HBB', u'https://www.codechef.com/PRACTICE/problems/HBIRD', u'https://www.codechef.com/PRACTICE/problems/HCLEAN', u'https://www.codechef.com/PRACTICE/problems/HDELIVER', u'https://www.codechef.com/PRACTICE/problems/HEADBOB', u'https://www.codechef.com/PRACTICE/problems/HELLO', u'https://www.codechef.com/PRACTICE/problems/HELPLIRA', u'https://www.codechef.com/PRACTICE/problems/HES', u'https://www.codechef.com/PRACTICE/problems/HFCQ1', u'https://www.codechef.com/PRACTICE/problems/HFCQ2', u'https://www.codechef.com/PRACTICE/problems/HFCQ3', u'https://www.codechef.com/PRACTICE/problems/HFCQ4', u'https://www.codechef.com/PRACTICE/problems/HFCQ5', u'https://www.codechef.com/PRACTICE/problems/HHAL', u'https://www.codechef.com/PRACTICE/problems/HISTJUNK', u'https://www.codechef.com/PRACTICE/problems/HLDOTS', u'https://www.codechef.com/PRACTICE/problems/HLPSUG', u'https://www.codechef.com/PRACTICE/problems/HOB2', u'https://www.codechef.com/PRACTICE/problems/HOBB', u'https://www.codechef.com/PRACTICE/problems/HOLDIL', u'https://www.codechef.com/PRACTICE/problems/HOLES', u'https://www.codechef.com/PRACTICE/problems/HOLES2', u'https://www.codechef.com/PRACTICE/problems/HOMDEL', u'https://www.codechef.com/PRACTICE/problems/HORSES', u'https://www.codechef.com/PRACTICE/problems/HOTEL', u'https://www.codechef.com/PRACTICE/problems/HPYBDAY', u'https://www.codechef.com/PRACTICE/problems/HS08TEST', u'https://www.codechef.com/PRACTICE/problems/HSHAKE', u'https://www.codechef.com/PRACTICE/problems/HTLPLM', u'https://www.codechef.com/PRACTICE/problems/I13POF', u'https://www.codechef.com/PRACTICE/problems/ICD01', u'https://www.codechef.com/PRACTICE/problems/ICD02', u'https://www.codechef.com/PRACTICE/problems/ICD03', u'https://www.codechef.com/PRACTICE/problems/ICD04', u'https://www.codechef.com/PRACTICE/problems/ICECREAM', u'https://www.codechef.com/PRACTICE/problems/ICL16A', u'https://www.codechef.com/PRACTICE/problems/ICL16C', u'https://www.codechef.com/PRACTICE/problems/ICL16E', u'https://www.codechef.com/PRACTICE/problems/ICLFIN01', u'https://www.codechef.com/PRACTICE/problems/ICLFIN02', u'https://www.codechef.com/PRACTICE/problems/ICQ1', u'https://www.codechef.com/PRACTICE/problems/ICQ2', u'https://www.codechef.com/PRACTICE/problems/ICQ3', u'https://www.codechef.com/PRACTICE/problems/ICQ4', u'https://www.codechef.com/PRACTICE/problems/IDCLOVE', u'https://www.codechef.com/PRACTICE/problems/IDCMSG', u'https://www.codechef.com/PRACTICE/problems/IDOLS', u'https://www.codechef.com/PRACTICE/problems/IEEET02', u'https://www.codechef.com/PRACTICE/problems/IEEEUOM', u'https://www.codechef.com/PRACTICE/problems/IG01', u'https://www.codechef.com/PRACTICE/problems/IGAME', u'https://www.codechef.com/PRACTICE/problems/IGCDLIFT', u'https://www.codechef.com/PRACTICE/problems/IGCDMAT', u'https://www.codechef.com/PRACTICE/problems/IGCDMNKY', u'https://www.codechef.com/PRACTICE/problems/IGNUS14B', u'https://www.codechef.com/PRACTICE/problems/IGNUS14D', u'https://www.codechef.com/PRACTICE/problems/IGNUS14E', u'https://www.codechef.com/PRACTICE/problems/IGNUS15B', u'https://www.codechef.com/PRACTICE/problems/IGNUS15C', u'https://www.codechef.com/PRACTICE/problems/IGNUS15D', u'https://www.codechef.com/PRACTICE/problems/IGNUS15E', u'https://www.codechef.com/PRACTICE/problems/IIITA206', u'https://www.codechef.com/PRACTICE/problems/IIITBH11', u'https://www.codechef.com/PRACTICE/problems/IIITBH14', u'https://www.codechef.com/PRACTICE/problems/IITI00', u'https://www.codechef.com/PRACTICE/problems/IITI07', u'https://www.codechef.com/PRACTICE/problems/IITI09', u'https://www.codechef.com/PRACTICE/problems/IITI11', u'https://www.codechef.com/PRACTICE/problems/IITI13', u'https://www.codechef.com/PRACTICE/problems/IITI14', u'https://www.codechef.com/PRACTICE/problems/IITI15', u'https://www.codechef.com/PRACTICE/problems/IITI16', u'https://www.codechef.com/PRACTICE/problems/IITK1P01', u'https://www.codechef.com/PRACTICE/problems/IITK1P02', u'https://www.codechef.com/PRACTICE/problems/IITK1P03', u'https://www.codechef.com/PRACTICE/problems/IITK1P04', u'https://www.codechef.com/PRACTICE/problems/IITK1P05', u'https://www.codechef.com/PRACTICE/problems/IITK1P06', u'https://www.codechef.com/PRACTICE/problems/IITK1P07', u'https://www.codechef.com/PRACTICE/problems/IITK1P08', u'https://www.codechef.com/PRACTICE/problems/IITK1P09', u'https://www.codechef.com/PRACTICE/problems/IITK1P10', u'https://www.codechef.com/PRACTICE/problems/IITK1P11', u'https://www.codechef.com/PRACTICE/problems/IITK2P01', u'https://www.codechef.com/PRACTICE/problems/IITK2P02', u'https://www.codechef.com/PRACTICE/problems/IITK2P03', u'https://www.codechef.com/PRACTICE/problems/IITK2P04', u'https://www.codechef.com/PRACTICE/problems/IITK2P05', u'https://www.codechef.com/PRACTICE/problems/IITK2P06', u'https://www.codechef.com/PRACTICE/problems/IITK2P07', u'https://www.codechef.com/PRACTICE/problems/IITK2P08', u'https://www.codechef.com/PRACTICE/problems/IITK2P09', u'https://www.codechef.com/PRACTICE/problems/IITK2P10', u'https://www.codechef.com/PRACTICE/problems/INC1', u'https://www.codechef.com/PRACTICE/problems/INC3', u'https://www.codechef.com/PRACTICE/problems/INC5', u'https://www.codechef.com/PRACTICE/problems/INGREDIE', u'https://www.codechef.com/PRACTICE/problems/INLO02', u'https://www.codechef.com/PRACTICE/problems/INLO05', u'https://www.codechef.com/PRACTICE/problems/INLO35', u'https://www.codechef.com/PRACTICE/problems/INLO36', u'https://www.codechef.com/PRACTICE/problems/INS01', u'https://www.codechef.com/PRACTICE/problems/INS0903', u'https://www.codechef.com/PRACTICE/problems/INSM02', u'https://www.codechef.com/PRACTICE/problems/INSM06', u'https://www.codechef.com/PRACTICE/problems/INSOMA1', u'https://www.codechef.com/PRACTICE/problems/INSOMA2', u'https://www.codechef.com/PRACTICE/problems/INSOMA3', u'https://www.codechef.com/PRACTICE/problems/INSOMA5', u'https://www.codechef.com/PRACTICE/problems/INSOMB1', u'https://www.codechef.com/PRACTICE/problems/INSQ15_A', u'https://www.codechef.com/PRACTICE/problems/INSQ15_B', u'https://www.codechef.com/PRACTICE/problems/INSQ15_C', u'https://www.codechef.com/PRACTICE/problems/INSQ15_D', u'https://www.codechef.com/PRACTICE/problems/INSQ15_E', u'https://www.codechef.com/PRACTICE/problems/INSQ15_F', u'https://www.codechef.com/PRACTICE/problems/INSQ15_G', u'https://www.codechef.com/PRACTICE/problems/INSQ15_H', u'https://www.codechef.com/PRACTICE/problems/INTEG', u'https://www.codechef.com/PRACTICE/problems/INTERSEC', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'https://www.codechef.com/PRACTICE/problems/INTEX1', u'https://www.codechef.com/PRACTICE/problems/INTEX10', u'https://www.codechef.com/PRACTICE/problems/INTEX11', u'https://www.codechef.com/PRACTICE/problems/INTEX12', u'https://www.codechef.com/PRACTICE/problems/INTEX13', u'https://www.codechef.com/PRACTICE/problems/INTEX2', u'https://www.codechef.com/PRACTICE/problems/INTEX3', u'https://www.codechef.com/PRACTICE/problems/INTEX4', u'https://www.codechef.com/PRACTICE/problems/INTEX5', u'https://www.codechef.com/PRACTICE/problems/INTEX6', u'https://www.codechef.com/PRACTICE/problems/INTEX7', u'https://www.codechef.com/PRACTICE/problems/INTEX8', u'https://www.codechef.com/PRACTICE/problems/INTEX9', u'https://www.codechef.com/PRACTICE/problems/INTRESEC', u'https://www.codechef.com/PRACTICE/problems/INTROSRM', u'https://www.codechef.com/PRACTICE/problems/INVBINCF', u'https://www.codechef.com/PRACTICE/problems/INVERT', u'https://www.codechef.com/PRACTICE/problems/INVITES', u'https://www.codechef.com/PRACTICE/problems/IOPC06', u'https://www.codechef.com/PRACTICE/problems/IOPC1203', u'https://www.codechef.com/PRACTICE/problems/IOPC1207', u'https://www.codechef.com/PRACTICE/problems/IOPC1211', u'https://www.codechef.com/PRACTICE/problems/IOPC13B', u'https://www.codechef.com/PRACTICE/problems/IOPC13D', u'https://www.codechef.com/PRACTICE/problems/IOPC13H', u'https://www.codechef.com/PRACTICE/problems/IOPC13N', u'https://www.codechef.com/PRACTICE/problems/IOPC13O', u'https://www.codechef.com/PRACTICE/problems/IOPC13P', u'https://www.codechef.com/PRACTICE/problems/IOPC14A', u'https://www.codechef.com/PRACTICE/problems/IOPC14C', u'https://www.codechef.com/PRACTICE/problems/IOPC14F', u'https://www.codechef.com/PRACTICE/problems/IOPC14J', u'https://www.codechef.com/PRACTICE/problems/IOPC14K', u'https://www.codechef.com/PRACTICE/problems/IOPC14N', u'https://www.codechef.com/PRACTICE/problems/IOPC14O', u'https://www.codechef.com/PRACTICE/problems/IOPC14Q', u'https://www.codechef.com/PRACTICE/problems/IOPC15A', u'https://www.codechef.com/PRACTICE/problems/IOPC15C', u'https://www.codechef.com/PRACTICE/problems/IOPC15O', u'https://www.codechef.com/PRACTICE/problems/IOPC15R', u'https://www.codechef.com/PRACTICE/problems/IOPC16E', u'https://www.codechef.com/PRACTICE/problems/IOPC16H', u'https://www.codechef.com/PRACTICE/problems/IOPC16J', u'https://www.codechef.com/PRACTICE/problems/IOPC16L', u'https://www.codechef.com/PRACTICE/problems/IOPC16M', u'https://www.codechef.com/PRACTICE/problems/IOPC16N', u'https://www.codechef.com/PRACTICE/problems/IOPC16O', u'https://www.codechef.com/PRACTICE/problems/IOPC16P', u'https://www.codechef.com/PRACTICE/problems/IOPC16Q', u'https://www.codechef.com/PRACTICE/problems/IOPC16R', u'https://www.codechef.com/PRACTICE/problems/IOPC16S', u'https://www.codechef.com/PRACTICE/problems/IOPC16T', u'https://www.codechef.com/PRACTICE/problems/IOPC16U', u'https://www.codechef.com/PRACTICE/problems/IRONISL', u'https://www.codechef.com/PRACTICE/problems/ISD', u'https://www.codechef.com/PRACTICE/problems/ISITFIB', u'https://www.codechef.com/PRACTICE/problems/ISM01', u'https://www.codechef.com/PRACTICE/problems/ISM1', u'https://www.codechef.com/PRACTICE/problems/ISM3', u'https://www.codechef.com/PRACTICE/problems/ISM6', u'https://www.codechef.com/PRACTICE/problems/ISONUM', u'https://www.codechef.com/PRACTICE/problems/ITM001', u'https://www.codechef.com/PRACTICE/problems/ITM003', u'https://www.codechef.com/PRACTICE/problems/ITRA03', u'https://www.codechef.com/PRACTICE/problems/ITRA07', u'https://www.codechef.com/PRACTICE/problems/ITRIX16A', u'https://www.codechef.com/PRACTICE/problems/ITRIX16D', u'https://www.codechef.com/PRACTICE/problems/IWIN', u'https://www.codechef.com/PRACTICE/problems/J1', u'https://www.codechef.com/PRACTICE/problems/J2', u'https://www.codechef.com/PRACTICE/problems/J7', u'https://www.codechef.com/PRACTICE/problems/JABO', u'https://www.codechef.com/PRACTICE/problems/JACKPOT', u'https://www.codechef.com/PRACTICE/problems/JADEJA', u'https://www.codechef.com/PRACTICE/problems/JAGE', u'https://www.codechef.com/PRACTICE/problems/JERRYRUN', u'https://www.codechef.com/PRACTICE/problems/JERYFIBO', u'https://www.codechef.com/PRACTICE/problems/JHONNY', u'https://www.codechef.com/PRACTICE/problems/JMI00', u'https://www.codechef.com/PRACTICE/problems/JMI04', u'https://www.codechef.com/PRACTICE/problems/JNTUV1', u'https://www.codechef.com/PRACTICE/problems/JNTUV2', u'https://www.codechef.com/PRACTICE/problems/JNTUV3', u'https://www.codechef.com/PRACTICE/problems/JNTUV4', u'https://www.codechef.com/PRACTICE/problems/JOHNNY', u'https://www.codechef.com/PRACTICE/problems/JOHNY', u'https://www.codechef.com/PRACTICE/problems/JOV', u'https://www.codechef.com/PRACTICE/problems/JUMP', u'https://www.codechef.com/PRACTICE/problems/JUNONGF', u'https://www.codechef.com/PRACTICE/problems/K1', u'https://www.codechef.com/PRACTICE/problems/K15A', u'https://www.codechef.com/PRACTICE/problems/K15C', u'https://www.codechef.com/PRACTICE/problems/K15D', u'https://www.codechef.com/PRACTICE/problems/K15H', u'https://www.codechef.com/PRACTICE/problems/K16F', u'https://www.codechef.com/PRACTICE/problems/K2', u'https://www.codechef.com/PRACTICE/problems/KALKI', u'https://www.codechef.com/PRACTICE/problems/KAN13A', u'https://www.codechef.com/PRACTICE/problems/KAN13B', u'https://www.codechef.com/PRACTICE/problems/KAN13C', u'https://www.codechef.com/PRACTICE/problems/KAN13D', u'https://www.codechef.com/PRACTICE/problems/KAN13E', u'https://www.codechef.com/PRACTICE/problems/KAN13F', u'https://www.codechef.com/PRACTICE/problems/KAN13G', u'https://www.codechef.com/PRACTICE/problems/KAN13H', u'https://www.codechef.com/PRACTICE/problems/KAN15RTA', u'https://www.codechef.com/PRACTICE/problems/KAN15RTB', u'https://www.codechef.com/PRACTICE/problems/KAN15RTC', u'https://www.codechef.com/PRACTICE/problems/KAN15RTD', u'https://www.codechef.com/PRACTICE/problems/KAN15RTF', u'https://www.codechef.com/PRACTICE/problems/KAN15RTG', u'https://www.codechef.com/PRACTICE/problems/KAN15RTH', u'https://www.codechef.com/PRACTICE/problems/KAN15RTI', u'https://www.codechef.com/PRACTICE/problems/KAN15RTJ', u'https://www.codechef.com/PRACTICE/problems/KAN15RTK', u'https://www.codechef.com/PRACTICE/problems/KAN15RTL', u'https://www.codechef.com/PRACTICE/problems/KATNISS', u'https://www.codechef.com/PRACTICE/problems/KC04', u'https://www.codechef.com/PRACTICE/problems/KCHIPS', u'https://www.codechef.com/PRACTICE/problems/KCONNECT', u'https://www.codechef.com/PRACTICE/problems/KDATZERO', u'https://www.codechef.com/PRACTICE/problems/KETSWAP', u'https://www.codechef.com/PRACTICE/problems/KFORK', u'https://www.codechef.com/PRACTICE/problems/KFUNC', u'https://www.codechef.com/PRACTICE/problems/KGOOD', u'https://www.codechef.com/PRACTICE/problems/KGP13A', u'https://www.codechef.com/PRACTICE/problems/KGP13B', u'https://www.codechef.com/PRACTICE/problems/KGP13C', u'https://www.codechef.com/PRACTICE/problems/KGP13F', u'https://www.codechef.com/PRACTICE/problems/KGP13G', u'https://www.codechef.com/PRACTICE/problems/KGP13H', u'https://www.codechef.com/PRACTICE/problems/KGP13I', u'https://www.codechef.com/PRACTICE/problems/KGP14A', u'https://www.codechef.com/PRACTICE/problems/KGP14B', u'https://www.codechef.com/PRACTICE/problems/KGP14C', u'https://www.codechef.com/PRACTICE/problems/KGP14D', u'https://www.codechef.com/PRACTICE/problems/KGP14E', u'https://www.codechef.com/PRACTICE/problems/KGP14F', u'https://www.codechef.com/PRACTICE/problems/KGP14H', u'https://www.codechef.com/PRACTICE/problems/KGP14I', u'https://www.codechef.com/PRACTICE/problems/KGP14J', u'https://www.codechef.com/PRACTICE/problems/KING', u'https://www.codechef.com/PRACTICE/problems/KINGCON', u'https://www.codechef.com/PRACTICE/problems/KINGSHIP', u'https://www.codechef.com/PRACTICE/problems/KINT', u'https://www.codechef.com/PRACTICE/problems/KJCC01', u'https://www.codechef.com/PRACTICE/problems/KJCC02', u'https://www.codechef.com/PRACTICE/problems/KJCC03', u'https://www.codechef.com/PRACTICE/problems/KJCC05', u'https://www.codechef.com/PRACTICE/problems/KJCC12', u'https://www.codechef.com/PRACTICE/problems/KJCC13', u'https://www.codechef.com/PRACTICE/problems/KMHAMHA', u'https://www.codechef.com/PRACTICE/problems/KNIGHT01', u'https://www.codechef.com/PRACTICE/problems/KNIGHT03', u'https://www.codechef.com/PRACTICE/problems/KNIGHT05', u'https://www.codechef.com/PRACTICE/problems/KNIGHTMV', u'https://www.codechef.com/PRACTICE/problems/KNODES', u'https://www.codechef.com/PRACTICE/problems/KNPSK', u'https://www.codechef.com/PRACTICE/problems/KOKT02', u'https://www.codechef.com/PRACTICE/problems/KOKT03', u'https://www.codechef.com/PRACTICE/problems/KOKT05', u'https://www.codechef.com/PRACTICE/problems/KOL1502', u'https://www.codechef.com/PRACTICE/problems/KOL1504', u'https://www.codechef.com/PRACTICE/problems/KOL1505', u'https://www.codechef.com/PRACTICE/problems/KOL1506', u'https://www.codechef.com/PRACTICE/problems/KOL1508', u'https://www.codechef.com/PRACTICE/problems/KOL1509', u'https://www.codechef.com/PRACTICE/problems/KOL1510', u'https://www.codechef.com/PRACTICE/problems/KOL15A', u'https://www.codechef.com/PRACTICE/problems/KOL15B', u'https://www.codechef.com/PRACTICE/problems/KOL15C', u'https://www.codechef.com/PRACTICE/problems/KPRIME', u'https://www.codechef.com/PRACTICE/problems/KSPHERES', u'https://www.codechef.com/PRACTICE/problems/KSUBSUM', u'https://www.codechef.com/PRACTICE/problems/KSUM', u'https://www.codechef.com/PRACTICE/problems/KTHCON', u'https://www.codechef.com/PRACTICE/problems/KTHPATH', u'https://www.codechef.com/PRACTICE/problems/KTOUR', u'https://www.codechef.com/PRACTICE/problems/KTTABLE', u'https://www.codechef.com/PRACTICE/problems/KUNIQUE', u'https://www.codechef.com/PRACTICE/problems/KWERIES', u'https://www.codechef.com/PRACTICE/problems/L2GRAPH', u'https://www.codechef.com/PRACTICE/problems/LABEL', u'https://www.codechef.com/PRACTICE/problems/LADDU', u'https://www.codechef.com/PRACTICE/problems/LAPIN', u'https://www.codechef.com/PRACTICE/problems/LARGEST', u'https://www.codechef.com/PRACTICE/problems/LASTDIG', u'https://www.codechef.com/PRACTICE/problems/LCH15CD', u'https://www.codechef.com/PRACTICE/problems/LCH15JAB', u'https://www.codechef.com/PRACTICE/problems/LCH15JEF', u'https://www.codechef.com/PRACTICE/problems/LCH15JGH', u'https://www.codechef.com/PRACTICE/problems/LCKYST', u'https://www.codechef.com/PRACTICE/problems/LCOLLIS', u'https://www.codechef.com/PRACTICE/problems/LCPESY', u'https://www.codechef.com/PRACTICE/problems/LCPMAX', u'https://www.codechef.com/PRACTICE/problems/LEALCO', u'https://www.codechef.com/PRACTICE/problems/LEBALONS', u'https://www.codechef.com/PRACTICE/problems/LEBAMBOO', u'https://www.codechef.com/PRACTICE/problems/LEBINARY', u'https://www.codechef.com/PRACTICE/problems/LEBLOCKS', u'https://www.codechef.com/PRACTICE/problems/LEBOBBLE', u'https://www.codechef.com/PRACTICE/problems/LEBOMBS', u'https://www.codechef.com/PRACTICE/problems/LECANDY', u'https://www.codechef.com/PRACTICE/problems/LECARDS', u'https://www.codechef.com/PRACTICE/problems/LEDIV', u'https://www.codechef.com/PRACTICE/problems/LEEXAMS', u'https://www.codechef.com/PRACTICE/problems/LEFEED', u'https://www.codechef.com/PRACTICE/problems/LELEMON', u'https://www.codechef.com/PRACTICE/problems/LELOUCH2', u'https://www.codechef.com/PRACTICE/problems/LEMAGIC', u'https://www.codechef.com/PRACTICE/problems/LEMOUSE', u'https://www.codechef.com/PRACTICE/problems/LEMOVIE', u'https://www.codechef.com/PRACTICE/problems/LEMUSIC', u'https://www.codechef.com/PRACTICE/problems/LEPAINT', u'https://www.codechef.com/PRACTICE/problems/LEPERMUT', u'https://www.codechef.com/PRACTICE/problems/LETSTOSS', u'https://www.codechef.com/PRACTICE/problems/LEVY', u'https://www.codechef.com/PRACTICE/problems/LFEB14A', u'https://www.codechef.com/PRACTICE/problems/LFEB14B', u'https://www.codechef.com/PRACTICE/problems/LFIRE', u'https://www.codechef.com/PRACTICE/problems/LFIVES', u'https://www.codechef.com/PRACTICE/problems/LFS', u'https://www.codechef.com/PRACTICE/problems/LIFE', u'https://www.codechef.com/PRACTICE/problems/LIGHTHSE', u'https://www.codechef.com/PRACTICE/problems/LIGHTS', u'https://www.codechef.com/PRACTICE/problems/LINCAN', u'https://www.codechef.com/PRACTICE/problems/LINCOM', u'https://www.codechef.com/PRACTICE/problems/LINEAR', u'https://www.codechef.com/PRACTICE/problems/LINEPROB', u'https://www.codechef.com/PRACTICE/problems/LINFRI', u'https://www.codechef.com/PRACTICE/problems/LINGRP', u'https://www.codechef.com/PRACTICE/problems/LINNUM', u'https://www.codechef.com/PRACTICE/problems/LINSUB', u'https://www.codechef.com/PRACTICE/problems/LINXOR', u'https://www.codechef.com/PRACTICE/problems/LISA', u'https://www.codechef.com/PRACTICE/problems/LISBYONE', u'https://www.codechef.com/PRACTICE/problems/LISLDS', u'https://www.codechef.com/PRACTICE/problems/LIZARDS', u'https://www.codechef.com/PRACTICE/problems/LIZARDS2', u'https://www.codechef.com/PRACTICE/problems/LMA1', u'https://www.codechef.com/PRACTICE/problems/LMATRIX2', u'https://www.codechef.com/PRACTICE/problems/LMDP1103', u'https://www.codechef.com/PRACTICE/problems/LNUM', u'https://www.codechef.com/PRACTICE/problems/LOC01', u'https://www.codechef.com/PRACTICE/problems/LOCKS', u'https://www.codechef.com/PRACTICE/problems/LOCRECT', u'https://www.codechef.com/PRACTICE/problems/LOCRPT', u'https://www.codechef.com/PRACTICE/problems/LOGGERS', u'https://www.codechef.com/PRACTICE/problems/LOGIC1', u'https://www.codechef.com/PRACTICE/problems/LOGIC3', u'https://www.codechef.com/PRACTICE/problems/LOKBIL', u'https://www.codechef.com/PRACTICE/problems/LOLOL', u'https://www.codechef.com/PRACTICE/problems/LONGART', u'https://www.codechef.com/PRACTICE/problems/LOSTPW', u'https://www.codechef.com/PRACTICE/problems/LOTERY', u'https://www.codechef.com/PRACTICE/problems/LOVE', u'https://www.codechef.com/PRACTICE/problems/LOVEA', u'https://www.codechef.com/PRACTICE/problems/LOWSUM', u'https://www.codechef.com/PRACTICE/problems/LPAIR', u'https://www.codechef.com/PRACTICE/problems/LPATH', u'https://www.codechef.com/PRACTICE/problems/LSTGRPH', u'https://www.codechef.com/PRACTICE/problems/LSTR', u'https://www.codechef.com/PRACTICE/problems/LUCKFILL', u'https://www.codechef.com/PRACTICE/problems/LUCKFOUR', u'https://www.codechef.com/PRACTICE/problems/LUCKG', u'https://www.codechef.com/PRACTICE/problems/LUCKPAL', u'https://www.codechef.com/PRACTICE/problems/LUCKY', u'https://www.codechef.com/PRACTICE/problems/LUCKY1', u'https://www.codechef.com/PRACTICE/problems/LUCKY10', u'https://www.codechef.com/PRACTICE/problems/LUCKY2', u'https://www.codechef.com/PRACTICE/problems/LUCKY4', u'https://www.codechef.com/PRACTICE/problems/LUCKY5', u'https://www.codechef.com/PRACTICE/problems/LUCKY8', u'https://www.codechef.com/PRACTICE/problems/LUCKYBAL', u'https://www.codechef.com/PRACTICE/problems/LUCKYR', u'https://www.codechef.com/PRACTICE/problems/LUCKYSTR', u'https://www.codechef.com/PRACTICE/problems/LUKYDRIV', u'https://www.codechef.com/PRACTICE/problems/LVP', u'https://www.codechef.com/PRACTICE/problems/LWS', u'https://www.codechef.com/PRACTICE/problems/LYRC', u'https://www.codechef.com/PRACTICE/problems/M2', u'https://www.codechef.com/PRACTICE/problems/MAANDI', u'https://www.codechef.com/PRACTICE/problems/MAC01', u'https://www.codechef.com/PRACTICE/problems/MAC04', u'https://www.codechef.com/PRACTICE/problems/MAGICSTR', u'https://www.codechef.com/PRACTICE/problems/MAJNUM', u'https://www.codechef.com/PRACTICE/problems/MAKEART', u'https://www.codechef.com/PRACTICE/problems/MAKELIS', u'https://www.codechef.com/PRACTICE/problems/MAKPALIN', u'https://www.codechef.com/PRACTICE/problems/MANIP2', u'https://www.codechef.com/PRACTICE/problems/MANIP3', u'https://www.codechef.com/PRACTICE/problems/MANIP5', u'https://www.codechef.com/PRACTICE/problems/MANYCHEF', u'https://www.codechef.com/PRACTICE/problems/MANYLIST', u'https://www.codechef.com/PRACTICE/problems/MARBLEGF', u'https://www.codechef.com/PRACTICE/problems/MARBLES', u'https://www.codechef.com/PRACTICE/problems/MARCHA1', u'https://www.codechef.com/PRACTICE/problems/MARCHA2', u'https://www.codechef.com/PRACTICE/problems/MARCHA4', u'https://www.codechef.com/PRACTICE/problems/MARKS', u'https://www.codechef.com/PRACTICE/problems/MASNUM', u'https://www.codechef.com/PRACTICE/problems/MASTRIAN', u'https://www.codechef.com/PRACTICE/problems/MATHS', u'https://www.codechef.com/PRACTICE/problems/MATRIX2', u'https://www.codechef.com/PRACTICE/problems/MAXCOMB', u'https://www.codechef.com/PRACTICE/problems/MAXCOMP', u'https://www.codechef.com/PRACTICE/problems/MAXCOUNT', u'https://www.codechef.com/PRACTICE/problems/MAXCROSS', u'https://www.codechef.com/PRACTICE/problems/MAXDIFF', u'https://www.codechef.com/PRACTICE/problems/MAXDIFFW', u'https://www.codechef.com/PRACTICE/problems/MAXDIST', u'https://www.codechef.com/PRACTICE/problems/MAXGCD', u'https://www.codechef.com/PRACTICE/problems/MAXISUM', u'https://www.codechef.com/PRACTICE/problems/MAXMAGIC', u'https://www.codechef.com/PRACTICE/problems/MAXMATCH', u'https://www.codechef.com/PRACTICE/problems/MAXPR', u'https://www.codechef.com/PRACTICE/problems/MAXRCHR', u'https://www.codechef.com/PRACTICE/problems/MAXRECT', u'https://www.codechef.com/PRACTICE/problems/MAXSUM', u'https://www.codechef.com/PRACTICE/problems/MAZE', u'https://www.codechef.com/PRACTICE/problems/MBOARD', u'https://www.codechef.com/PRACTICE/problems/MCHAIRS', u'https://www.codechef.com/PRACTICE/problems/MCHEF', u'https://www.codechef.com/PRACTICE/problems/MDIST', u'https://www.codechef.com/PRACTICE/problems/MDOSA', u'https://www.codechef.com/PRACTICE/problems/METEORAK', u'https://www.codechef.com/PRACTICE/problems/MGCH3D', u'https://www.codechef.com/PRACTICE/problems/MGCHGYM', u'https://www.codechef.com/PRACTICE/problems/MGCRNK', u'https://www.codechef.com/PRACTICE/problems/MHGOC02', u'https://www.codechef.com/PRACTICE/problems/MHTPAIR', u'https://www.codechef.com/PRACTICE/problems/MIKE1', u'https://www.codechef.com/PRACTICE/problems/MIKE2', u'https://www.codechef.com/PRACTICE/problems/MIKE3', u'https://www.codechef.com/PRACTICE/problems/MILESTN', u'https://www.codechef.com/PRACTICE/problems/MIME2', u'https://www.codechef.com/PRACTICE/problems/MINESWPR', u'https://www.codechef.com/PRACTICE/problems/MINPOLY', u'https://www.codechef.com/PRACTICE/problems/MINXOR', u'https://www.codechef.com/PRACTICE/problems/MIRRORS', u'https://www.codechef.com/PRACTICE/problems/MISINTER', u'https://www.codechef.com/PRACTICE/problems/MISNUM', u'https://www.codechef.com/PRACTICE/problems/MISSNUM', u'https://www.codechef.com/PRACTICE/problems/MISSP', u'https://www.codechef.com/PRACTICE/problems/MISTERM', u'https://www.codechef.com/PRACTICE/problems/MIXTURES', u'https://www.codechef.com/PRACTICE/problems/MKSQR', u'https://www.codechef.com/PRACTICE/problems/MLCHEF', u'https://www.codechef.com/PRACTICE/problems/MMADNESS', u'https://www.codechef.com/PRACTICE/problems/MMPROD', u'https://www.codechef.com/PRACTICE/problems/MMSUM', u'https://www.codechef.com/PRACTICE/problems/MNMX', u'https://www.codechef.com/PRACTICE/problems/MOD', u'https://www.codechef.com/PRACTICE/problems/MODQ', u'https://www.codechef.com/PRACTICE/problems/MONEY', u'https://www.codechef.com/PRACTICE/problems/MONOPLOY', u'https://www.codechef.com/PRACTICE/problems/MONTRANS', u'https://www.codechef.com/PRACTICE/problems/MOREFB', u'https://www.codechef.com/PRACTICE/problems/MOSTDIST', u'https://www.codechef.com/PRACTICE/problems/MOU1H', u'https://www.codechef.com/PRACTICE/problems/MOU2H', u'https://www.codechef.com/PRACTICE/problems/MOVES', u'https://www.codechef.com/PRACTICE/problems/MOVF', u'https://www.codechef.com/PRACTICE/problems/MOVIEWKN', u'https://www.codechef.com/PRACTICE/problems/MPAIR', u'https://www.codechef.com/PRACTICE/problems/MPROD', u'https://www.codechef.com/PRACTICE/problems/MPROJ', u'https://www.codechef.com/PRACTICE/problems/MPS04', u'https://www.codechef.com/PRACTICE/problems/MPSTME1', u'https://www.codechef.com/PRACTICE/problems/MPSTME4', u'https://www.codechef.com/PRACTICE/problems/MQRY', u'https://www.codechef.com/PRACTICE/problems/MRIU1', u'https://www.codechef.com/PRACTICE/problems/MRIU11', u'https://www.codechef.com/PRACTICE/problems/MRIU12', u'https://www.codechef.com/PRACTICE/problems/MRIU13', u'https://www.codechef.com/PRACTICE/problems/MRIU3', u'https://www.codechef.com/PRACTICE/problems/MRIU4', u'https://www.codechef.com/PRACTICE/problems/MRIU6', u'https://www.codechef.com/PRACTICE/problems/MRIU9', u'https://www.codechef.com/PRACTICE/problems/MRS', u'https://www.codechef.com/PRACTICE/problems/MSDBIN', u'https://www.codechef.com/PRACTICE/problems/MSTEP', u'https://www.codechef.com/PRACTICE/problems/MSTICK', u'https://www.codechef.com/PRACTICE/problems/MSTRINGS', u'https://www.codechef.com/PRACTICE/problems/MTMXSUM', u'https://www.codechef.com/PRACTICE/problems/MTRICK', u'https://www.codechef.com/PRACTICE/problems/MTRWY', u'https://www.codechef.com/PRACTICE/problems/MUFFINS', u'https://www.codechef.com/PRACTICE/problems/MUFFINS3', u'https://www.codechef.com/PRACTICE/problems/MULDIV', u'https://www.codechef.com/PRACTICE/problems/MULMAGIC', u'https://www.codechef.com/PRACTICE/problems/MULTIPLY', u'https://www.codechef.com/PRACTICE/problems/MULTISRM', u'https://www.codechef.com/PRACTICE/problems/MULTQ3', u'https://www.codechef.com/PRACTICE/problems/MUPDO', u'https://www.codechef.com/PRACTICE/problems/MVCOIN', u'https://www.codechef.com/PRACTICE/problems/MX', u'https://www.codechef.com/PRACTICE/problems/MXCNT8', u'https://www.codechef.com/PRACTICE/problems/MXSM', u'https://www.codechef.com/PRACTICE/problems/MXSUBARR', u'https://www.codechef.com/PRACTICE/problems/MXZERO', u'https://www.codechef.com/PRACTICE/problems/N4', u'https://www.codechef.com/PRACTICE/problems/NAME1', u'https://www.codechef.com/PRACTICE/problems/NAME2', u'https://www.codechef.com/PRACTICE/problems/NBSUM', u'https://www.codechef.com/PRACTICE/problems/NCC01', u'https://www.codechef.com/PRACTICE/problems/NCC3', u'https://www.codechef.com/PRACTICE/problems/NDIFFPAL', u'https://www.codechef.com/PRACTICE/problems/NDLVOTE', u'https://www.codechef.com/PRACTICE/problems/NDUNGEON', u'https://www.codechef.com/PRACTICE/problems/NEURON2', u'https://www.codechef.com/PRACTICE/problems/NEURONB1', u'https://www.codechef.com/PRACTICE/problems/NEURONB3', u'https://www.codechef.com/PRACTICE/problems/NEURONB4', u'https://www.codechef.com/PRACTICE/problems/NEWPH', u'https://www.codechef.com/PRACTICE/problems/NEWSCH', u'https://www.codechef.com/PRACTICE/problems/NEXTNUM', u'https://www.codechef.com/PRACTICE/problems/NEXUS00', u'https://www.codechef.com/PRACTICE/problems/NEXUS01', u'https://www.codechef.com/PRACTICE/problems/NEXUS02', u'https://www.codechef.com/PRACTICE/problems/NEXUS03', u'https://www.codechef.com/PRACTICE/problems/NF02', u'https://www.codechef.com/PRACTICE/problems/NF03', u'https://www.codechef.com/PRACTICE/problems/NFEB4', u'https://www.codechef.com/PRACTICE/problems/NGAME', u'https://www.codechef.com/PRACTICE/problems/NGTBIT', u'https://www.codechef.com/PRACTICE/problems/NI01', u'https://www.codechef.com/PRACTICE/problems/NI02', u'https://www.codechef.com/PRACTICE/problems/NI04', u'https://www.codechef.com/PRACTICE/problems/NI05', u'https://www.codechef.com/PRACTICE/problems/NICENESS', u'https://www.codechef.com/PRACTICE/problems/NICEQUAD', u'https://www.codechef.com/PRACTICE/problems/NICPRM', u'https://www.codechef.com/PRACTICE/problems/NITA01', u'https://www.codechef.com/PRACTICE/problems/NITA02', u'https://www.codechef.com/PRACTICE/problems/NITA05', u'https://www.codechef.com/PRACTICE/problems/NITA07', u'https://www.codechef.com/PRACTICE/problems/NITA09', u'https://www.codechef.com/PRACTICE/problems/NMAGIC', u'https://www.codechef.com/PRACTICE/problems/NOCODING', u'https://www.codechef.com/PRACTICE/problems/NOKIA', u'https://www.codechef.com/PRACTICE/problems/NOLOGIC', u'https://www.codechef.com/PRACTICE/problems/NONPALIN', u'https://www.codechef.com/PRACTICE/problems/NOPC1', u'https://www.codechef.com/PRACTICE/problems/NOPC10', u'https://www.codechef.com/PRACTICE/problems/NOPC3', u'https://www.codechef.com/PRACTICE/problems/NOPC4', u'https://www.codechef.com/PRACTICE/problems/NOPC6', u'https://www.codechef.com/PRACTICE/problems/NOPC7', u'https://www.codechef.com/PRACTICE/problems/NOPC9', u'https://www.codechef.com/PRACTICE/problems/NOTATRI', u'https://www.codechef.com/PRACTICE/problems/NOWAYS', u'https://www.codechef.com/PRACTICE/problems/NPRM', u'https://www.codechef.com/PRACTICE/problems/NRTKH', u'https://www.codechef.com/PRACTICE/problems/NSIT11', u'https://www.codechef.com/PRACTICE/problems/NSIT13', u'https://www.codechef.com/PRACTICE/problems/NSIT14', u'https://www.codechef.com/PRACTICE/problems/NSIT15', u'https://www.codechef.com/PRACTICE/problems/NTHCIR', u'https://www.codechef.com/PRACTICE/problems/NTSK', u'https://www.codechef.com/PRACTICE/problems/NU01', u'https://www.codechef.com/PRACTICE/problems/NU03', u'https://www.codechef.com/PRACTICE/problems/NUKES', u'https://www.codechef.com/PRACTICE/problems/NUMBERS', u'https://www.codechef.com/PRACTICE/problems/NUMFACT', u'https://www.codechef.com/PRACTICE/problems/NUMGAME', u'https://www.codechef.com/PRACTICE/problems/NUMGAME2', u'https://www.codechef.com/PRACTICE/problems/NUMMAX3', u'https://www.codechef.com/PRACTICE/problems/NUMPATH', u'https://www.codechef.com/PRACTICE/problems/NUMSET', u'https://www.codechef.com/PRACTICE/problems/NUMSUM', u'https://www.codechef.com/PRACTICE/problems/NWAYS', u'https://www.codechef.com/PRACTICE/problems/NX', u'https://www.codechef.com/PRACTICE/problems/NXTPALIN', u'https://www.codechef.com/PRACTICE/problems/NYUMAT', u'https://www.codechef.com/PRACTICE/problems/NYUMTEA', u'https://www.codechef.com/PRACTICE/problems/NYUPLOCK', u'https://www.codechef.com/PRACTICE/problems/ODD86', u'https://www.codechef.com/PRACTICE/problems/ODDBIN', u'https://www.codechef.com/PRACTICE/problems/ODDDIV', u'https://www.codechef.com/PRACTICE/problems/ODDEVENX', u'https://www.codechef.com/PRACTICE/problems/OJUMPS', u'https://www.codechef.com/PRACTICE/problems/OLIVE', u'https://www.codechef.com/PRACTICE/problems/OMWG', u'https://www.codechef.com/PRACTICE/problems/ONEKING', u'https://www.codechef.com/PRACTICE/problems/ONOZ', u'https://www.codechef.com/PRACTICE/problems/ONP', u'https://www.codechef.com/PRACTICE/problems/OPC1601', u'https://www.codechef.com/PRACTICE/problems/OPC1602', u'https://www.codechef.com/PRACTICE/problems/OPC1603', u'https://www.codechef.com/PRACTICE/problems/OPC1604', u'https://www.codechef.com/PRACTICE/problems/ORACLCS', u'https://www.codechef.com/PRACTICE/problems/ORDERS', u'https://www.codechef.com/PRACTICE/problems/OV1', u'https://www.codechef.com/PRACTICE/problems/OVERTAKE', u'https://www.codechef.com/PRACTICE/problems/P1308', u'https://www.codechef.com/PRACTICE/problems/P1Z2S', u'https://www.codechef.com/PRACTICE/problems/P8', u'https://www.codechef.com/PRACTICE/problems/PACKBAND', u'https://www.codechef.com/PRACTICE/problems/PAINTBOX', u'https://www.codechef.com/PRACTICE/problems/PAIRCLST', u'https://www.codechef.com/PRACTICE/problems/PAIRING', u'https://www.codechef.com/PRACTICE/problems/PAIRSUM', u'https://www.codechef.com/PRACTICE/problems/PALGAME', u'https://www.codechef.com/PRACTICE/problems/PALHAPPY', u'https://www.codechef.com/PRACTICE/problems/PALIN', u'https://www.codechef.com/PRACTICE/problems/PALIN3', u'https://www.codechef.com/PRACTICE/problems/PALIND', u'https://www.codechef.com/PRACTICE/problems/PALINDR', u'https://www.codechef.com/PRACTICE/problems/PALL01', u'https://www.codechef.com/PRACTICE/problems/PALPROB', u'https://www.codechef.com/PRACTICE/problems/PALSTR', u'https://www.codechef.com/PRACTICE/problems/PANSTACK', u'https://www.codechef.com/PRACTICE/problems/PAR', u'https://www.codechef.com/PRACTICE/problems/PARITREE', u'https://www.codechef.com/PRACTICE/problems/PARKWOE', u'https://www.codechef.com/PRACTICE/problems/PARTH', u'https://www.codechef.com/PRACTICE/problems/PASCAL', u'https://www.codechef.com/PRACTICE/problems/PASSSYS', u'https://www.codechef.com/PRACTICE/problems/PATHS', u'https://www.codechef.com/PRACTICE/problems/PATHSG', u'https://www.codechef.com/PRACTICE/problems/PATTMATC', u'https://www.codechef.com/PRACTICE/problems/PBUZZ2', u'https://www.codechef.com/PRACTICE/problems/PBUZZ3', u'https://www.codechef.com/PRACTICE/problems/PBUZZ4', u'https://www.codechef.com/PRACTICE/problems/PBUZZ6', u'https://www.codechef.com/PRACTICE/problems/PC05', u'https://www.codechef.com/PRACTICE/problems/PCHIPS', u'https://www.codechef.com/PRACTICE/problems/PCSC1', u'https://www.codechef.com/PRACTICE/problems/PCSC2', u'https://www.codechef.com/PRACTICE/problems/PCSC3', u'https://www.codechef.com/PRACTICE/problems/PCSC4', u'https://www.codechef.com/PRACTICE/problems/PCSC6', u'https://www.codechef.com/PRACTICE/problems/PCSC7', u'https://www.codechef.com/PRACTICE/problems/PCYCLE', u'https://www.codechef.com/PRACTICE/problems/PD13', u'https://www.codechef.com/PRACTICE/problems/PD22', u'https://www.codechef.com/PRACTICE/problems/PD23', u'https://www.codechef.com/PRACTICE/problems/PD31', u'https://www.codechef.com/PRACTICE/problems/PD33', u'https://www.codechef.com/PRACTICE/problems/PEAKS', u'https://www.codechef.com/PRACTICE/problems/PEOPLOVE', u'https://www.codechef.com/PRACTICE/problems/PERFECT', u'https://www.codechef.com/PRACTICE/problems/PERFTIME', u'https://www.codechef.com/PRACTICE/problems/PERHIL', u'https://www.codechef.com/PRACTICE/problems/PERM', u'https://www.codechef.com/PRACTICE/problems/PERMSUFF', u'https://www.codechef.com/PRACTICE/problems/PERMUT2', u'https://www.codechef.com/PRACTICE/problems/PERSHFTS', u'https://www.codechef.com/PRACTICE/problems/PETERSEN', u'https://www.codechef.com/PRACTICE/problems/PETRM', u'https://www.codechef.com/PRACTICE/problems/PG', u'https://www.codechef.com/PRACTICE/problems/PGM4', u'https://www.codechef.com/PRACTICE/problems/PHYSICS', u'https://www.codechef.com/PRACTICE/problems/PIANO1', u'https://www.codechef.com/PRACTICE/problems/PINOCH1', u'https://www.codechef.com/PRACTICE/problems/PINOCH2', u'https://www.codechef.com/PRACTICE/problems/PLANEDIV', u'https://www.codechef.com/PRACTICE/problems/PLAYFIT', u'https://www.codechef.com/PRACTICE/problems/PLGRM', u'https://www.codechef.com/PRACTICE/problems/PLND', u'https://www.codechef.com/PRACTICE/problems/PLTGRP', u'https://www.codechef.com/PRACTICE/problems/PLUS', u'https://www.codechef.com/PRACTICE/problems/PLZLYKME', u'https://www.codechef.com/PRACTICE/problems/PMARK', u'https://www.codechef.com/PRACTICE/problems/PNTNG', u'https://www.codechef.com/PRACTICE/problems/PNUM', u'https://www.codechef.com/PRACTICE/problems/POFACT', u'https://www.codechef.com/PRACTICE/problems/POINTS', u'https://www.codechef.com/PRACTICE/problems/POKER', u'https://www.codechef.com/PRACTICE/problems/POLYDIFR', u'https://www.codechef.com/PRACTICE/problems/POLYEVAL', u'https://www.codechef.com/PRACTICE/problems/POMUSE', u'https://www.codechef.com/PRACTICE/problems/POPT', u'https://www.codechef.com/PRACTICE/problems/POSTAL', u'https://www.codechef.com/PRACTICE/problems/POSTIT', u'https://www.codechef.com/PRACTICE/problems/POTATOES', u'https://www.codechef.com/PRACTICE/problems/POUR1', u'https://www.codechef.com/PRACTICE/problems/POWER2', u'https://www.codechef.com/PRACTICE/problems/POWERMUL', u'https://www.codechef.com/PRACTICE/problems/POYBLD', u'https://www.codechef.com/PRACTICE/problems/POYHTL', u'https://www.codechef.com/PRACTICE/problems/POYNBRG', u'https://www.codechef.com/PRACTICE/problems/POYPCRD', u'https://www.codechef.com/PRACTICE/problems/POYPFIB', u'https://www.codechef.com/PRACTICE/problems/POYTTC', u'https://www.codechef.com/PRACTICE/problems/PP', u'https://www.codechef.com/PRACTICE/problems/PPCTS', u'https://www.codechef.com/PRACTICE/problems/PPERM', u'https://www.codechef.com/PRACTICE/problems/PPLUCKY', u'https://www.codechef.com/PRACTICE/problems/PPNUM', u'https://www.codechef.com/PRACTICE/problems/PPOW', u'https://www.codechef.com/PRACTICE/problems/PPSUM', u'https://www.codechef.com/PRACTICE/problems/PPTEST', u'https://www.codechef.com/PRACTICE/problems/PPTREE', u'https://www.codechef.com/PRACTICE/problems/PPXOR', u'https://www.codechef.com/PRACTICE/problems/PRAC', u'https://www.codechef.com/PRACTICE/problems/PRAYAS01', u'https://www.codechef.com/PRACTICE/problems/PRB01', u'https://www.codechef.com/PRACTICE/problems/PRCNSR1', u'https://www.codechef.com/PRACTICE/problems/PRCNSR2', u'https://www.codechef.com/PRACTICE/problems/PRCNSR3', u'https://www.codechef.com/PRACTICE/problems/PRCNSR4', u'https://www.codechef.com/PRACTICE/problems/PRCNSR5', u'https://www.codechef.com/PRACTICE/problems/PRCNSR6', u'https://www.codechef.com/PRACTICE/problems/PREDICT', u'https://www.codechef.com/PRACTICE/problems/PREE01', u'https://www.codechef.com/PRACTICE/problems/PREPARE', u'https://www.codechef.com/PRACTICE/problems/PRESTI', u'https://www.codechef.com/PRACTICE/problems/PRETNUM', u'https://www.codechef.com/PRACTICE/problems/PRFUN', u'https://www.codechef.com/PRACTICE/problems/PRGEN6', u'https://www.codechef.com/PRACTICE/problems/PRGIFT', u'https://www.codechef.com/PRACTICE/problems/PRI01', u'https://www.codechef.com/PRACTICE/problems/PRIME', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'https://www.codechef.com/PRACTICE/problems/PRIMEDST', u'https://www.codechef.com/PRACTICE/problems/PRIMEOB', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'https://www.codechef.com/PRACTICE/problems/PRIMPATT', u'https://www.codechef.com/PRACTICE/problems/PRINTF', u'https://www.codechef.com/PRACTICE/problems/PRLADDU', u'https://www.codechef.com/PRACTICE/problems/PRLIN', u'https://www.codechef.com/PRACTICE/problems/PRMARTH', u'https://www.codechef.com/PRACTICE/problems/PRMAX', u'https://www.codechef.com/PRACTICE/problems/PROB', u'https://www.codechef.com/PRACTICE/problems/PROMO', u'https://www.codechef.com/PRACTICE/problems/PROSUM', u'https://www.codechef.com/PRACTICE/problems/PRPAL3', u'https://www.codechef.com/PRACTICE/problems/PRPALIN', u'https://www.codechef.com/PRACTICE/problems/PRPALN', u'https://www.codechef.com/PRACTICE/problems/PRPOTION', u'https://www.codechef.com/PRACTICE/problems/PRST', u'https://www.codechef.com/PRACTICE/problems/PRVG03', u'https://www.codechef.com/PRACTICE/problems/PRVG151', u'https://www.codechef.com/PRACTICE/problems/PRVG153', u'https://www.codechef.com/PRACTICE/problems/PRVG154', u'https://www.codechef.com/PRACTICE/problems/PRYS01', u'https://www.codechef.com/PRACTICE/problems/PRYS09', u'https://www.codechef.com/PRACTICE/problems/PSG03', u'https://www.codechef.com/PRACTICE/problems/PSTRINGS', u'https://www.codechef.com/PRACTICE/problems/PSUDO1', u'https://www.codechef.com/PRACTICE/problems/PSUDO2', u'https://www.codechef.com/PRACTICE/problems/PSUDO4', u'https://www.codechef.com/PRACTICE/problems/PT1', u'https://www.codechef.com/PRACTICE/problems/PT2', u'https://www.codechef.com/PRACTICE/problems/PT3', u'https://www.codechef.com/PRACTICE/problems/PTOSS', u'https://www.codechef.com/PRACTICE/problems/PUCK', u'https://www.codechef.com/PRACTICE/problems/PUNBAN', u'https://www.codechef.com/PRACTICE/problems/PUPPYCT', u'https://www.codechef.com/PRACTICE/problems/PUPPYGCD', u'https://www.codechef.com/PRACTICE/problems/PUPPYGM', u'https://www.codechef.com/PRACTICE/problems/PUPPYPLM', u'https://www.codechef.com/PRACTICE/problems/QCHEF', u'https://www.codechef.com/PRACTICE/problems/QMARKS', u'https://www.codechef.com/PRACTICE/problems/QMAXTRIX', u'https://www.codechef.com/PRACTICE/problems/QNUMBER', u'https://www.codechef.com/PRACTICE/problems/QPAIRS', u'https://www.codechef.com/PRACTICE/problems/QPALIN', u'https://www.codechef.com/PRACTICE/problems/QPOINT', u'https://www.codechef.com/PRACTICE/problems/QRECT', u'https://www.codechef.com/PRACTICE/problems/QSET', u'https://www.codechef.com/PRACTICE/problems/QSTRING', u'https://www.codechef.com/PRACTICE/problems/QTREE', u'https://www.codechef.com/PRACTICE/problems/QTREE6', u'https://www.codechef.com/PRACTICE/problems/QUAD', u'https://www.codechef.com/PRACTICE/problems/QUARK5', u'https://www.codechef.com/PRACTICE/problems/QUCOATO', u'https://www.codechef.com/PRACTICE/problems/QUCOBIC', u'https://www.codechef.com/PRACTICE/problems/QUCOCYL', u'https://www.codechef.com/PRACTICE/problems/QUCOITA', u'https://www.codechef.com/PRACTICE/problems/QUCOLCM', u'https://www.codechef.com/PRACTICE/problems/QUERIES', u'https://www.codechef.com/PRACTICE/problems/QUERY', u'https://www.codechef.com/PRACTICE/problems/QUEST', u'https://www.codechef.com/PRACTICE/problems/QUTREE', u'https://www.codechef.com/PRACTICE/problems/R101', u'https://www.codechef.com/PRACTICE/problems/R102', u'https://www.codechef.com/PRACTICE/problems/R103', u'https://www.codechef.com/PRACTICE/problems/R302', u'https://www.codechef.com/PRACTICE/problems/R303', u'https://www.codechef.com/PRACTICE/problems/RACELANE', u'https://www.codechef.com/PRACTICE/problems/RACEWARS', u'https://www.codechef.com/PRACTICE/problems/RAGOOD', u'https://www.codechef.com/PRACTICE/problems/RAILGADI', u'https://www.codechef.com/PRACTICE/problems/RAINBOWB', u'https://www.codechef.com/PRACTICE/problems/RAMSUR', u'https://www.codechef.com/PRACTICE/problems/RANKA', u'https://www.codechef.com/PRACTICE/problems/RANKLIST', u'https://www.codechef.com/PRACTICE/problems/RAP', u'https://www.codechef.com/PRACTICE/problems/RBTREE', u'https://www.codechef.com/PRACTICE/problems/RBX1301', u'https://www.codechef.com/PRACTICE/problems/RBX1303', u'https://www.codechef.com/PRACTICE/problems/RBX1304', u'https://www.codechef.com/PRACTICE/problems/RBX1308', u'https://www.codechef.com/PRACTICE/problems/RBX1311', u'https://www.codechef.com/PRACTICE/problems/RBX1312', u'https://www.codechef.com/PRACTICE/problems/RBX1313', u'https://www.codechef.com/PRACTICE/problems/RBX1314', u'https://www.codechef.com/PRACTICE/problems/RD01', u'https://www.codechef.com/PRACTICE/problems/RD03', u'https://www.codechef.com/PRACTICE/problems/RDF', u'https://www.codechef.com/PRACTICE/problems/RDIOACTV', u'https://www.codechef.com/PRACTICE/problems/REACAR', u'https://www.codechef.com/PRACTICE/problems/REARRSTR', u'https://www.codechef.com/PRACTICE/problems/REBXOR', u'https://www.codechef.com/PRACTICE/problems/RECAREA', u'https://www.codechef.com/PRACTICE/problems/RECBOX', u'https://www.codechef.com/PRACTICE/problems/RECCKT', u'https://www.codechef.com/PRACTICE/problems/RECIIBKS', u'https://www.codechef.com/PRACTICE/problems/RECIICHA', u'https://www.codechef.com/PRACTICE/problems/RECIIDCD', u'https://www.codechef.com/PRACTICE/problems/RECIITRK', u'https://www.codechef.com/PRACTICE/problems/RECIPE', u'https://www.codechef.com/PRACTICE/problems/RECMSG', u'https://www.codechef.com/PRACTICE/problems/RECPLA', u'https://www.codechef.com/PRACTICE/problems/RECRECOV', u'https://www.codechef.com/PRACTICE/problems/RECREP', u'https://www.codechef.com/PRACTICE/problems/RECTCNT', u'https://www.codechef.com/PRACTICE/problems/RECTLOVE', u'https://www.codechef.com/PRACTICE/problems/RECTQUER', u'https://www.codechef.com/PRACTICE/problems/RECTSQ', u'https://www.codechef.com/PRACTICE/problems/REIGN', u'https://www.codechef.com/PRACTICE/problems/REIGN2', u'https://www.codechef.com/PRACTICE/problems/REMISS', u'https://www.codechef.com/PRACTICE/problems/REN2013A', u'https://www.codechef.com/PRACTICE/problems/REN2013C', u'https://www.codechef.com/PRACTICE/problems/REN2013D', u'https://www.codechef.com/PRACTICE/problems/REN2013G', u'https://www.codechef.com/PRACTICE/problems/REN2013K', u'https://www.codechef.com/PRACTICE/problems/REPSTR', u'https://www.codechef.com/PRACTICE/problems/REPUB', u'https://www.codechef.com/PRACTICE/problems/RESIST', u'https://www.codechef.com/PRACTICE/problems/RESN01', u'https://www.codechef.com/PRACTICE/problems/RESN02', u'https://www.codechef.com/PRACTICE/problems/RESN04', u'https://www.codechef.com/PRACTICE/problems/RESN05', u'https://www.codechef.com/PRACTICE/problems/RESQ', u'https://www.codechef.com/PRACTICE/problems/RESTEXP', u'https://www.codechef.com/PRACTICE/problems/RETPO', u'https://www.codechef.com/PRACTICE/problems/REVER', u'https://www.codechef.com/PRACTICE/problems/REVERSE', u'https://www.codechef.com/PRACTICE/problems/RG03', u'https://www.codechef.com/PRACTICE/problems/RG04', u'https://www.codechef.com/PRACTICE/problems/RG05', u'https://www.codechef.com/PRACTICE/problems/RGAME', u'https://www.codechef.com/PRACTICE/problems/RGHW03', u'https://www.codechef.com/PRACTICE/problems/RGHW06', u'https://www.codechef.com/PRACTICE/problems/RGPVP02', u'https://www.codechef.com/PRACTICE/problems/RGPVR101', u'https://www.codechef.com/PRACTICE/problems/RGPVR102', u'https://www.codechef.com/PRACTICE/problems/RGPVR103', u'https://www.codechef.com/PRACTICE/problems/RGPVR202', u'https://www.codechef.com/PRACTICE/problems/RGPVR302', u'https://www.codechef.com/PRACTICE/problems/RGPVR305', u'https://www.codechef.com/PRACTICE/problems/RG_01', u'https://www.codechef.com/PRACTICE/problems/RHOUSE', u'https://www.codechef.com/PRACTICE/problems/RIGHTRI', u'https://www.codechef.com/PRACTICE/problems/RIGHTTRI', u'https://www.codechef.com/PRACTICE/problems/RIN', u'https://www.codechef.com/PRACTICE/problems/RIPPLE', u'https://www.codechef.com/PRACTICE/problems/RIT01', u'https://www.codechef.com/PRACTICE/problems/RIT02', u'https://www.codechef.com/PRACTICE/problems/RIT03', u'https://www.codechef.com/PRACTICE/problems/RIT04', u'https://www.codechef.com/PRACTICE/problems/RIVALRY', u'https://www.codechef.com/PRACTICE/problems/RIVPILE', u'https://www.codechef.com/PRACTICE/problems/RNG', u'https://www.codechef.com/PRACTICE/problems/RNGMOD', u'https://www.codechef.com/PRACTICE/problems/RNUM', u'https://www.codechef.com/PRACTICE/problems/ROBBERY', u'https://www.codechef.com/PRACTICE/problems/ROLLDEEP', u'https://www.codechef.com/PRACTICE/problems/RONR', u'https://www.codechef.com/PRACTICE/problems/ROSES', u'https://www.codechef.com/PRACTICE/problems/ROTARR', u'https://www.codechef.com/PRACTICE/problems/ROTATION', u'https://www.codechef.com/PRACTICE/problems/ROTSTRNG', u'https://www.codechef.com/PRACTICE/problems/ROUTES', u'https://www.codechef.com/PRACTICE/problems/ROWCOLOP', u'https://www.codechef.com/PRACTICE/problems/RRATING', u'https://www.codechef.com/PRACTICE/problems/RRBIGNUM', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'https://www.codechef.com/PRACTICE/problems/RRCOPY', u'https://www.codechef.com/PRACTICE/problems/RRDAG', u'https://www.codechef.com/PRACTICE/problems/RRECIPE', u'https://www.codechef.com/PRACTICE/problems/RRFRNDS', u'https://www.codechef.com/PRACTICE/problems/RRGAME', u'https://www.codechef.com/PRACTICE/problems/RRJAM', u'https://www.codechef.com/PRACTICE/problems/RRJOKE', u'https://www.codechef.com/PRACTICE/problems/RRMATRIX', u'https://www.codechef.com/PRACTICE/problems/RRMTRX2', u'https://www.codechef.com/PRACTICE/problems/RRPLAYER', u'https://www.codechef.com/PRACTICE/problems/RRSERVER', u'https://www.codechef.com/PRACTICE/problems/RRSTONE', u'https://www.codechef.com/PRACTICE/problems/RRSUM', u'https://www.codechef.com/PRACTICE/problems/RRTREE', u'https://www.codechef.com/PRACTICE/problems/RRTREE2', u'https://www.codechef.com/PRACTICE/problems/RSRECIPE', u'https://www.codechef.com/PRACTICE/problems/RSTRING', u'https://www.codechef.com/PRACTICE/problems/RTREE', u'https://www.codechef.com/PRACTICE/problems/RUBIX4', u'https://www.codechef.com/PRACTICE/problems/RUNNING', u'https://www.codechef.com/PRACTICE/problems/RWALK', u'https://www.codechef.com/PRACTICE/problems/SACHGF', u'https://www.codechef.com/PRACTICE/problems/SAD', u'https://www.codechef.com/PRACTICE/problems/SADPAIRS', u'https://www.codechef.com/PRACTICE/problems/SALARY', u'https://www.codechef.com/PRACTICE/problems/SALG01', u'https://www.codechef.com/PRACTICE/problems/SANSKAR', u'https://www.codechef.com/PRACTICE/problems/SANTA2', u'https://www.codechef.com/PRACTICE/problems/SATA01', u'https://www.codechef.com/PRACTICE/problems/SATA02', u'https://www.codechef.com/PRACTICE/problems/SATA06', u'https://www.codechef.com/PRACTICE/problems/SATA07', u'https://www.codechef.com/PRACTICE/problems/SATA08', u'https://www.codechef.com/PRACTICE/problems/SATA09', u'https://www.codechef.com/PRACTICE/problems/SATA10', u'https://www.codechef.com/PRACTICE/problems/SATA11', u'https://www.codechef.com/PRACTICE/problems/SBSTCNT', u'https://www.codechef.com/PRACTICE/problems/SCC0103', u'https://www.codechef.com/PRACTICE/problems/SCC0106', u'https://www.codechef.com/PRACTICE/problems/SCHEME01', u'https://www.codechef.com/PRACTICE/problems/SCLUSTER', u'https://www.codechef.com/PRACTICE/problems/SCORES', u'https://www.codechef.com/PRACTICE/problems/SCOREX', u'https://www.codechef.com/PRACTICE/problems/SDH', u'https://www.codechef.com/PRACTICE/problems/SDSQUARE', u'https://www.codechef.com/PRACTICE/problems/SEAARASU', u'https://www.codechef.com/PRACTICE/problems/SEABAL', u'https://www.codechef.com/PRACTICE/problems/SEABUB', u'https://www.codechef.com/PRACTICE/problems/SEAD', u'https://www.codechef.com/PRACTICE/problems/SEADIV', u'https://www.codechef.com/PRACTICE/problems/SEADIVM', u'https://www.codechef.com/PRACTICE/problems/SEAEQ', u'https://www.codechef.com/PRACTICE/problems/SEAGCD', u'https://www.codechef.com/PRACTICE/problems/SEAGCD2', u'https://www.codechef.com/PRACTICE/problems/SEAGM', u'https://www.codechef.com/PRACTICE/problems/SEAGM2', u'https://www.codechef.com/PRACTICE/problems/SEAGRP', u'https://www.codechef.com/PRACTICE/problems/SEAKAM', u'https://www.codechef.com/PRACTICE/problems/SEALCM', u'https://www.codechef.com/PRACTICE/problems/SEALINE', u'https://www.codechef.com/PRACTICE/problems/SEAND2', u'https://www.codechef.com/PRACTICE/problems/SEAPAIR', u'https://www.codechef.com/PRACTICE/problems/SEAPERM', u'https://www.codechef.com/PRACTICE/problems/SEAPERM2', u'https://www.codechef.com/PRACTICE/problems/SEAPERMS', u'https://www.codechef.com/PRACTICE/problems/SEAPROAR', u'https://www.codechef.com/PRACTICE/problems/SEARRAYS', u'https://www.codechef.com/PRACTICE/problems/SEASHUF', u'https://www.codechef.com/PRACTICE/problems/SEASNAKE', u'https://www.codechef.com/PRACTICE/problems/SEASORT2', u'https://www.codechef.com/PRACTICE/problems/SEATL', u'https://www.codechef.com/PRACTICE/problems/SEATR', u'https://www.codechef.com/PRACTICE/problems/SEATR2', u'https://www.codechef.com/PRACTICE/problems/SEATRSF', u'https://www.codechef.com/PRACTICE/problems/SEATSR', u'https://www.codechef.com/PRACTICE/problems/SEATSTR2', u'https://www.codechef.com/PRACTICE/problems/SEAVEC', u'https://www.codechef.com/PRACTICE/problems/SEAVOTE', u'https://www.codechef.com/PRACTICE/problems/SEEDLING', u'https://www.codechef.com/PRACTICE/problems/SEG003', u'https://www.codechef.com/PRACTICE/problems/SEGSUMQ', u'https://www.codechef.com/PRACTICE/problems/SEGTREE', u'https://www.codechef.com/PRACTICE/problems/SEINC', u'https://www.codechef.com/PRACTICE/problems/SEQCOUNT', u'https://www.codechef.com/PRACTICE/problems/SEQLCS', u'https://www.codechef.com/PRACTICE/problems/SETDIFF', u'https://www.codechef.com/PRACTICE/problems/SEZ', u'https://www.codechef.com/PRACTICE/problems/SFRNDS', u'https://www.codechef.com/PRACTICE/problems/SFUNC', u'https://www.codechef.com/PRACTICE/problems/SGARDEN', u'https://www.codechef.com/PRACTICE/problems/SHARMAJI', u'https://www.codechef.com/PRACTICE/problems/SHGAME', u'https://www.codechef.com/PRACTICE/problems/SHINAPP', u'https://www.codechef.com/PRACTICE/problems/SHIRO', u'https://www.codechef.com/PRACTICE/problems/SHISTR', u'https://www.codechef.com/PRACTICE/problems/SHOOTING', u'https://www.codechef.com/PRACTICE/problems/SHOP2', u'https://www.codechef.com/PRACTICE/problems/SHORT', u'https://www.codechef.com/PRACTICE/problems/SHORTCUT', u'https://www.codechef.com/PRACTICE/problems/SHORTEST', u'https://www.codechef.com/PRACTICE/problems/SHUTTLE', u'https://www.codechef.com/PRACTICE/problems/SIDPRIME', u'https://www.codechef.com/PRACTICE/problems/SIDSTR', u'https://www.codechef.com/PRACTICE/problems/SIGFIB', u'https://www.codechef.com/PRACTICE/problems/SIGNWAVE', u'https://www.codechef.com/PRACTICE/problems/SILK', u'https://www.codechef.com/PRACTICE/problems/SIMPSTAT', u'https://www.codechef.com/PRACTICE/problems/SISLOVE', u'https://www.codechef.com/PRACTICE/problems/SKIRES', u'https://www.codechef.com/PRACTICE/problems/SKYSCR', u'https://www.codechef.com/PRACTICE/problems/SLADDERS', u'https://www.codechef.com/PRACTICE/problems/SLIS', u'https://www.codechef.com/PRACTICE/problems/SLX01', u'https://www.codechef.com/PRACTICE/problems/SLX02', u'https://www.codechef.com/PRACTICE/problems/SLX04', u'https://www.codechef.com/PRACTICE/problems/SMCD1', u'https://www.codechef.com/PRACTICE/problems/SMCD2', u'https://www.codechef.com/PRACTICE/problems/SMCD3', u'https://www.codechef.com/PRACTICE/problems/SMCD5', u'https://www.codechef.com/PRACTICE/problems/SMCD6', u'https://www.codechef.com/PRACTICE/problems/SMCD7', u'https://www.codechef.com/PRACTICE/problems/SMHTD', u'https://www.codechef.com/PRACTICE/problems/SMHTE', u'https://www.codechef.com/PRACTICE/problems/SMPAIR', u'https://www.codechef.com/PRACTICE/problems/SMPLSUM', u'https://www.codechef.com/PRACTICE/problems/SNAKGAME', u'https://www.codechef.com/PRACTICE/problems/SNAKY', u'https://www.codechef.com/PRACTICE/problems/SNAPE', u'https://www.codechef.com/PRACTICE/problems/SNCHT2', u'https://www.codechef.com/PRACTICE/problems/SNCK01', u'https://www.codechef.com/PRACTICE/problems/SNCK04', u'https://www.codechef.com/PRACTICE/problems/SNCK05', u'https://www.codechef.com/PRACTICE/problems/SNET', u'https://www.codechef.com/PRACTICE/problems/SNON02', u'https://www.codechef.com/PRACTICE/problems/SNON03', u'https://www.codechef.com/PRACTICE/problems/SNON07', u'https://www.codechef.com/PRACTICE/problems/SNON08', u'https://www.codechef.com/PRACTICE/problems/SNOWLIST', u'https://www.codechef.com/PRACTICE/problems/SNOWPRIM', u'https://www.codechef.com/PRACTICE/problems/SNTYGE', u'https://www.codechef.com/PRACTICE/problems/SOCIAL', u'https://www.codechef.com/PRACTICE/problems/SOHAM004', u'https://www.codechef.com/PRACTICE/problems/SOLDIER', u'https://www.codechef.com/PRACTICE/problems/SONAFOR', u'https://www.codechef.com/PRACTICE/problems/SOPC03', u'https://www.codechef.com/PRACTICE/problems/SOPC04', u'https://www.codechef.com/PRACTICE/problems/SOPC1501', u'https://www.codechef.com/PRACTICE/problems/SOPC1502', u'https://www.codechef.com/PRACTICE/problems/SOPC1503', u'https://www.codechef.com/PRACTICE/problems/SOPC1505', u'https://www.codechef.com/PRACTICE/problems/SOPC1506', u'https://www.codechef.com/PRACTICE/problems/SORT', u'https://www.codechef.com/PRACTICE/problems/SORT4', u'https://www.codechef.com/PRACTICE/problems/SORTING', u'https://www.codechef.com/PRACTICE/problems/SPALNUM', u'https://www.codechef.com/PRACTICE/problems/SPCANDY', u'https://www.codechef.com/PRACTICE/problems/SPELL', u'https://www.codechef.com/PRACTICE/problems/SPIDY', u'https://www.codechef.com/PRACTICE/problems/SPIDY2', u'https://www.codechef.com/PRACTICE/problems/SPIT04', u'https://www.codechef.com/PRACTICE/problems/SPIT05', u'https://www.codechef.com/PRACTICE/problems/SPIT1', u'https://www.codechef.com/PRACTICE/problems/SPIT2', u'https://www.codechef.com/PRACTICE/problems/SPIT3', u'https://www.codechef.com/PRACTICE/problems/SPOON', u'https://www.codechef.com/PRACTICE/problems/SPOONS', u'https://www.codechef.com/PRACTICE/problems/SPOTWO', u'https://www.codechef.com/PRACTICE/problems/SPREAD', u'https://www.codechef.com/PRACTICE/problems/SPRLNMS', u'https://www.codechef.com/PRACTICE/problems/SPRNMBRS', u'https://www.codechef.com/PRACTICE/problems/SPSHORT', u'https://www.codechef.com/PRACTICE/problems/SQNUMBF', u'https://www.codechef.com/PRACTICE/problems/SQUE1', u'https://www.codechef.com/PRACTICE/problems/SREENI', u'https://www.codechef.com/PRACTICE/problems/SROADS', u'https://www.codechef.com/PRACTICE/problems/SSS', u'https://www.codechef.com/PRACTICE/problems/SSTORY', u'https://www.codechef.com/PRACTICE/problems/SSUM', u'https://www.codechef.com/PRACTICE/problems/SSWAP', u'https://www.codechef.com/PRACTICE/problems/ST202', u'https://www.codechef.com/PRACTICE/problems/STABLEMP', u'https://www.codechef.com/PRACTICE/problems/STACKS', u'https://www.codechef.com/PRACTICE/problems/STADIUM', u'https://www.codechef.com/PRACTICE/problems/STANDUP', u'https://www.codechef.com/PRACTICE/problems/START01', u'https://www.codechef.com/PRACTICE/problems/STATUES', u'https://www.codechef.com/PRACTICE/problems/STB', u'https://www.codechef.com/PRACTICE/problems/STDPRGS', u'https://www.codechef.com/PRACTICE/problems/STDYTAB', u'https://www.codechef.com/PRACTICE/problems/STEM', u'https://www.codechef.com/PRACTICE/problems/STEPUP', u'https://www.codechef.com/PRACTICE/problems/STETSKLX', u'https://www.codechef.com/PRACTICE/problems/STFM', u'https://www.codechef.com/PRACTICE/problems/STICK', u'https://www.codechef.com/PRACTICE/problems/STICKS', u'https://www.codechef.com/PRACTICE/problems/STKENC', u'https://www.codechef.com/PRACTICE/problems/STONES', u'https://www.codechef.com/PRACTICE/problems/STRAB', u'https://www.codechef.com/PRACTICE/problems/STRBIT', u'https://www.codechef.com/PRACTICE/problems/STRDIG', u'https://www.codechef.com/PRACTICE/problems/STREETTA', u'https://www.codechef.com/PRACTICE/problems/STRMCH', u'https://www.codechef.com/PRACTICE/problems/STROPR', u'https://www.codechef.com/PRACTICE/problems/STRPALIN', u'https://www.codechef.com/PRACTICE/problems/STRQ', u'https://www.codechef.com/PRACTICE/problems/STRSUB', u'https://www.codechef.com/PRACTICE/problems/STR_FUNC', u'https://www.codechef.com/PRACTICE/problems/STUD3', u'https://www.codechef.com/PRACTICE/problems/STUDD', u'https://www.codechef.com/PRACTICE/problems/SUBANAGR', u'https://www.codechef.com/PRACTICE/problems/SUBARR', u'https://www.codechef.com/PRACTICE/problems/SUBARRAY', u'https://www.codechef.com/PRACTICE/problems/SUBBXOR', u'https://www.codechef.com/PRACTICE/problems/SUBGCD', u'https://www.codechef.com/PRACTICE/problems/SUBINC', u'https://www.codechef.com/PRACTICE/problems/SUBLCM', u'https://www.codechef.com/PRACTICE/problems/SUBMAT', u'https://www.codechef.com/PRACTICE/problems/SUBMIN', u'https://www.codechef.com/PRACTICE/problems/SUBQUERY', u'https://www.codechef.com/PRACTICE/problems/SUBSEG2', u'https://www.codechef.com/PRACTICE/problems/SUBSGCD', u'https://www.codechef.com/PRACTICE/problems/SUBSGM', u'https://www.codechef.com/PRACTICE/problems/SUBSORT', u'https://www.codechef.com/PRACTICE/problems/SUBSTR', u'https://www.codechef.com/PRACTICE/problems/SUBTREE', u'https://www.codechef.com/PRACTICE/problems/SUMBITS', u'https://www.codechef.com/PRACTICE/problems/SUMMAND', u'https://www.codechef.com/PRACTICE/problems/SUMMATH', u'https://www.codechef.com/PRACTICE/problems/SUMPAIR', u'https://www.codechef.com/PRACTICE/problems/SUMSLOPE', u'https://www.codechef.com/PRACTICE/problems/SUMTOUR', u'https://www.codechef.com/PRACTICE/problems/SUMTRIAN', u'https://www.codechef.com/PRACTICE/problems/SUPERCUP', u'https://www.codechef.com/PRACTICE/problems/SUPERPLN', u'https://www.codechef.com/PRACTICE/problems/SURFRN', u'https://www.codechef.com/PRACTICE/problems/SUYBOB', u'https://www.codechef.com/PRACTICE/problems/SVNTR', u'https://www.codechef.com/PRACTICE/problems/SWAPMATR', u'https://www.codechef.com/PRACTICE/problems/SWAPS', u'https://www.codechef.com/PRACTICE/problems/SWARM', u'https://www.codechef.com/PRACTICE/problems/SWEET', u'https://www.codechef.com/PRACTICE/problems/SWEGARR', u'https://www.codechef.com/PRACTICE/problems/SWEGIRL', u'https://www.codechef.com/PRACTICE/problems/SWPERMS', u'https://www.codechef.com/PRACTICE/problems/SYNCRYPT', u'https://www.codechef.com/PRACTICE/problems/TAACUTE', u'https://www.codechef.com/PRACTICE/problems/TAAND', u'https://www.codechef.com/PRACTICE/problems/TAAPLUSB', u'https://www.codechef.com/PRACTICE/problems/TABLECOV', u'https://www.codechef.com/PRACTICE/problems/TABUS', u'https://www.codechef.com/PRACTICE/problems/TACHEMIS', u'https://www.codechef.com/PRACTICE/problems/TACHSTCK', u'https://www.codechef.com/PRACTICE/problems/TADELIVE', u'https://www.codechef.com/PRACTICE/problems/TAEDITOR', u'https://www.codechef.com/PRACTICE/problems/TAKEAWAY', u'https://www.codechef.com/PRACTICE/problems/TALCA', u'https://www.codechef.com/PRACTICE/problems/TANDC', u'https://www.codechef.com/PRACTICE/problems/TANGDIV', u'https://www.codechef.com/PRACTICE/problems/TANGLED', u'https://www.codechef.com/PRACTICE/problems/TANKS', u'https://www.codechef.com/PRACTICE/problems/TANSWTCH', u'https://www.codechef.com/PRACTICE/problems/TAPAIR', u'https://www.codechef.com/PRACTICE/problems/TAPALIN', u'https://www.codechef.com/PRACTICE/problems/TAQTREE', u'https://www.codechef.com/PRACTICE/problems/TASHIFT', u'https://www.codechef.com/PRACTICE/problems/TASTR', u'https://www.codechef.com/PRACTICE/problems/TASTRMAT', u'https://www.codechef.com/PRACTICE/problems/TASTYD', u'https://www.codechef.com/PRACTICE/problems/TASUMOBC', u'https://www.codechef.com/PRACTICE/problems/TAUT', u'https://www.codechef.com/PRACTICE/problems/TAVISUAL', u'https://www.codechef.com/PRACTICE/problems/TAZOS', u'https://www.codechef.com/PRACTICE/problems/TBD', u'https://www.codechef.com/PRACTICE/problems/TCCR415', u'https://www.codechef.com/PRACTICE/problems/TCFST03', u'https://www.codechef.com/PRACTICE/problems/TCFST04', u'https://www.codechef.com/PRACTICE/problems/TCFST06', u'https://www.codechef.com/PRACTICE/problems/TCFST10', u'https://www.codechef.com/PRACTICE/problems/TCP', u'https://www.codechef.com/PRACTICE/problems/TDIV', u'https://www.codechef.com/PRACTICE/problems/TDRIVER', u'https://www.codechef.com/PRACTICE/problems/TEACHTR', u'https://www.codechef.com/PRACTICE/problems/TEAMSEL', u'https://www.codechef.com/PRACTICE/problems/TECH02', u'https://www.codechef.com/PRACTICE/problems/TECH04', u'https://www.codechef.com/PRACTICE/problems/TECH05', u'https://www.codechef.com/PRACTICE/problems/TECH06', u'https://www.codechef.com/PRACTICE/problems/TECH07', u'https://www.codechef.com/PRACTICE/problems/TECH08', u'https://www.codechef.com/PRACTICE/problems/TECH09', u'https://www.codechef.com/PRACTICE/problems/TECH12', u'https://www.codechef.com/PRACTICE/problems/TECH14', u'https://www.codechef.com/PRACTICE/problems/TEMPQUE', u'https://www.codechef.com/PRACTICE/problems/TENNCLUM', u'https://www.codechef.com/PRACTICE/problems/TENNIS', u'https://www.codechef.com/PRACTICE/problems/TERVEC', u'https://www.codechef.com/PRACTICE/problems/TEST', u'https://www.codechef.com/PRACTICE/problems/TESTERS', u'https://www.codechef.com/PRACTICE/problems/TESTTT5', u'https://www.codechef.com/PRACTICE/problems/TETRA', u'https://www.codechef.com/PRACTICE/problems/TF01', u'https://www.codechef.com/PRACTICE/problems/TGOC', u'https://www.codechef.com/PRACTICE/problems/THEGAME', u'https://www.codechef.com/PRACTICE/problems/THIEF', u'https://www.codechef.com/PRACTICE/problems/THREECLR', u'https://www.codechef.com/PRACTICE/problems/THREEDIF', u'https://www.codechef.com/PRACTICE/problems/TIC01', u'https://www.codechef.com/PRACTICE/problems/TIC02', u'https://www.codechef.com/PRACTICE/problems/TIC03', u'https://www.codechef.com/PRACTICE/problems/TIC04', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'https://www.codechef.com/PRACTICE/problems/TIDRICE', u'https://www.codechef.com/PRACTICE/problems/TILE', u'https://www.codechef.com/PRACTICE/problems/TILE0', u'https://www.codechef.com/PRACTICE/problems/TIME', u'https://www.codechef.com/PRACTICE/problems/TIMEASR', u'https://www.codechef.com/PRACTICE/problems/TIMETRAV', u'https://www.codechef.com/PRACTICE/problems/TJ002', u'https://www.codechef.com/PRACTICE/problems/TKCHOCS', u'https://www.codechef.com/PRACTICE/problems/TKCONVEX', u'https://www.codechef.com/PRACTICE/problems/TLCS', u'https://www.codechef.com/PRACTICE/problems/TLG', u'https://www.codechef.com/PRACTICE/problems/TMSLT', u'https://www.codechef.com/PRACTICE/problems/TNMALG02', u'https://www.codechef.com/PRACTICE/problems/TNMALG04', u'https://www.codechef.com/PRACTICE/problems/TOFFEE', u'https://www.codechef.com/PRACTICE/problems/TOFFEES', u'https://www.codechef.com/PRACTICE/problems/TOLL', u'https://www.codechef.com/PRACTICE/problems/TOMJER', u'https://www.codechef.com/PRACTICE/problems/TOOLS', u'https://www.codechef.com/PRACTICE/problems/TOPPARR', u'https://www.codechef.com/PRACTICE/problems/TORR', u'https://www.codechef.com/PRACTICE/problems/TOTR', u'https://www.codechef.com/PRACTICE/problems/TOURBUS', u'https://www.codechef.com/PRACTICE/problems/TOURMAP', u'https://www.codechef.com/PRACTICE/problems/TOURNAM', u'https://www.codechef.com/PRACTICE/problems/TPRODUCT', u'https://www.codechef.com/PRACTICE/problems/TR1', u'https://www.codechef.com/PRACTICE/problems/TRANSFIG', u'https://www.codechef.com/PRACTICE/problems/TRAVELER', u'https://www.codechef.com/PRACTICE/problems/TRAVTREE', u'https://www.codechef.com/PRACTICE/problems/TREE', u'https://www.codechef.com/PRACTICE/problems/TREECAKE', u'https://www.codechef.com/PRACTICE/problems/TREECNT2', u'https://www.codechef.com/PRACTICE/problems/TREEFUN', u'https://www.codechef.com/PRACTICE/problems/TREEGAME', u'https://www.codechef.com/PRACTICE/problems/TREEP', u'https://www.codechef.com/PRACTICE/problems/TREEPATH', u'https://www.codechef.com/PRACTICE/problems/TREEPROD', u'https://www.codechef.com/PRACTICE/problems/TREEROOT', u'https://www.codechef.com/PRACTICE/problems/TREES', u'https://www.codechef.com/PRACTICE/problems/TRIANGCL', u'https://www.codechef.com/PRACTICE/problems/TRICOIN', u'https://www.codechef.com/PRACTICE/problems/TRINT', u'https://www.codechef.com/PRACTICE/problems/TRIP', u'https://www.codechef.com/PRACTICE/problems/TRIPCOST', u'https://www.codechef.com/PRACTICE/problems/TRIPS', u'https://www.codechef.com/PRACTICE/problems/TRIQUERY', u'https://www.codechef.com/PRACTICE/problems/TRISQ', u'https://www.codechef.com/PRACTICE/problems/TRMAG', u'https://www.codechef.com/PRACTICE/problems/TROOT', u'https://www.codechef.com/PRACTICE/problems/TRSUBTR', u'https://www.codechef.com/PRACTICE/problems/TRSUM', u'https://www.codechef.com/PRACTICE/problems/TSHIRTS', u'https://www.codechef.com/PRACTICE/problems/TSORT', u'https://www.codechef.com/PRACTICE/problems/TSORTA', u'https://www.codechef.com/PRACTICE/problems/TSX02', u'https://www.codechef.com/PRACTICE/problems/TSX03', u'https://www.codechef.com/PRACTICE/problems/TTEACH', u'https://www.codechef.com/PRACTICE/problems/TTENIS', u'https://www.codechef.com/PRACTICE/problems/TULIPS', u'https://www.codechef.com/PRACTICE/problems/TUX01', u'https://www.codechef.com/PRACTICE/problems/TUX02', u'https://www.codechef.com/PRACTICE/problems/TUX03', u'https://www.codechef.com/PRACTICE/problems/TUZGMBR', u'https://www.codechef.com/PRACTICE/problems/TUZTRN', u'https://www.codechef.com/PRACTICE/problems/TVP', u'https://www.codechef.com/PRACTICE/problems/TWINRO', u'https://www.codechef.com/PRACTICE/problems/TWOCHEFS', u'https://www.codechef.com/PRACTICE/problems/TWOCOMP', u'https://www.codechef.com/PRACTICE/problems/TWODOGS', u'https://www.codechef.com/PRACTICE/problems/TWOFL', u'https://www.codechef.com/PRACTICE/problems/TWOFRNDS', u'https://www.codechef.com/PRACTICE/problems/TWONIM', u'https://www.codechef.com/PRACTICE/problems/TWOSTR', u'https://www.codechef.com/PRACTICE/problems/TWSTR', u'https://www.codechef.com/PRACTICE/problems/TWTCLOSE', u'https://www.codechef.com/PRACTICE/problems/TYTACTIC', u'https://www.codechef.com/PRACTICE/problems/UASEQ', u'https://www.codechef.com/PRACTICE/problems/UEMP01', u'https://www.codechef.com/PRACTICE/problems/UEMP02', u'https://www.codechef.com/PRACTICE/problems/UNIQUE', u'https://www.codechef.com/PRACTICE/problems/UNIVMT', u'https://www.codechef.com/PRACTICE/problems/UPDTREE', u'https://www.codechef.com/PRACTICE/problems/UTMOPR', u'https://www.codechef.com/PRACTICE/problems/VCAKE', u'https://www.codechef.com/PRACTICE/problems/VCS', u'https://www.codechef.com/PRACTICE/problems/VERMIN', u'https://www.codechef.com/PRACTICE/problems/VIGCODE', u'https://www.codechef.com/PRACTICE/problems/VIRAT', u'https://www.codechef.com/PRACTICE/problems/VIRAT20', u'https://www.codechef.com/PRACTICE/problems/VIRATGCD', u'https://www.codechef.com/PRACTICE/problems/VISITALL', u'https://www.codechef.com/PRACTICE/problems/VITC01', u'https://www.codechef.com/PRACTICE/problems/VITC02', u'https://www.codechef.com/PRACTICE/problems/VITC03', u'https://www.codechef.com/PRACTICE/problems/VITC04', u'https://www.codechef.com/PRACTICE/problems/VITC05', u'https://www.codechef.com/PRACTICE/problems/VITC08', u'https://www.codechef.com/PRACTICE/problems/VIVAL', u'https://www.codechef.com/PRACTICE/problems/VLD', u'https://www.codechef.com/PRACTICE/problems/VOGOZO', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'https://www.codechef.com/PRACTICE/problems/VSQ', u'https://www.codechef.com/PRACTICE/problems/VSQ2', u'https://www.codechef.com/PRACTICE/problems/VSQ3', u'https://www.codechef.com/PRACTICE/problems/VVR', u'https://www.codechef.com/PRACTICE/problems/WALK', u'https://www.codechef.com/PRACTICE/problems/WALL', u'https://www.codechef.com/PRACTICE/problems/WATSY', u'https://www.codechef.com/PRACTICE/problems/WAY004', u'https://www.codechef.com/PRACTICE/problems/WAYPA', u'https://www.codechef.com/PRACTICE/problems/WBUP101', u'https://www.codechef.com/PRACTICE/problems/WBUP103', u'https://www.codechef.com/PRACTICE/problems/WBUP104', u'https://www.codechef.com/PRACTICE/problems/WCOUNT', u'https://www.codechef.com/PRACTICE/problems/WDTBAM', u'https://www.codechef.com/PRACTICE/problems/WEEKDAY', u'https://www.codechef.com/PRACTICE/problems/WEIGHT', u'https://www.codechef.com/PRACTICE/problems/WGAME', u'https://www.codechef.com/PRACTICE/problems/WGHTLIF', u'https://www.codechef.com/PRACTICE/problems/WICQ9', u'https://www.codechef.com/PRACTICE/problems/WINDOW2', u'https://www.codechef.com/PRACTICE/problems/WINNER', u'https://www.codechef.com/PRACTICE/problems/WITMATH', u'https://www.codechef.com/PRACTICE/problems/WKIMAAL', u'https://www.codechef.com/PRACTICE/problems/WMIS', u'https://www.codechef.com/PRACTICE/problems/WOLVXR', u'https://www.codechef.com/PRACTICE/problems/WORDCNT', u'https://www.codechef.com/PRACTICE/problems/WORDS1', u'https://www.codechef.com/PRACTICE/problems/WORKCHEF', u'https://www.codechef.com/PRACTICE/problems/WORLDCUP', u'https://www.codechef.com/PRACTICE/problems/WOUT', u'https://www.codechef.com/PRACTICE/problems/WOWPRO', u'https://www.codechef.com/PRACTICE/problems/WPLAY', u'https://www.codechef.com/PRACTICE/problems/WPROB', u'https://www.codechef.com/PRACTICE/problems/WSC', u'https://www.codechef.com/PRACTICE/problems/WSCAGAIN', u'https://www.codechef.com/PRACTICE/problems/WSERIES', u'https://www.codechef.com/PRACTICE/problems/WSTRING', u'https://www.codechef.com/PRACTICE/problems/WTHINGS', u'https://www.codechef.com/PRACTICE/problems/WW2', u'https://www.codechef.com/PRACTICE/problems/WWE', u'https://www.codechef.com/PRACTICE/problems/WYSIWYG4', u'https://www.codechef.com/PRACTICE/problems/XC201', u'https://www.codechef.com/PRACTICE/problems/XC202', u'https://www.codechef.com/PRACTICE/problems/XETF', u'https://www.codechef.com/PRACTICE/problems/XLIFE', u'https://www.codechef.com/PRACTICE/problems/XOR', u'https://www.codechef.com/PRACTICE/problems/XORGRID', u'https://www.codechef.com/PRACTICE/problems/XORNUBER', u'https://www.codechef.com/PRACTICE/problems/XORPATH', u'https://www.codechef.com/PRACTICE/problems/XORSACK', u'https://www.codechef.com/PRACTICE/problems/XORSN', u'https://www.codechef.com/PRACTICE/problems/XORSUB', u'https://www.codechef.com/PRACTICE/problems/XRMTRX', u'https://www.codechef.com/PRACTICE/problems/XRQRS', u'https://www.codechef.com/PRACTICE/problems/XTRSPACE', u'https://www.codechef.com/PRACTICE/problems/YJUMP', u'https://www.codechef.com/PRACTICE/problems/YNOUTPUT', u'https://www.codechef.com/PRACTICE/problems/YUVRAJ', u'https://www.codechef.com/PRACTICE/problems/ZENCALC', u'https://www.codechef.com/PRACTICE/problems/ZEROES', u'https://www.codechef.com/PRACTICE/problems/ZGSEQ', u'https://www.codechef.com/PRACTICE/problems/ZIGZAGTR', u'https://www.codechef.com/PRCNJR15/problems/AOU', u'https://www.codechef.com/PRCNJR15/problems/CSKR', u'https://www.codechef.com/PRCNJR15/problems/NBSUM', u'https://www.codechef.com/PRCNJR15/problems/PLGRM', u'https://www.codechef.com/PRCNJR15/problems/SNCHT2', u'https://www.codechef.com/PRCNJR15/problems/STKENC', u'https://www.codechef.com/PRCNJR15/problems/WOLVXR', u'https://www.codechef.com/PRCNSR14/problems/GAME2048', u'https://www.codechef.com/PRCNSR14/problems/HLPSUG', u'https://www.codechef.com/PRCNSR14/problems/HPYBDAY', u'https://www.codechef.com/PRCNSR14/problems/HTLPLM', u'https://www.codechef.com/PRCNSR14/problems/PLTGRP', u'https://www.codechef.com/PRMT2014/problems/PROM01', u'https://www.codechef.com/PRMT2014/problems/PROM02', u'https://www.codechef.com/PRMT2014/problems/PROM03', u'https://www.codechef.com/PRMT2014/problems/PROM04', u'https://www.codechef.com/PRMT2014/problems/PROM05', u'https://www.codechef.com/PRMT2014/problems/PROM06', u'https://www.codechef.com/PRMT2014/problems/PROM07', u'https://www.codechef.com/PRMT2014/problems/PROM09', u'https://www.codechef.com/PROCON15/problems/PRCNSR1', u'https://www.codechef.com/PROCON15/problems/PRCNSR2', u'https://www.codechef.com/PROCON15/problems/PRCNSR3', u'https://www.codechef.com/PROCON15/problems/PRCNSR4', u'https://www.codechef.com/PROCON15/problems/PRCNSR5', u'https://www.codechef.com/PROCON15/problems/PRCNSR6', u'https://www.codechef.com/PROM2013/problems/PT1', u'https://www.codechef.com/PROM2013/problems/PT2', u'https://www.codechef.com/PROM2013/problems/PT3', u'https://www.codechef.com/PRST2013/problems/P1301', u'https://www.codechef.com/PRST2013/problems/P1303', u'https://www.codechef.com/PRST2013/problems/P1304', u'https://www.codechef.com/PRST2013/problems/P1306', u'https://www.codechef.com/PRST2013/problems/P1308', u'https://www.codechef.com/PRYS2015/problems/PRYS01', u'https://www.codechef.com/PRYS2015/problems/PRYS02', u'https://www.codechef.com/PRYS2015/problems/PRYS03', u'https://www.codechef.com/PRYS2015/problems/PRYS04', u'https://www.codechef.com/PRYS2015/problems/PRYS05', u'https://www.codechef.com/PRYS2015/problems/PRYS06', u'https://www.codechef.com/PRYS2015/problems/PRYS08', u'https://www.codechef.com/PRYS2015/problems/PRYS09', u'https://www.codechef.com/PRYS2015/problems/PRYS11', u'https://www.codechef.com/PSCD2015/problems/PSUDO1', u'https://www.codechef.com/PSCD2015/problems/PSUDO2', u'https://www.codechef.com/PSCD2015/problems/PSUDO4', u'https://www.codechef.com/PSCD2015/problems/PSUDO5', u'https://www.codechef.com/PSYC2015/problems/CHOC', u'https://www.codechef.com/PSYC2015/problems/IWIN', u'https://www.codechef.com/PSYC2015/problems/PRAC', u'https://www.codechef.com/PSYC2015/problems/REPUB', u'https://www.codechef.com/PSYC2015/problems/SWEET', u'https://www.codechef.com/QBIT15/problems/QBIT01', u'https://www.codechef.com/QBIT15/problems/QBIT02', u'https://www.codechef.com/QBIT15/problems/QBIT03', u'https://www.codechef.com/QBIT15/problems/QBIT04', u'https://www.codechef.com/QBIT15/problems/QBIT05', u'https://www.codechef.com/QBIT15/problems/QBIT06', u'https://www.codechef.com/QUCO2014/problems/QUCOATO', u'https://www.codechef.com/QUCO2014/problems/QUCOBIC', u'https://www.codechef.com/QUCO2014/problems/QUCOCYL', u'https://www.codechef.com/QUCO2014/problems/QUCOITA', u'https://www.codechef.com/QUCO2014/problems/QUCOLCM', u'https://www.codechef.com/QUCO2018/problems/FRIEZA', u'https://www.codechef.com/QUCO2018/problems/GOHAN', u'https://www.codechef.com/QUCO2018/problems/VEGETA', u'https://www.codechef.com/RCSN2015/problems/RECBOX', u'https://www.codechef.com/RCSN2015/problems/RECCKT', u'https://www.codechef.com/RCSN2015/problems/RECMSG', u'https://www.codechef.com/RCSN2015/problems/RECPLA', u'https://www.codechef.com/RCSN2015/problems/RECREP', u'https://www.codechef.com/REC2016/problems/RECIIBKS', u'https://www.codechef.com/REC2016/problems/RECIICHA', u'https://www.codechef.com/REC2016/problems/RECIIDCD', u'https://www.codechef.com/REC2016/problems/RECIITRK', u'https://www.codechef.com/REC2016/problems/ROBBERY', u'https://www.codechef.com/RECJ1601/problems/ABHMNSTR', u'https://www.codechef.com/RECJ1601/problems/ABHSTR', u'https://www.codechef.com/RECJ1601/problems/DORAEMON', u'https://www.codechef.com/RECJ1601/problems/SIDPRIME', u'https://www.codechef.com/RECJ1601/problems/SIDSTR', u'https://www.codechef.com/SEPT13/problems/CAOS1', u'https://www.codechef.com/SEPT13/problems/CAOS2', u'https://www.codechef.com/SEPT13/problems/COOLGUYS', u'https://www.codechef.com/SEPT13/problems/INTEG', u'https://www.codechef.com/SEPT13/problems/LEEXAMS', u'https://www.codechef.com/SEPT13/problems/MLCHEF', u'https://www.codechef.com/SEPT13/problems/SEASNAKE', u'https://www.codechef.com/SEPT13/problems/SPOONS', u'https://www.codechef.com/SEPT13/problems/TMP01', u'https://www.codechef.com/SEPT13/problems/TWOROADS', u'https://www.codechef.com/SEPT14/problems/CHEFINV', u'https://www.codechef.com/SEPT14/problems/CHEFLR', u'https://www.codechef.com/SEPT14/problems/FACTORIZ', u'https://www.codechef.com/SEPT14/problems/FIBTREE', u'https://www.codechef.com/SEPT14/problems/FLOORI4', u'https://www.codechef.com/SEPT14/problems/QRECT', u'https://www.codechef.com/SEPT14/problems/RAINBOWB', u'https://www.codechef.com/SEPT14/problems/ROTATION', u'https://www.codechef.com/SEPT14/problems/SEABUB', u'https://www.codechef.com/SEPT14/problems/UASEQ', u'https://www.codechef.com/SEPT15/problems/BANROB', u'https://www.codechef.com/SEPT15/problems/CHTTRS', u'https://www.codechef.com/SEPT15/problems/CODECRCK', u'https://www.codechef.com/SEPT15/problems/DONUTS', u'https://www.codechef.com/SEPT15/problems/LIGHTHSE', u'https://www.codechef.com/SEPT15/problems/MGCH3D', u'https://www.codechef.com/SEPT15/problems/MSTEP', u'https://www.codechef.com/SEPT15/problems/REBXOR', u'https://www.codechef.com/SEPT15/problems/TERVEC', u'https://www.codechef.com/SEPT15/problems/THEGAME', u'https://www.codechef.com/SIMPLX15/problems/SLX01', u'https://www.codechef.com/SIMPLX15/problems/SLX02', u'https://www.codechef.com/SIMPLX15/problems/SLX03', u'https://www.codechef.com/SIMPLX15/problems/SLX04', u'https://www.codechef.com/SMCS2015/problems/SMCD5', u'https://www.codechef.com/SMCS2015/problems/SMCD6', u'https://www.codechef.com/SMCS2015/problems/SMCD7', u'https://www.codechef.com/SMHT2014/problems/SMHTA', u'https://www.codechef.com/SMHT2014/problems/SMHTB', u'https://www.codechef.com/SMHT2014/problems/SMHTD', u'https://www.codechef.com/SMHT2014/problems/SMHTE', u'https://www.codechef.com/SOPC1602/problems/OPC1601', u'https://www.codechef.com/SOPC1602/problems/OPC1602', u'https://www.codechef.com/SOPC1602/problems/OPC1603', u'https://www.codechef.com/SOPC1602/problems/OPC1604', u'https://www.codechef.com/SOPC2015/problems/SOPC1501', u'https://www.codechef.com/SOPC2015/problems/SOPC1502', u'https://www.codechef.com/SOPC2015/problems/SOPC1503', u'https://www.codechef.com/SOPC2015/problems/SOPC1504', u'https://www.codechef.com/SOPC2015/problems/SOPC1505', u'https://www.codechef.com/SOPC2015/problems/SOPC1506', u'https://www.codechef.com/SPT2015/problems/SPIT04', u'https://www.codechef.com/SPT2015/problems/SPIT05', u'https://www.codechef.com/SPT2015/problems/SPIT1', u'https://www.codechef.com/SPT2015/problems/SPIT2', u'https://www.codechef.com/SPT2015/problems/SPIT3', u'https://www.codechef.com/SRMC2016/problems/BRCKTSRM', u'https://www.codechef.com/SRMC2016/problems/DRCTNSRM', u'https://www.codechef.com/SRMC2016/problems/INTROSRM', u'https://www.codechef.com/SRMC2016/problems/MULTISRM', u'https://www.codechef.com/TCFS15P/problems/CAMERAS', u'https://www.codechef.com/TCFS15P/problems/CAMERAS2', u'https://www.codechef.com/TCFS15P/problems/CANDIS', u'https://www.codechef.com/TCFS15P/problems/CUBEMOD', u'https://www.codechef.com/TCFS15P/problems/FEYNMAN', u'https://www.codechef.com/TCFS15P/problems/LIZARDS2', u'https://www.codechef.com/TCFS15P/problems/MARKS', u'https://www.codechef.com/TCFS15P/problems/PALINREV', u'https://www.codechef.com/TCFS15P/problems/PUCK', u'https://www.codechef.com/TCFS15P/problems/RACING', u'https://www.codechef.com/TCFS15P/problems/SPIDY', u'https://www.codechef.com/TCFS15P/problems/SPIDY2', u'https://www.codechef.com/TCFS15P/problems/STATSHW', u'https://www.codechef.com/TCFS15P/problems/TRINT', u'https://www.codechef.com/TCFS15S/problems/BITWO', u'https://www.codechef.com/TCFS15S/problems/LIZARDS', u'https://www.codechef.com/TCFS15S/problems/PERM', u'https://www.codechef.com/TCFS15S/problems/SUMMAND', u'https://www.codechef.com/TCFST13/problems/TCFST01', u'https://www.codechef.com/TCFST13/problems/TCFST02', u'https://www.codechef.com/TCFST13/problems/TCFST03', u'https://www.codechef.com/TCFST13/problems/TCFST04', u'https://www.codechef.com/TCFST13/problems/TCFST05', u'https://www.codechef.com/TCFST13/problems/TCFST06', u'https://www.codechef.com/TCFST13/problems/TCFST07', u'https://www.codechef.com/TCFST13/problems/TCFST08', u'https://www.codechef.com/TCFST13/problems/TCFST09', u'https://www.codechef.com/TCFST13/problems/TCFST10', u'https://www.codechef.com/TCSG2013/problems/ALMOSTPR', u'https://www.codechef.com/TCSG2013/problems/DISCOUNT', u'https://www.codechef.com/TCSG2013/problems/HCAKE', u'https://www.codechef.com/TCSG2013/problems/STRONG', u'https://www.codechef.com/TRNT2014/problems/TR001', u'https://www.codechef.com/TRNT2014/problems/TR002', u'https://www.codechef.com/TRNT2014/problems/TR003', u'https://www.codechef.com/TRNT2014/problems/TR004', u'https://www.codechef.com/TROK2014/problems/BYTES1', u'https://www.codechef.com/TROK2014/problems/BYTES2', u'https://www.codechef.com/TROK2014/problems/BYTES3', u'https://www.codechef.com/TROK2014/problems/BYTES4', u'https://www.codechef.com/TROK2014/problems/BYTES5', u'https://www.codechef.com/TROK2014/problems/BYTES6', u'https://www.codechef.com/TUXO2014/problems/RONR', u'https://www.codechef.com/TUXO2014/problems/SREENI', u'https://www.codechef.com/TUXO2014/problems/SSS', u'https://www.codechef.com/TUXO2014/problems/TUX01', u'https://www.codechef.com/TUXO2014/problems/TUX03', u'https://www.codechef.com/UVCNCD13/problems/BOTM', u'https://www.codechef.com/UVCNCD13/problems/CTSHT', u'https://www.codechef.com/UVCNCD13/problems/GOPJ', u'https://www.codechef.com/UVCNCD13/problems/GOPR', u'https://www.codechef.com/UVCNCD13/problems/PERHIL', u'https://www.codechef.com/WPC1501/problems/IITK2P01', u'https://www.codechef.com/WPC1501/problems/IITK2P02', u'https://www.codechef.com/WPC1501/problems/IITK2P03', u'https://www.codechef.com/WPC1501/problems/IITK2P04', u'https://www.codechef.com/WPC1501/problems/IITK2P05', u'https://www.codechef.com/WPC1501/problems/IITK2P06', u'https://www.codechef.com/WPC1501/problems/IITK2P08', u'https://www.codechef.com/WPC1501/problems/IITK2P09', u'https://www.codechef.com/WPC1501/problems/IITK2P10', u'https://www.codechef.com/XCEP2014/problems/XC102', u'https://www.codechef.com/XCEP2014/problems/XC104', u'https://www.codechef.com/XCEP2014/problems/XC105', u'https://www.codechef.com/XCEP2014/problems/XC106', u'https://www.codechef.com/XCEP2014/problems/XC107', u'https://www.codechef.com/XCPT2015/problems/XC103', u'https://www.codechef.com/XCPT2015/problems/XC201', u'https://www.codechef.com/XCPT2015/problems/XC202', u'https://www.codechef.com/XCPT2015/problems/XC204', u'https://www.codechef.com/ZCOPRAC/problems/ZCO12001', u'https://www.codechef.com/ZCOPRAC/problems/ZCO12002', u'https://www.codechef.com/ZCOPRAC/problems/ZCO12003', u'https://www.codechef.com/ZCOPRAC/problems/ZCO12004', u'https://www.codechef.com/ZCOPRAC/problems/ZCO13001', u'https://www.codechef.com/ZCOPRAC/problems/ZCO13002', u'https://www.codechef.com/ZCOPRAC/problems/ZCO13003', u'https://www.codechef.com/ZCOPRAC/problems/ZCO13004', u'https://www.codechef.com/ZCOPRAC/problems/ZCO14001', u'https://www.codechef.com/ZCOPRAC/problems/ZCO14002', u'https://www.codechef.com/ZCOPRAC/problems/ZCO14003', u'https://www.codechef.com/ZCOPRAC/problems/ZCO14004', u'https://www.codechef.com/ZCOPRAC/problems/ZCO15001', u'https://www.codechef.com/ZCOPRAC/problems/ZCO15002', u'https://www.codechef.com/ZCOPRAC/problems/ZCO15003', u'https://www.codechef.com/ZCOPRAC/problems/ZCO15004', u'https://www.hackerearth.com/challenge/college/pirathon-world-pi-day-challenge-3/algorithm/problem-2-19/', u'https://www.hackerearth.com/challenge/college/pirathon-world-pi-day-challenge-3/algorithm/problem-3-11/', u'https://www.hackerearth.com/challenge/college/pirathon-world-pi-day-challenge-3/algorithm/problem-4-5/', u'https://www.hackerearth.com/challenge/college/pirathon-world-pi-day-challenge-3/algorithm/problem-5-4/', u'https://www.hackerearth.com/challenge/competitive/september-clash-16/approximate/magic-board-september-clash/', u'https://www.hackerearth.com/challenge/hiring/gainsight-qa-hiring-challenge/algorithm/beautiful-strings-6/', u'https://www.hackerearth.com/challenge/hiring/gainsight-qa-hiring-challenge/algorithm/count-triplets/', u'https://www.hackerearth.com/challenge/hiring/target-hiring-challenge15/algorithm/marut-and-queries/', u'https://www.hackerearth.com/challenge/hiring/thoughtworks-women-hiring-challenge-1/algorithm/the-substring-game-c14f8bd2/', u'https://www.hackerearth.com/challenge/hiring/tipstat-android-hiring-challenge/algorithm/gayle-and-his-legacy-3/', u'https://www.hackerearth.com/challenges/college/codathon18-nitbhopal/algorithm/xsquare-and-central-measure-of-tendencies-1-bf43e5e0/', u'https://www.hackerearth.com/challenges/college/codejunk2017/algorithm/one-of-a-kind-colors/', u'https://www.hackerearth.com/challenges/college/codejunk2017/algorithm/problem-of-planar-graph/', u'https://www.hackerearth.com/challenges/college/dreamspark-ignite-2/algorithm/candy-crush-saga/', u'https://www.hackerearth.com/challenges/college/dreamspark-ignite-2/algorithm/magical-treausre-hunt/', u'https://www.hackerearth.com/challenges/college/epiphany-61/algorithm/xs-mission/', u'https://www.hackerearth.com/challenges/competitive/august-circuits/approximate/game-with-xor/', u'https://www.hackerearth.com/challenges/competitive/ibm-developerconnect/algorithm/shil-and-arjits-gift-9/', u'https://www.hackerearth.com/challenges/competitive/indiahacks-2017-programming-finale/algorithm/fix-bad-list-e7249765/', u'https://www.hackerearth.com/challenges/competitive/may-circuits/approximate/city-rebuild-circuits/', u'https://www.hackerearth.com/challenges/competitive/may-clash-16/approximate/post-correspondence-problem/', u'https://www.hackerearth.com/challenges/competitive/may-clash-16/approximate/rooks/', u'https://www.hackerearth.com/challenges/competitive/may-clash-16/approximate/social-network-approx/', u'https://www.hackerearth.com/challenges/competitive/october-clash-16/approximate/different-sums/', u'https://www.hackerearth.com/challenges/hiring/makemytrip-qa-hiring-challenge/approximate/brinston-strings/', u'https://www.hackerearth.com/challenges/hiring/makemytrip-qa-hiring-challenge/approximate/web-tester/', u'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/sum-conversion-b97a174a/', u'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/2-way-attack-1/', u'https://www.hackerearth.com/practice/algorithms/greedy/basics-of-greedy-algorithms/practice-problems/algorithm/make-them-different-5d897ef6/', u'https://www.hackerearth.com/practice/algorithms/greedy/basics-of-greedy-algorithms/practice-problems/approximate/mathison-and-the-medical-facilities-cd486d5e/', u'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/gaurav-and-subarray-3-787fb90a/', u'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/the-soap-mystery/', u'https://www.hackerearth.com/practice/algorithms/searching/linear-search/practice-problems/algorithm/maximum-sum-4-f8d12458/', u'https://www.hackerearth.com/practice/basic-programming/bit-manipulation/basics-of-bit-manipulation/practice-problems/algorithm/or-sum-5ef57f6e/', u'https://www.hackerearth.com/practice/data-structures/stacks/basics-of-stacks/practice-problems/algorithm/grandmaster/', u'https://www.hackerearth.com/problem/algorithm/alien-invasion-10-cb99b25b-f1e18353/', u'https://www.hackerearth.com/problem/algorithm/arrayed-permutations/', u'https://www.hackerearth.com/problem/algorithm/call-list-4/', u'https://www.hackerearth.com/problem/algorithm/chinmay-and-his-work-ids/', u'https://www.hackerearth.com/problem/algorithm/chinu-and-his-project/', u'https://www.hackerearth.com/problem/algorithm/cluster-response-time-1/', u'https://www.hackerearth.com/problem/algorithm/counting-rr/', u'https://www.hackerearth.com/problem/algorithm/crackers-on-the-floor-8b857ad8/', u'https://www.hackerearth.com/problem/algorithm/d-5/', u'https://www.hackerearth.com/problem/algorithm/danny-and-his-loneliness/', u'https://www.hackerearth.com/problem/algorithm/dealing-with-substring-b8139055/', u'https://www.hackerearth.com/problem/algorithm/debts-of-the-lannisters/', u'https://www.hackerearth.com/problem/algorithm/even-divison/', u'https://www.hackerearth.com/problem/algorithm/how-much-do-you-need-2/', u'https://www.hackerearth.com/problem/algorithm/hungry-games/', u'https://www.hackerearth.com/problem/algorithm/lets-do-it/', u'https://www.hackerearth.com/problem/algorithm/micro-and-shopping-2/', u'https://www.hackerearth.com/problem/algorithm/minimum-maximum-980d501a/', u'https://www.hackerearth.com/problem/algorithm/minimum-value/', u'https://www.hackerearth.com/problem/algorithm/mmorpg-dota2-4/', u'https://www.hackerearth.com/problem/algorithm/move-the-knight/', u'https://www.hackerearth.com/problem/algorithm/p-and-his-chocolates/', u'https://www.hackerearth.com/problem/algorithm/pair-recovery-f27a26a4/', u'https://www.hackerearth.com/problem/algorithm/panda-ball/', u'https://www.hackerearth.com/problem/algorithm/placement-6-e8bbdc5f/', u'https://www.hackerearth.com/problem/algorithm/prince-and-his-thoughts/', u'https://www.hackerearth.com/problem/algorithm/pseudo-equal-numbers-4/', u'https://www.hackerearth.com/problem/algorithm/queries-on-splendid-matrices-17/', u'https://www.hackerearth.com/problem/algorithm/random-numbers/', u'https://www.hackerearth.com/problem/algorithm/sherlock-and-ciphers-3/', u'https://www.hackerearth.com/problem/algorithm/shils-romantic-message/', u'https://www.hackerearth.com/problem/algorithm/strange-strings-3/', u'https://www.hackerearth.com/problem/algorithm/subly-again/', u'https://www.hackerearth.com/problem/algorithm/the-easy-formula-1/', u'https://www.hackerearth.com/problem/algorithm/way-too-secret-9b6a11a0-3bcaa84d/', u'https://www.hackerearth.com/problem/algorithm/yusufs-valentine-gift-ae8237d6-9fe4a595/', u'https://www.hackerrank.com/challenges/complex-numbers', u'https://www.hackerrank.com/challenges/find-the-torsional-angle', u'https://www.hackerrank.com/contests/rookierank-4/challenges/dna-value', u'https://www.spoj.com/problems/NAPTIME/', u'https://www.spoj.com/problems/VSTEPS/'] +duplicate_problem_links = ['http://acm.timus.ru/problem.aspx?space=1&num=1060&locale=en', 'http://www.codeforces.com/problemset/gymProblem/101487/J', 'http://www.codeforces.com/problemset/problem/1011/A', 'http://www.codeforces.com/problemset/problem/810/C', 'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4799', 'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4958', 'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4961', 'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=5031', 'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=5181', 'https://www.codechef.com/ABCS2014/problems/ABA14A', 'https://www.codechef.com/ABCS2014/problems/ABA14B', 'https://www.codechef.com/ABCS2014/problems/ABA14E', 'https://www.codechef.com/ABCS2015/problems/ABA15A', 'https://www.codechef.com/ABCS2015/problems/ABA15C', 'https://www.codechef.com/ABCS2015/problems/ABA15D', 'https://www.codechef.com/ABCS2015/problems/ABA15E', 'https://www.codechef.com/ABCS2015/problems/ABA15F', 'https://www.codechef.com/ABCS2015/problems/ABA15G', 'https://www.codechef.com/ABCS2016/problems/ABACUS01', 'https://www.codechef.com/ABCS2016/problems/ABACUS02', 'https://www.codechef.com/ABCS2016/problems/ABACUS03', 'https://www.codechef.com/ABCS2016/problems/ABACUS04', 'https://www.codechef.com/ABCS2016/problems/ABACUS05', 'https://www.codechef.com/ABCS2016/problems/ABACUS06', 'https://www.codechef.com/ABYN2015/problems/LDIGIT', 'https://www.codechef.com/ABYN2015/problems/LUCBULB', 'https://www.codechef.com/ABYN2015/problems/LUCKYBIT', 'https://www.codechef.com/ABYN2015/problems/LUCXOR', 'https://www.codechef.com/ACMAMR12/problems/ATKCTR', 'https://www.codechef.com/ACMAMR12/problems/BALL', 'https://www.codechef.com/ACMAMR12/problems/CBLOCKS', 'https://www.codechef.com/ACMAMR12/problems/DQPERMS', 'https://www.codechef.com/ACMAMR12/problems/FINDHOLE', 'https://www.codechef.com/ACMAMR12/problems/FSSYNC', 'https://www.codechef.com/ACMAMR12/problems/LIGHTS', 'https://www.codechef.com/ACMAMR12/problems/MINMAX', 'https://www.codechef.com/ACMAMR12/problems/MSTRINGS', 'https://www.codechef.com/ACMAMR12/problems/PSTRINGS', 'https://www.codechef.com/ACMAMR12/problems/RNEST', 'https://www.codechef.com/AIPC2015/problems/AN01', 'https://www.codechef.com/AIPC2015/problems/PRI01', 'https://www.codechef.com/AIPC2015/problems/YA01', 'https://www.codechef.com/ALGT2013/problems/TNMALG01', 'https://www.codechef.com/ALGT2013/problems/TNMALG02', 'https://www.codechef.com/ALGT2013/problems/TNMALG03', 'https://www.codechef.com/ALGT2013/problems/TNMALG04', 'https://www.codechef.com/ALGT2013/problems/TNMALG06', 'https://www.codechef.com/ALGT2013/problems/TNMALG07', 'https://www.codechef.com/ALKH2013/problems/ALK13A', 'https://www.codechef.com/ALKH2013/problems/ALK13B', 'https://www.codechef.com/ALKH2013/problems/ALK13C', 'https://www.codechef.com/ALKH2013/problems/ALK13E', 'https://www.codechef.com/ALKH2013/problems/ALK13F', 'https://www.codechef.com/ALKH2013/problems/ALK13G', 'https://www.codechef.com/ALKH2013/problems/ALK13H', 'https://www.codechef.com/ALKH2016/problems/CLBMK', 'https://www.codechef.com/ALKH2016/problems/DRTVG', 'https://www.codechef.com/ALKH2016/problems/ISD', 'https://www.codechef.com/ALKH2016/problems/LFS', 'https://www.codechef.com/ALKH2016/problems/NRTKH', 'https://www.codechef.com/ALKH2016/problems/NTSK', 'https://www.codechef.com/ALKH2016/problems/PETRM', 'https://www.codechef.com/ALKH2016/problems/POPT', 'https://www.codechef.com/ALKH2016/problems/VLB', 'https://www.codechef.com/ALKH2016/problems/VLD', 'https://www.codechef.com/ALKH2016/problems/VVR', 'https://www.codechef.com/ALMA2015/problems/ALMA01', 'https://www.codechef.com/ALMA2015/problems/ALMA02', 'https://www.codechef.com/ALMA2015/problems/ALMA03', 'https://www.codechef.com/ALMA2015/problems/ALMA04', 'https://www.codechef.com/ALMA2015/problems/ALMA05', 'https://www.codechef.com/ALPH2016/problems/AVGSCORE', 'https://www.codechef.com/ALPH2016/problems/CNTMTX', 'https://www.codechef.com/ALPH2016/problems/VIRAT20', 'https://www.codechef.com/ALPH2016/problems/VIRATGCD', 'https://www.codechef.com/ALPH2016/problems/YUVRAJ', 'https://www.codechef.com/AMR14ROL/problems/ACM14AM1', 'https://www.codechef.com/AMR14ROL/problems/ACM14AM3', 'https://www.codechef.com/AMR14ROL/problems/ACM14AM4', 'https://www.codechef.com/AMR14ROL/problems/ACM14AM5', 'https://www.codechef.com/AMR15ROL/problems/AMR15A', 'https://www.codechef.com/AMR15ROL/problems/AMR15B', 'https://www.codechef.com/AMR15ROL/problems/AMR15C', 'https://www.codechef.com/AMR15ROL/problems/AMR15D', 'https://www.codechef.com/AMSC2015/problems/AMCS01', 'https://www.codechef.com/AMSC2015/problems/AMCS03', 'https://www.codechef.com/AMSC2015/problems/AMCS04', 'https://www.codechef.com/AMSC2015/problems/AMCS05', 'https://www.codechef.com/AMSC2015/problems/AMCS06', 'https://www.codechef.com/APRIL13/problems/CHEFGAME', 'https://www.codechef.com/APRIL13/problems/CYLINDER', 'https://www.codechef.com/APRIL13/problems/FAULT', 'https://www.codechef.com/APRIL13/problems/FCBARCA', 'https://www.codechef.com/APRIL13/problems/KINGCON', 'https://www.codechef.com/APRIL13/problems/LEMUSIC', 'https://www.codechef.com/APRIL13/problems/LEVY', 'https://www.codechef.com/APRIL13/problems/MAXDIFF', 'https://www.codechef.com/APRIL13/problems/STRQUERY', 'https://www.codechef.com/APRIL14/problems/ADIGIT', 'https://www.codechef.com/APRIL14/problems/ANUCBC', 'https://www.codechef.com/APRIL14/problems/BINTREE', 'https://www.codechef.com/APRIL14/problems/CNPIIM', 'https://www.codechef.com/APRIL14/problems/FBCHEF', 'https://www.codechef.com/APRIL14/problems/GERALD08', 'https://www.codechef.com/APRIL14/problems/POTATOES', 'https://www.codechef.com/APRIL14/problems/SEAPERM', 'https://www.codechef.com/APRIL14/problems/TANGDIV', 'https://www.codechef.com/APRIL15/problems/BROKPHON', 'https://www.codechef.com/APRIL15/problems/BWGAME', 'https://www.codechef.com/APRIL15/problems/CARLOS', 'https://www.codechef.com/APRIL15/problems/CHEFLCM', 'https://www.codechef.com/APRIL15/problems/CSEQ', 'https://www.codechef.com/APRIL15/problems/DEVVOTE', 'https://www.codechef.com/APRIL15/problems/DIVLAND', 'https://www.codechef.com/APRIL15/problems/FRMQ', 'https://www.codechef.com/APRIL15/problems/LPARTY', 'https://www.codechef.com/APRIL15/problems/PIANO1', 'https://www.codechef.com/APRIL16/problems/AMAEXPER', 'https://www.codechef.com/APRIL16/problems/BIPIN3', 'https://www.codechef.com/APRIL16/problems/CHBLLNS', 'https://www.codechef.com/APRIL16/problems/CHEFPATH', 'https://www.codechef.com/APRIL16/problems/CHNBGMT', 'https://www.codechef.com/APRIL16/problems/COLOR', 'https://www.codechef.com/APRIL16/problems/DEVGOSTR', 'https://www.codechef.com/APRIL16/problems/FIBQ', 'https://www.codechef.com/APRIL16/problems/FURGRAPH', 'https://www.codechef.com/APRIL16/problems/SNAKGAME', 'https://www.codechef.com/APTT2015/problems/APTT0001', 'https://www.codechef.com/ARHN1502/problems/ARHN01', 'https://www.codechef.com/ARHN1502/problems/ARHN04', 'https://www.codechef.com/ARHN1502/problems/ARHN06', 'https://www.codechef.com/ARHN1502/problems/ARHN07', 'https://www.codechef.com/ARHN1502/problems/ARHN08', 'https://www.codechef.com/ARHN1502/problems/ARHN09', 'https://www.codechef.com/ARHN1502/problems/ARHN10', 'https://www.codechef.com/ASNE2016/problems/FZLKHN', 'https://www.codechef.com/ASNE2016/problems/GHATAK', 'https://www.codechef.com/ASNE2016/problems/STUD2', 'https://www.codechef.com/ASNE2016/problems/STUD3', 'https://www.codechef.com/ASNE2016/problems/STUDD', 'https://www.codechef.com/AUG13/problems/CHMOD', 'https://www.codechef.com/AUG13/problems/CNTSOLS', 'https://www.codechef.com/AUG13/problems/DELNMS', 'https://www.codechef.com/AUG13/problems/HELLO', 'https://www.codechef.com/AUG13/problems/LELEMON', 'https://www.codechef.com/AUG13/problems/LYRC', 'https://www.codechef.com/AUG13/problems/PRIMEDST', 'https://www.codechef.com/AUG13/problems/SEABAL', 'https://www.codechef.com/AUG13/problems/SHIRO', 'https://www.codechef.com/AUG13/problems/SPCANDY', 'https://www.codechef.com/AUG14/problems/CLETAB', 'https://www.codechef.com/AUG14/problems/CRAWA', 'https://www.codechef.com/AUG14/problems/EQUAKE', 'https://www.codechef.com/AUG14/problems/MOU2H', 'https://www.codechef.com/AUG14/problems/PRGIFT', 'https://www.codechef.com/AUG14/problems/REVERSE', 'https://www.codechef.com/AUG14/problems/SEASHUF', 'https://www.codechef.com/AUG14/problems/SIGFIB', 'https://www.codechef.com/AUG14/problems/TSHIRTS', 'https://www.codechef.com/AUG15/problems/ADMAG', 'https://www.codechef.com/AUG15/problems/CHINSM', 'https://www.codechef.com/AUG15/problems/CLOWAY', 'https://www.codechef.com/AUG15/problems/COOKMACH', 'https://www.codechef.com/AUG15/problems/DCGAME', 'https://www.codechef.com/AUG15/problems/DISTNUM', 'https://www.codechef.com/AUG15/problems/GRGUY', 'https://www.codechef.com/AUG15/problems/SCLUSTER', 'https://www.codechef.com/AUG15/problems/STETSKLX', 'https://www.codechef.com/AUG15/problems/WOUT', 'https://www.codechef.com/AUST2016/problems/AUASIF', 'https://www.codechef.com/AUST2016/problems/AUDH', 'https://www.codechef.com/AUST2016/problems/AUEC', 'https://www.codechef.com/AUST2016/problems/AUHASH', 'https://www.codechef.com/AUST2016/problems/AUNX', 'https://www.codechef.com/AUST2016/problems/AUPM', 'https://www.codechef.com/AUST2016/problems/AUSAG', 'https://www.codechef.com/AUST2016/problems/AUSASA', 'https://www.codechef.com/AUST2016/problems/AUSF', 'https://www.codechef.com/BIGO2016/problems/GTH', 'https://www.codechef.com/BIGO2016/problems/SACHGF', 'https://www.codechef.com/BIGO2016/problems/SURF', 'https://www.codechef.com/BIGO2016/problems/WATSY', 'https://www.codechef.com/BIGO2016/problems/WKIMAAL', 'https://www.codechef.com/BION2015/problems/BI01', 'https://www.codechef.com/BION2015/problems/BI02', 'https://www.codechef.com/BITC2016/problems/DMILK', 'https://www.codechef.com/BITC2016/problems/KING', 'https://www.codechef.com/BITC2016/problems/TBD', 'https://www.codechef.com/BITC2016/problems/TRYOUT', 'https://www.codechef.com/BITC2016/problems/TVP', 'https://www.codechef.com/BRCD2015/problems/CKTFEV', 'https://www.codechef.com/BRCD2015/problems/NGTBIT', 'https://www.codechef.com/BRCD2015/problems/PALHAPPY', 'https://www.codechef.com/BRCD2015/problems/RAGOOD', 'https://www.codechef.com/BRCD2015/problems/SURFRN', 'https://www.codechef.com/BRCD2015/problems/TTEACH', 'https://www.codechef.com/BTBT2014/problems/COG14A', 'https://www.codechef.com/BTBT2014/problems/COG14B', 'https://www.codechef.com/BTBT2014/problems/COG14C', 'https://www.codechef.com/BTBT2014/problems/COG14D', 'https://www.codechef.com/BTBT2014/problems/COG14E', 'https://www.codechef.com/BTBT2014/problems/COG14F', 'https://www.codechef.com/BTCD2013/problems/CNG', 'https://www.codechef.com/BTCD2013/problems/DIFBMB', 'https://www.codechef.com/BTCD2013/problems/FMAP', 'https://www.codechef.com/BTCD2013/problems/MAGSTK', 'https://www.codechef.com/BTCD2013/problems/MAXCOMB', 'https://www.codechef.com/BTCD2013/problems/PLAYNUM', 'https://www.codechef.com/BTCD2013/problems/PRSN', 'https://www.codechef.com/BTCD2013/problems/RANBOT', 'https://www.codechef.com/BTCD2013/problems/SCNDWAR', 'https://www.codechef.com/BTCD2013/problems/SPLCND', 'https://www.codechef.com/BTCJ2015/problems/BITCJ1', 'https://www.codechef.com/BTCJ2015/problems/BITCJ3', 'https://www.codechef.com/BTCJ2015/problems/BITCJ4', 'https://www.codechef.com/BTCJ2015/problems/BITCJ5', 'https://www.codechef.com/BTFR2013/problems/NITA02', 'https://www.codechef.com/BTFR2013/problems/NITA04', 'https://www.codechef.com/BTFR2013/problems/NITA05', 'https://www.codechef.com/BTFR2013/problems/NITA06', 'https://www.codechef.com/BTFR2013/problems/NITA07', 'https://www.codechef.com/BTFR2013/problems/NITA09', 'https://www.codechef.com/BTFR2013/problems/NITA10', 'https://www.codechef.com/BTFR2013/problems/NITA11', 'https://www.codechef.com/BTFR2013/problems/NITA13', 'https://www.codechef.com/BYTE2016/problems/BYTES11', 'https://www.codechef.com/BYTE2016/problems/BYTES12', 'https://www.codechef.com/BYTE2016/problems/BYTES13', 'https://www.codechef.com/BYTE2016/problems/BYTES14', 'https://www.codechef.com/BYTE2016/problems/BYTES15', 'https://www.codechef.com/BYTS2013/problems/BYTESA', 'https://www.codechef.com/BYTS2013/problems/BYTESB', 'https://www.codechef.com/BYTS2013/problems/BYTESC', 'https://www.codechef.com/BYTS2013/problems/BYTESD', 'https://www.codechef.com/BYTS2013/problems/BYTESE', 'https://www.codechef.com/BYTS2013/problems/BYTESG', 'https://www.codechef.com/CCBE2015/problems/CCUBE01', 'https://www.codechef.com/CCBE2015/problems/CCUBE04', 'https://www.codechef.com/CDAV2014/problems/JIGGLY', 'https://www.codechef.com/CDAV2014/problems/LCK', 'https://www.codechef.com/CDAV2014/problems/PND', 'https://www.codechef.com/CDAV2014/problems/POWER', 'https://www.codechef.com/CDAV2014/problems/THUNT', 'https://www.codechef.com/CDAV2014/problems/TRAP', 'https://www.codechef.com/CDBR2015/problems/CDBSTR1', 'https://www.codechef.com/CDBR2015/problems/CDBSTR2', 'https://www.codechef.com/CDBR2015/problems/CDBSTR3', 'https://www.codechef.com/CDBR2015/problems/CDBSTR4', 'https://www.codechef.com/CDBR2015/problems/CDBSTR5', 'https://www.codechef.com/CDBR2015/problems/CDBSTR6', 'https://www.codechef.com/CDBR2015/problems/CDBSTR7', 'https://www.codechef.com/CDCL2013/problems/MPAIR', 'https://www.codechef.com/CDCL2013/problems/MPROB', 'https://www.codechef.com/CDCL2013/problems/XAIR', 'https://www.codechef.com/CDCL2013/problems/XLIFE', 'https://www.codechef.com/CDCN2014/problems/CRZ01', 'https://www.codechef.com/CDCN2014/problems/CRZ02', 'https://www.codechef.com/CDCN2014/problems/CRZ04', 'https://www.codechef.com/CDCN2014/problems/CRZ05', 'https://www.codechef.com/CDCR2015/problems/CDCR15_1', 'https://www.codechef.com/CDCR2015/problems/CDCR15_2', 'https://www.codechef.com/CDCR2015/problems/CDCR15_3', 'https://www.codechef.com/CDCR2015/problems/CDCR15_4', 'https://www.codechef.com/CDCR2015/problems/CDCR15_5', 'https://www.codechef.com/CDCRF15R/problems/COPERM', 'https://www.codechef.com/CDCRF15R/problems/CPAL', 'https://www.codechef.com/CDCRF15R/problems/CWAYS', 'https://www.codechef.com/CDCRF15R/problems/LOLOL', 'https://www.codechef.com/CDCRF15R/problems/PNUM', 'https://www.codechef.com/CDCRF15R/problems/THIEF', 'https://www.codechef.com/CDCRF15R/problems/TSORTA', 'https://www.codechef.com/CDCRFT14/problems/ATOM', 'https://www.codechef.com/CDCRFT14/problems/BALLS', 'https://www.codechef.com/CDCRFT14/problems/BIT', 'https://www.codechef.com/CDCRFT14/problems/DURIND', 'https://www.codechef.com/CDCRFT14/problems/GIVEAWAY', 'https://www.codechef.com/CDCRNC13/problems/MRIU11', 'https://www.codechef.com/CDCRNC13/problems/MRIU12', 'https://www.codechef.com/CDCRNC13/problems/MRIU13', 'https://www.codechef.com/CDCRNC13/problems/MRIU14', 'https://www.codechef.com/CDCRNC13/problems/MRIU15', 'https://www.codechef.com/CDCRNT14/problems/CC1', 'https://www.codechef.com/CDCRNT14/problems/CC2', 'https://www.codechef.com/CDCRNT14/problems/CC3', 'https://www.codechef.com/CDCRNT14/problems/CC4', 'https://www.codechef.com/CDCS2014/problems/CDCRTS1', 'https://www.codechef.com/CDCS2014/problems/CDCRTS3', 'https://www.codechef.com/CDCS2014/problems/CDCRTS4', 'https://www.codechef.com/CDCS2014/problems/CDCRTS5', 'https://www.codechef.com/CDCZ2013/problems/BHAV', 'https://www.codechef.com/CDCZ2013/problems/BUYCAR', 'https://www.codechef.com/CDCZ2013/problems/GOTN', 'https://www.codechef.com/CDCZ2013/problems/GOTT', 'https://www.codechef.com/CDCZ2013/problems/JAGE', 'https://www.codechef.com/CDCZ2013/problems/OPDES', 'https://www.codechef.com/CDER2015/problems/DISPLAY', 'https://www.codechef.com/CDER2015/problems/ESYYSE', 'https://www.codechef.com/CDER2015/problems/EXORO', 'https://www.codechef.com/CDER2015/problems/FACT25', 'https://www.codechef.com/CDER2015/problems/HELPND', 'https://www.codechef.com/CDER2015/problems/LUCKYR', 'https://www.codechef.com/CDER2015/problems/MATHS', 'https://www.codechef.com/CDER2015/problems/PALIND', 'https://www.codechef.com/CDER2015/problems/REVER', 'https://www.codechef.com/CDER2015/problems/SHORTCUT', 'https://www.codechef.com/CDGF2013/problems/BINGCD', 'https://www.codechef.com/CDGF2013/problems/FCTRIZE', 'https://www.codechef.com/CDGF2013/problems/MTRANS', 'https://www.codechef.com/CDGF2013/problems/PRQUIN', 'https://www.codechef.com/CDGF2013/problems/TOTAREA', 'https://www.codechef.com/CDGF2016/problems/CDGLF01', 'https://www.codechef.com/CDGF2016/problems/CDGLF02', 'https://www.codechef.com/CDGF2016/problems/CDGLF03', 'https://www.codechef.com/CDGF2016/problems/CDGLF04', 'https://www.codechef.com/CDGF2016/problems/CDGLF05', 'https://www.codechef.com/CDME2015/problems/DGAME', 'https://www.codechef.com/CDME2015/problems/DRKNGHT', 'https://www.codechef.com/CDME2015/problems/LPATH', 'https://www.codechef.com/CDME2015/problems/PRFUN', 'https://www.codechef.com/CDMR2014/problems/JMI00', 'https://www.codechef.com/CDMR2014/problems/JMI01', 'https://www.codechef.com/CDMR2014/problems/JMI02', 'https://www.codechef.com/CDMR2014/problems/JMI03', 'https://www.codechef.com/CDMR2014/problems/JMI04', 'https://www.codechef.com/CDMS2014/problems/CM1401', 'https://www.codechef.com/CDMS2014/problems/CM1403', 'https://www.codechef.com/CDMS2014/problems/CM1404', 'https://www.codechef.com/CDMT2014/problems/CANDB', 'https://www.codechef.com/CDMT2014/problems/CDMT06', 'https://www.codechef.com/CDMT2014/problems/CINEMA', 'https://www.codechef.com/CDMT2014/problems/MIRRORS', 'https://www.codechef.com/CDMT2014/problems/TILE', 'https://www.codechef.com/CDMT2014/problems/TILE0', 'https://www.codechef.com/CDMU2015/problems/CDMU01', 'https://www.codechef.com/CDMU2015/problems/CDMU02', 'https://www.codechef.com/CDMU2015/problems/CDMU03', 'https://www.codechef.com/CDMU2015/problems/CDMU04', 'https://www.codechef.com/CDMU2015/problems/CDMU05', 'https://www.codechef.com/CDMU2015/problems/CDMU06', 'https://www.codechef.com/CDNB2013/problems/IIITBH10', 'https://www.codechef.com/CDNB2013/problems/IIITBH11', 'https://www.codechef.com/CDNB2013/problems/IIITBH13', 'https://www.codechef.com/CDNB2013/problems/IIITBH14', 'https://www.codechef.com/CDNC2013/problems/P1314', 'https://www.codechef.com/CDNC2013/problems/P1316', 'https://www.codechef.com/CDNCTR14/problems/ARRAY', 'https://www.codechef.com/CDNCTR14/problems/FEST', 'https://www.codechef.com/CDNCTR14/problems/GOT', 'https://www.codechef.com/CDNCTR14/problems/JADEJA', 'https://www.codechef.com/CDNCTR14/problems/QUEST', 'https://www.codechef.com/CDOL2013/problems/CDOLP1', 'https://www.codechef.com/CDOT2015/problems/CDOUT1', 'https://www.codechef.com/CDOT2015/problems/CDOUT2', 'https://www.codechef.com/CDOT2015/problems/CDOUT3', 'https://www.codechef.com/CDOT2015/problems/CDOUT4', 'https://www.codechef.com/CDOT2015/problems/CDOUT5', 'https://www.codechef.com/CDOT2015/problems/CDOUT6', 'https://www.codechef.com/CDPH2015/problems/PRIMPAL', 'https://www.codechef.com/CDPH2015/problems/PRLIN', 'https://www.codechef.com/CDPH2015/problems/SPOOKY', 'https://www.codechef.com/CDQT2015/problems/ICQ1', 'https://www.codechef.com/CDQT2015/problems/ICQ2', 'https://www.codechef.com/CDQT2015/problems/ICQ3', 'https://www.codechef.com/CDQT2015/problems/ICQ4', 'https://www.codechef.com/CDQU1601/problems/CDQU01', 'https://www.codechef.com/CDQU1601/problems/CDQU02', 'https://www.codechef.com/CDQU1601/problems/CDQU03', 'https://www.codechef.com/CDQU1601/problems/CDQU04', 'https://www.codechef.com/CDQU1601/problems/CDQU05', 'https://www.codechef.com/CDQU1601/problems/CDQU06', 'https://www.codechef.com/CDQU1601/problems/CDQU07', 'https://www.codechef.com/CDQU1601/problems/CDQU08', 'https://www.codechef.com/CDQU1601/problems/CDQU09', 'https://www.codechef.com/CDQU1601/problems/CDQU10', 'https://www.codechef.com/CDSK2015/problems/CSP1', 'https://www.codechef.com/CDSK2015/problems/CSP3', 'https://www.codechef.com/CDSK2015/problems/CSP4', 'https://www.codechef.com/CDSK2015/problems/CSP5', 'https://www.codechef.com/CDSM2014/problems/CHEFTR', 'https://www.codechef.com/CDSM2014/problems/CHFBOOKS', 'https://www.codechef.com/CDSM2014/problems/CHFFIELD', 'https://www.codechef.com/CDSM2014/problems/CHFMAX', 'https://www.codechef.com/CDSM2014/problems/PPOW', 'https://www.codechef.com/CDST2014/problems/CCCS1', 'https://www.codechef.com/CDST2014/problems/CCCS2', 'https://www.codechef.com/CDSU2015/problems/MHTBAG', 'https://www.codechef.com/CDSU2015/problems/MHTCLASS', 'https://www.codechef.com/CDSU2015/problems/MHTPAIR', 'https://www.codechef.com/CDSU2015/problems/PRDIV', 'https://www.codechef.com/CDSU2015/problems/SWAPS', 'https://www.codechef.com/CDTR1502/problems/MULTIPLY', 'https://www.codechef.com/CDTR1502/problems/QUERIES', 'https://www.codechef.com/CDTR1502/problems/TIME', 'https://www.codechef.com/CDTR1502/problems/TOUR', 'https://www.codechef.com/CDTR2014/problems/CDTR01', 'https://www.codechef.com/CDTR2014/problems/CDTR04', 'https://www.codechef.com/CDTR2014/problems/CDTR05', 'https://www.codechef.com/CDTR2014/problems/CDTR06', 'https://www.codechef.com/CDTR2015/problems/JNTUV1', 'https://www.codechef.com/CDTR2015/problems/JNTUV2', 'https://www.codechef.com/CDTR2015/problems/JNTUV3', 'https://www.codechef.com/CDTR2015/problems/JNTUV4', 'https://www.codechef.com/CDVA16/problems/CDVA1601', 'https://www.codechef.com/CDVA16/problems/CDVA1602', 'https://www.codechef.com/CDVA16/problems/CDVA1603', 'https://www.codechef.com/CDVA16/problems/CDVA1604', 'https://www.codechef.com/CDVA16/problems/CDVA1605', 'https://www.codechef.com/CDVA16/problems/CDVA1606', 'https://www.codechef.com/CDVA16/problems/CDVA1607', 'https://www.codechef.com/CDVA16/problems/CDVA1608', 'https://www.codechef.com/CDVA16/problems/CDVA1610', 'https://www.codechef.com/CDVA2015/problems/CDVA1501', 'https://www.codechef.com/CDVA2015/problems/CDVA1502', 'https://www.codechef.com/CDVA2015/problems/CDVA1503', 'https://www.codechef.com/CDVA2015/problems/CDVA1504', 'https://www.codechef.com/CDVA2015/problems/CDVA1505', 'https://www.codechef.com/CDVA2015/problems/CDVA1507', 'https://www.codechef.com/CDVA2015/problems/CDVA1508', 'https://www.codechef.com/CDVA2015/problems/CDVA1509', 'https://www.codechef.com/CDVA2015/problems/CDVA1510', 'https://www.codechef.com/CDVA2015/problems/CDVS1506', 'https://www.codechef.com/CDWA2016/problems/CHNG', 'https://www.codechef.com/CDWA2016/problems/GUNG', 'https://www.codechef.com/CDWA2016/problems/MAGBALL', 'https://www.codechef.com/CDWA2016/problems/PRGAME', 'https://www.codechef.com/CDWA2016/problems/SPCOL', 'https://www.codechef.com/CDWR2013/problems/CWAR1', 'https://www.codechef.com/CDWR2013/problems/CZIP3', 'https://www.codechef.com/CDWR2013/problems/ESYPROB', 'https://www.codechef.com/CDWR2013/problems/FACTCN', 'https://www.codechef.com/CDWR2013/problems/GPRIME', 'https://www.codechef.com/CDWR2014/problems/CW1', 'https://www.codechef.com/CDWR2014/problems/CW2', 'https://www.codechef.com/CDWR2014/problems/CW3', 'https://www.codechef.com/CDWR2014/problems/CW4', 'https://www.codechef.com/CDWR2014/problems/CW5', 'https://www.codechef.com/CDWR2014/problems/CW6', 'https://www.codechef.com/CDWV2013/problems/ACHESS', 'https://www.codechef.com/CDWV2013/problems/BWIDOW', 'https://www.codechef.com/CDWV2013/problems/IMBOX', 'https://www.codechef.com/CDWV2013/problems/NFURY', 'https://www.codechef.com/CDWV2013/problems/TBATTLE', 'https://www.codechef.com/CDWV2013/problems/TESSER', 'https://www.codechef.com/CDX2015/problems/CDXLRG', 'https://www.codechef.com/CDX2015/problems/CDXNPL', 'https://www.codechef.com/CDX2015/problems/CDXOPTM', 'https://www.codechef.com/CDX2015/problems/CODEXLMB', 'https://www.codechef.com/CDX2015/problems/CODEXTRY', 'https://www.codechef.com/CDZL2014/problems/CDZ14A', 'https://www.codechef.com/CDZL2014/problems/CDZ14B', 'https://www.codechef.com/CDZL2014/problems/CDZ14C', 'https://www.codechef.com/CDZL2014/problems/CDZ14D', 'https://www.codechef.com/CDZL2014/problems/CDZ14E', 'https://www.codechef.com/CDZP2014/problems/AMM45', 'https://www.codechef.com/CDZP2014/problems/BKW', 'https://www.codechef.com/CDZP2014/problems/CAN1', 'https://www.codechef.com/CDZP2014/problems/PRST', 'https://www.codechef.com/CDZP2014/problems/RADRAM', 'https://www.codechef.com/CFSN2015/problems/LINNUM', 'https://www.codechef.com/CFSN2015/problems/LINSUB', 'https://www.codechef.com/CFSN2015/problems/PUNBAN', 'https://www.codechef.com/CFSN2015/problems/SUYBOB', 'https://www.codechef.com/CHN15MOS/problems/CHN05', 'https://www.codechef.com/CHN15MOS/problems/CHN08', 'https://www.codechef.com/CHN15MOS/problems/CHN09', 'https://www.codechef.com/CHN15ROL/problems/CHN15A', 'https://www.codechef.com/CHN15ROL/problems/CHN15B', 'https://www.codechef.com/CHN15ROL/problems/CHN15C', 'https://www.codechef.com/CHN15ROL/problems/CHN15D', 'https://www.codechef.com/CHN15ROL/problems/CHN15E', 'https://www.codechef.com/CLASH13/problems/CREDCJ4', 'https://www.codechef.com/CLASH13/problems/CREDCS1', 'https://www.codechef.com/CLASH13/problems/CREDCS2', 'https://www.codechef.com/CLASH13/problems/CREDCS3', 'https://www.codechef.com/CLDB2016/problems/CB20Q1', 'https://www.codechef.com/CLDB2016/problems/CB20Q3', 'https://www.codechef.com/CLDB2016/problems/CB20Q4', 'https://www.codechef.com/CLDB2016/problems/CB20Q5', 'https://www.codechef.com/COBA2016/problems/CB1', 'https://www.codechef.com/COBA2016/problems/CB2', 'https://www.codechef.com/COBA2016/problems/CB3', 'https://www.codechef.com/COBA2016/problems/CB4', 'https://www.codechef.com/COBL2016/problems/PERFECT', 'https://www.codechef.com/COBL2016/problems/RNGMOD', 'https://www.codechef.com/COBL2016/problems/SWEGARR', 'https://www.codechef.com/COBL2016/problems/SWEGIRL', 'https://www.codechef.com/COBL2016/problems/SWEGSTR', 'https://www.codechef.com/COCL2016/problems/BDAYGIFT', 'https://www.codechef.com/COCL2016/problems/CRAZYMAT', 'https://www.codechef.com/COCL2016/problems/LCKYNUM', 'https://www.codechef.com/COCL2016/problems/NEELSTR', 'https://www.codechef.com/COCL2016/problems/SCRTCD', 'https://www.codechef.com/COCR2015/problems/COCR01', 'https://www.codechef.com/COCR2015/problems/COCR02', 'https://www.codechef.com/COCR2015/problems/COCR04', 'https://www.codechef.com/COCR2015/problems/COCR05', 'https://www.codechef.com/COCR2015/problems/COCR07', 'https://www.codechef.com/COCR2015/problems/COCR08', 'https://www.codechef.com/COCR2015/problems/COCR09', 'https://www.codechef.com/COCU2016/problems/CURR1', 'https://www.codechef.com/COCU2016/problems/CURR2', 'https://www.codechef.com/COCU2016/problems/CURR3', 'https://www.codechef.com/COCU2016/problems/CURR4', 'https://www.codechef.com/CODC2015/problems/CSIXIEAN', 'https://www.codechef.com/CODC2015/problems/CSIXIEPA', 'https://www.codechef.com/CODC2015/problems/CSIXIERL', 'https://www.codechef.com/CODC2015/problems/CSIXIEVR', 'https://www.codechef.com/CODE2015/problems/RIT01', 'https://www.codechef.com/CODE2015/problems/RIT02', 'https://www.codechef.com/CODE2015/problems/RIT03', 'https://www.codechef.com/CODE2015/problems/RIT04', 'https://www.codechef.com/CODEWARS/problems/CW002', 'https://www.codechef.com/CODEWARS/problems/CW003', 'https://www.codechef.com/CODEWARS/problems/CW004', 'https://www.codechef.com/CODEWARS/problems/CW005', 'https://www.codechef.com/CODEWARS/problems/CW006', 'https://www.codechef.com/CODEWARS/problems/CW007', 'https://www.codechef.com/CODEWARS/problems/CW008', 'https://www.codechef.com/CODP2017/problems/CDP01', 'https://www.codechef.com/CODS2013/problems/COADIES1', 'https://www.codechef.com/CODS2013/problems/COADIES2', 'https://www.codechef.com/CODS2013/problems/COADIES5', 'https://www.codechef.com/CODW2013/problems/CDWRS01', 'https://www.codechef.com/CODW2013/problems/CDWRS02', 'https://www.codechef.com/CODW2013/problems/CDWRS03', 'https://www.codechef.com/CODW2013/problems/CDWRS04', 'https://www.codechef.com/CODW2013/problems/CDWRS05', 'https://www.codechef.com/CODW2013/problems/CDWRS06', 'https://www.codechef.com/CODX2014/problems/REN2013A', 'https://www.codechef.com/CODX2014/problems/REN2013B', 'https://www.codechef.com/CODX2014/problems/REN2013C', 'https://www.codechef.com/CODX2014/problems/REN2013D', 'https://www.codechef.com/CODX2014/problems/REN2013E', 'https://www.codechef.com/CODX2014/problems/REN2013F', 'https://www.codechef.com/CODX2014/problems/REN2013G', 'https://www.codechef.com/CODX2014/problems/REN2013I', 'https://www.codechef.com/CODX2014/problems/REN2013J', 'https://www.codechef.com/CODX2014/problems/REN2013K', 'https://www.codechef.com/COFU2015/problems/LINCAN', 'https://www.codechef.com/COFU2015/problems/LINCOM', 'https://www.codechef.com/COFU2015/problems/LINFRI', 'https://www.codechef.com/COFU2015/problems/LINGRP', 'https://www.codechef.com/COFU2015/problems/LINXOR', 'https://www.codechef.com/COJA2016/problems/CODEJAM1', 'https://www.codechef.com/COJA2016/problems/CODEJAM2', 'https://www.codechef.com/COJA2016/problems/CODEJAM3', 'https://www.codechef.com/COJA2016/problems/CODEJAM5', 'https://www.codechef.com/COJA2016/problems/CODEJAM6', 'https://www.codechef.com/COJA2016/problems/CODEJAM7', 'https://www.codechef.com/COLE2016/problems/CLATTK', 'https://www.codechef.com/COLE2016/problems/CLBMUP', 'https://www.codechef.com/COLE2016/problems/CLDROP', 'https://www.codechef.com/COLE2016/problems/CLDSIN', 'https://www.codechef.com/COLE2016/problems/CLDSTR', 'https://www.codechef.com/COLE2016/problems/CLMNTR', 'https://www.codechef.com/COMA2015/problems/CHEFBDAY', 'https://www.codechef.com/COMA2015/problems/COMA01', 'https://www.codechef.com/COMA2015/problems/COMA02', 'https://www.codechef.com/COMA2015/problems/COMA03', 'https://www.codechef.com/COMA2015/problems/COMA04', 'https://www.codechef.com/COMN2015/problems/COMPNUM', 'https://www.codechef.com/COMN2015/problems/DJMATH', 'https://www.codechef.com/COMN2015/problems/MHALL', 'https://www.codechef.com/COMN2015/problems/ODD86', 'https://www.codechef.com/COMN2016/problems/MINION', 'https://www.codechef.com/COMN2016/problems/NIKKLIN', 'https://www.codechef.com/COMN2016/problems/RECAREA', 'https://www.codechef.com/COMN2016/problems/SUMTOUR', 'https://www.codechef.com/COMN2016/problems/THANPK', 'https://www.codechef.com/COMN2016/problems/ZOMBIE', 'https://www.codechef.com/COMS1501/problems/CM1501', 'https://www.codechef.com/COMS1501/problems/CM1503', 'https://www.codechef.com/COMS1501/problems/CM1504', 'https://www.codechef.com/COMS1501/problems/CM1505', 'https://www.codechef.com/CONI2015/problems/CN01', 'https://www.codechef.com/CONI2015/problems/CN02', 'https://www.codechef.com/CONI2015/problems/CN03', 'https://www.codechef.com/CONI2015/problems/CN04', 'https://www.codechef.com/CONI2015/problems/CN05', 'https://www.codechef.com/COOK30/problems/AVDWAST', 'https://www.codechef.com/COOK30/problems/CIELDIST', 'https://www.codechef.com/COOK30/problems/DEFACING', 'https://www.codechef.com/COOK30/problems/MANYCHEF', 'https://www.codechef.com/COOK31/problems/CHEFHCK2', 'https://www.codechef.com/COOK31/problems/HOB2', 'https://www.codechef.com/COOK31/problems/MINWDSUM', 'https://www.codechef.com/COOK31/problems/NOLOGIC', 'https://www.codechef.com/COOK31/problems/ROWCOLOP', 'https://www.codechef.com/COOK32/problems/TABISHOP', 'https://www.codechef.com/COOK32/problems/TABUS', 'https://www.codechef.com/COOK32/problems/TAPALIN', 'https://www.codechef.com/COOK32/problems/TASTR', 'https://www.codechef.com/COOK32/problems/TAVISUAL', 'https://www.codechef.com/COOK33/problems/AMMEAT', 'https://www.codechef.com/COOK33/problems/AMMEAT2', 'https://www.codechef.com/COOK33/problems/AMSTRING', 'https://www.codechef.com/COOK33/problems/LEFEED', 'https://www.codechef.com/COOK34/problems/AMSEQT', 'https://www.codechef.com/COOK34/problems/AMSGAME1', 'https://www.codechef.com/COOK34/problems/AMSGAME2', 'https://www.codechef.com/COOK34/problems/AMXOR', 'https://www.codechef.com/COOK35/problems/ALETHIO', 'https://www.codechef.com/COOK35/problems/ATTIC', 'https://www.codechef.com/COOK35/problems/INVITES', 'https://www.codechef.com/COOK35/problems/TRANSFIG', 'https://www.codechef.com/COOK35/problems/TYTACTIC', 'https://www.codechef.com/COOK36/problems/TAACUTE', 'https://www.codechef.com/COOK36/problems/TAAPLUSB', 'https://www.codechef.com/COOK36/problems/TACHEMIS', 'https://www.codechef.com/COOK36/problems/TACHSTCK', 'https://www.codechef.com/COOK37/problems/DFSGRID', 'https://www.codechef.com/COOK37/problems/DIVQUERY', 'https://www.codechef.com/COOK37/problems/RIGHTRI', 'https://www.codechef.com/COOK37/problems/STRDIG', 'https://www.codechef.com/COOK38/problems/RRCODE', 'https://www.codechef.com/COOK38/problems/RRGAME', 'https://www.codechef.com/COOK38/problems/RRMATRIX', 'https://www.codechef.com/COOK38/problems/RRTREE', 'https://www.codechef.com/COOK39/problems/PPLUCKY', 'https://www.codechef.com/COOK39/problems/PPNUM', 'https://www.codechef.com/COOK39/problems/PPTEST', 'https://www.codechef.com/COOK39/problems/PPTREE', 'https://www.codechef.com/COOK39/problems/PPXOR', 'https://www.codechef.com/COOK40/problems/AMIFIB', 'https://www.codechef.com/COOK40/problems/LOWSUM', 'https://www.codechef.com/COOK40/problems/NEXTNUM', 'https://www.codechef.com/COOK40/problems/NUMPATH', 'https://www.codechef.com/COOK40/problems/TRSUBTR', 'https://www.codechef.com/COOK41/problems/GERALD03', 'https://www.codechef.com/COOK41/problems/GERALD04', 'https://www.codechef.com/COOK41/problems/GERALD05', 'https://www.codechef.com/COOK41/problems/GERALD3', 'https://www.codechef.com/COOK42/problems/CAKE1AM', 'https://www.codechef.com/COOK42/problems/GAMEAAM', 'https://www.codechef.com/COOK42/problems/GANGAAM', 'https://www.codechef.com/COOK43/problems/KINGSHIP', 'https://www.codechef.com/COOK43/problems/LPAIR', 'https://www.codechef.com/COOK43/problems/REMISS', 'https://www.codechef.com/COOK43/problems/UNIQUE', 'https://www.codechef.com/COOK44/problems/ABCSTR', 'https://www.codechef.com/COOK44/problems/DIVGAME', 'https://www.codechef.com/COOK44/problems/DIVIDING', 'https://www.codechef.com/COOK44/problems/MINXOR', 'https://www.codechef.com/COOK44/problems/PALIN3', 'https://www.codechef.com/COOK45/problems/BICO', 'https://www.codechef.com/COOK45/problems/DIREL', 'https://www.codechef.com/COOK45/problems/LOGO', 'https://www.codechef.com/COOK45/problems/SNAPE', 'https://www.codechef.com/COOK45/problems/TCP', 'https://www.codechef.com/COOK46/problems/ANUBGC', 'https://www.codechef.com/COOK46/problems/ANUBTT', 'https://www.codechef.com/COOK46/problems/ANUDTC', 'https://www.codechef.com/COOK46/problems/ANUSAR', 'https://www.codechef.com/COOK46/problems/ANUUND', 'https://www.codechef.com/COOK47/problems/FLAGS', 'https://www.codechef.com/COOK47/problems/KNPSK', 'https://www.codechef.com/COOK47/problems/PNTNG', 'https://www.codechef.com/COOK47/problems/WTHINGS', 'https://www.codechef.com/COOK48/problems/RRCOPY', 'https://www.codechef.com/COOK48/problems/RRDAG', 'https://www.codechef.com/COOK48/problems/RRFRNDS', 'https://www.codechef.com/COOK48/problems/RRSUM', 'https://www.codechef.com/COOK48/problems/RRTREE2', 'https://www.codechef.com/COOK49/problems/CNTDIGIT', 'https://www.codechef.com/COOK49/problems/PERMSUFF', 'https://www.codechef.com/COOK49/problems/SHOOTING', 'https://www.codechef.com/COOK49/problems/TREEGAME', 'https://www.codechef.com/COOK49/problems/TREERGB', 'https://www.codechef.com/COOK50/problems/GRID', 'https://www.codechef.com/COOK50/problems/SUBGCD', 'https://www.codechef.com/COOK50/problems/SUBLCM', 'https://www.codechef.com/COOK50/problems/UPDTREE', 'https://www.codechef.com/COOK50/problems/WW2', 'https://www.codechef.com/COOK51/problems/ANUARM', 'https://www.codechef.com/COOK51/problems/ANUMLA', 'https://www.codechef.com/COOK51/problems/ANUTDP', 'https://www.codechef.com/COOK51/problems/ANUWTA', 'https://www.codechef.com/COOK52/problems/BRACKETS', 'https://www.codechef.com/COOK52/problems/COVERING', 'https://www.codechef.com/COOK52/problems/LSTGRPH', 'https://www.codechef.com/COOK52/problems/MOSTDIST', 'https://www.codechef.com/COOK52/problems/PETERSEN', 'https://www.codechef.com/COOK53/problems/RRJAM', 'https://www.codechef.com/COOK53/problems/RRJOKE', 'https://www.codechef.com/COOK53/problems/RRMTRX2', 'https://www.codechef.com/COOK53/problems/RRPLAYER', 'https://www.codechef.com/COOK53/problems/RRSERVER', 'https://www.codechef.com/COOK54/problems/ANUAAA', 'https://www.codechef.com/COOK54/problems/ANUAHR', 'https://www.codechef.com/COOK54/problems/ANUBTG', 'https://www.codechef.com/COOK54/problems/ANURRZ', 'https://www.codechef.com/COOK54/problems/ANUTHM', 'https://www.codechef.com/COOK55/problems/FOMBRO', 'https://www.codechef.com/COOK55/problems/SPSHORT', 'https://www.codechef.com/COOK55/problems/SUBARRAY', 'https://www.codechef.com/COOK55/problems/TRISQ', 'https://www.codechef.com/COOK55/problems/WORLDCUP', 'https://www.codechef.com/COOK56/problems/DIVGOLD', 'https://www.codechef.com/COOK56/problems/KINT', 'https://www.codechef.com/COOK56/problems/STRAB', 'https://www.codechef.com/COOK56/problems/STRBIT', 'https://www.codechef.com/COOK56/problems/VISITALL', 'https://www.codechef.com/COOK57/problems/AGENTS', 'https://www.codechef.com/COOK57/problems/EQUALITY', 'https://www.codechef.com/COOK57/problems/LFIVES', 'https://www.codechef.com/COOK57/problems/TDRIVER', 'https://www.codechef.com/COOK57/problems/VCS', 'https://www.codechef.com/COOK58/problems/CFRTEST', 'https://www.codechef.com/COOK58/problems/DEVBDAY', 'https://www.codechef.com/COOK58/problems/MINPOLY', 'https://www.codechef.com/COOK58/problems/REARRSTR', 'https://www.codechef.com/COOK58/problems/XORGRID', 'https://www.codechef.com/COOK59/problems/ANKGAME', 'https://www.codechef.com/COOK59/problems/ANKMARKS', 'https://www.codechef.com/COOK59/problems/ANKNIM2', 'https://www.codechef.com/COOK59/problems/ANKPAREN', 'https://www.codechef.com/COOK59/problems/UTMOPR', 'https://www.codechef.com/COOK60/problems/COMB4SUM', 'https://www.codechef.com/COOK60/problems/COPS', 'https://www.codechef.com/COOK60/problems/KNODES', 'https://www.codechef.com/COOK60/problems/SEQTOWER', 'https://www.codechef.com/COOK60/problems/SUMPAIR', 'https://www.codechef.com/COOK61/problems/CARDLINE', 'https://www.codechef.com/COOK61/problems/DUALPAL', 'https://www.codechef.com/COOK61/problems/SEQLCS', 'https://www.codechef.com/COOK61/problems/TWOSTR', 'https://www.codechef.com/COOK61/problems/XORNUBER', 'https://www.codechef.com/COOK62/problems/FRGTNLNG', 'https://www.codechef.com/COOK62/problems/REIGN2', 'https://www.codechef.com/COOK62/problems/SPRNMBRS', 'https://www.codechef.com/COOK62/problems/STACKS', 'https://www.codechef.com/COOK63/problems/ASP', 'https://www.codechef.com/COOK63/problems/FSFSFS', 'https://www.codechef.com/COOK63/problems/PP', 'https://www.codechef.com/COOK63/problems/SLIS', 'https://www.codechef.com/COOK63/problems/STEM', 'https://www.codechef.com/COOK64/problems/SEAARASU', 'https://www.codechef.com/COOK64/problems/SEALINE', 'https://www.codechef.com/COOK64/problems/SEAPAIR', 'https://www.codechef.com/COOK64/problems/SEATR2', 'https://www.codechef.com/COOK65/problems/CHEFARRP', 'https://www.codechef.com/COOK65/problems/CHEFKLCS', 'https://www.codechef.com/COOK65/problems/CHEFQUE', 'https://www.codechef.com/COOK66/problems/CFTREE', 'https://www.codechef.com/COOK66/problems/DESTROY', 'https://www.codechef.com/COOK66/problems/FRUITS', 'https://www.codechef.com/COOK66/problems/MXSM', 'https://www.codechef.com/COOK66/problems/PALSTR', 'https://www.codechef.com/COOK67/problems/PPCTS', 'https://www.codechef.com/COOK67/problems/PPSUM', 'https://www.codechef.com/COOK67/problems/PUPPYPLM', 'https://www.codechef.com/COOK67/problems/TUZGMBR', 'https://www.codechef.com/COOK67/problems/TUZTRN', 'https://www.codechef.com/COOK68/problems/ALTARAY', 'https://www.codechef.com/COOK68/problems/KTHCON', 'https://www.codechef.com/COOK68/problems/NPLANAR', 'https://www.codechef.com/COOK68/problems/ONOZ', 'https://www.codechef.com/COOK68/problems/TWONIM', 'https://www.codechef.com/COOK69/problems/BINTREEQ', 'https://www.codechef.com/COOK69/problems/BITTWIST', 'https://www.codechef.com/COOK69/problems/LCPMAX', 'https://www.codechef.com/COOK69/problems/MOVIEWKN', 'https://www.codechef.com/COOK69/problems/ODDDIV', 'https://www.codechef.com/COOK70/problems/EURO', 'https://www.codechef.com/COOK70/problems/EZNO', 'https://www.codechef.com/COOK70/problems/MAZE', 'https://www.codechef.com/COOK70/problems/P1Z2S', 'https://www.codechef.com/COOK70/problems/TANDEM', 'https://www.codechef.com/COOK71/problems/ANDMIN', 'https://www.codechef.com/COOK71/problems/CAKECUT', 'https://www.codechef.com/COOK71/problems/CHEFLAND', 'https://www.codechef.com/COOK71/problems/RIGHTTRI', 'https://www.codechef.com/COOK71/problems/STICKS', 'https://www.codechef.com/COOK72/problems/CHEFCBA', 'https://www.codechef.com/COOK72/problems/CHEFFED', 'https://www.codechef.com/COOK72/problems/CHEFIHG', 'https://www.codechef.com/COOK72/problems/CHEFLKJ', 'https://www.codechef.com/COOK72/problems/CHEFONM', 'https://www.codechef.com/CORU2015/problems/HOLDIL', 'https://www.codechef.com/CORU2015/problems/LOVEA', 'https://www.codechef.com/CORU2015/problems/SNTYGE', 'https://www.codechef.com/CORU2015/problems/TGOC', 'https://www.codechef.com/COSE2015/problems/CSTRIKE1', 'https://www.codechef.com/COSE2015/problems/CSTRIKE2', 'https://www.codechef.com/COSE2015/problems/CSTRIKE3', 'https://www.codechef.com/COSE2015/problems/CSTRIKE4', 'https://www.codechef.com/COSE2015/problems/CSTRIKE5', 'https://www.codechef.com/COST2015/problems/GWBUT', 'https://www.codechef.com/COST2015/problems/PERFTIME', 'https://www.codechef.com/COST2015/problems/SFRNDS', 'https://www.codechef.com/COST2015/problems/TOFFEES', 'https://www.codechef.com/COST2015/problems/TWOFRNDS', 'https://www.codechef.com/COTG2015/problems/PSG01', 'https://www.codechef.com/COTG2015/problems/PSG02', 'https://www.codechef.com/COTG2015/problems/PSG03', 'https://www.codechef.com/COTG2015/problems/PSG04', 'https://www.codechef.com/COWH2016/problems/DHSPP', 'https://www.codechef.com/COWH2016/problems/INDPAK', 'https://www.codechef.com/COWH2016/problems/JADMST', 'https://www.codechef.com/COWH2016/problems/LVTRI', 'https://www.codechef.com/COWH2016/problems/WT20', 'https://www.codechef.com/COWO1601/problems/BW001', 'https://www.codechef.com/COWO1601/problems/DEB002', 'https://www.codechef.com/COWO1601/problems/SEG003', 'https://www.codechef.com/COWO1601/problems/SQUE1', 'https://www.codechef.com/COWO1601/problems/WAY004', 'https://www.codechef.com/COYA2016/problems/CDYPA01', 'https://www.codechef.com/COYA2016/problems/CDYPA02', 'https://www.codechef.com/COYA2016/problems/CDYPA03', 'https://www.codechef.com/COYA2016/problems/CDYPA04', 'https://www.codechef.com/COYA2016/problems/CDYPA05', 'https://www.codechef.com/COYA2016/problems/CDYPA06', 'https://www.codechef.com/COYA2016/problems/CDYPA07', 'https://www.codechef.com/COYA2016/problems/CDYPA08', 'https://www.codechef.com/COYA2016/problems/CDYPA09', 'https://www.codechef.com/COYA2016/problems/CDYPA10', 'https://www.codechef.com/CRES2016/problems/CRES102', 'https://www.codechef.com/CRES2016/problems/CRES103', 'https://www.codechef.com/CRES2016/problems/CRES104', 'https://www.codechef.com/CRES2016/problems/CRES105', 'https://www.codechef.com/CRNM2013/problems/CRNM1301', 'https://www.codechef.com/CRNM2013/problems/CRNM1302', 'https://www.codechef.com/CRNM2013/problems/CRNM1305', 'https://www.codechef.com/CRNM2014/problems/CRANATOM', 'https://www.codechef.com/CRNM2014/problems/CRANBROM', 'https://www.codechef.com/CRNM2014/problems/CRANCBOY', 'https://www.codechef.com/CRNM2014/problems/CRANCRD', 'https://www.codechef.com/CRNM2014/problems/CRANGIRL', 'https://www.codechef.com/CRNM2014/problems/CRANLOTT', 'https://www.codechef.com/CRNM2015/problems/CRNMBDRP', 'https://www.codechef.com/CRPT2013/problems/CRYPT01', 'https://www.codechef.com/CRPT2013/problems/CRYPT02', 'https://www.codechef.com/CRPT2013/problems/CRYPT03', 'https://www.codechef.com/CRPT2013/problems/CRYPT04', 'https://www.codechef.com/CRPT2013/problems/CRYPT05', 'https://www.codechef.com/CRPT2013/problems/CRYPT06', 'https://www.codechef.com/CRPT2013/problems/CRYPT07', 'https://www.codechef.com/CRPT2013/problems/CRYPT08', 'https://www.codechef.com/CRPT2013/problems/CRYPT09', 'https://www.codechef.com/CSZLPR15/problems/CZPR01', 'https://www.codechef.com/CSZLPR15/problems/CZPR02', 'https://www.codechef.com/CSZLPR15/problems/CZPR03', 'https://www.codechef.com/CSZLPR15/problems/CZPR04', 'https://www.codechef.com/CWAR2015/problems/CWAR01', 'https://www.codechef.com/CWAR2015/problems/CWAR02', 'https://www.codechef.com/CWAR2015/problems/CWAR03', 'https://www.codechef.com/CWAR2015/problems/CWAR04', 'https://www.codechef.com/CWAR2015/problems/CWAR06', 'https://www.codechef.com/CYPH2016/problems/ANOSTR', 'https://www.codechef.com/CYPH2016/problems/HITBIT', 'https://www.codechef.com/CYPH2016/problems/LOSTPW', 'https://www.codechef.com/DBYZ15/problems/DBYZ15A', 'https://www.codechef.com/DBYZ15/problems/DBYZ15C', 'https://www.codechef.com/DBYZ15/problems/DBYZ15F', 'https://www.codechef.com/DBYZ15/problems/DBYZ15T', 'https://www.codechef.com/DBYZ15/problems/STRMCH', 'https://www.codechef.com/DBYZ2013/problems/IITI09', 'https://www.codechef.com/DBYZ2013/problems/IITI11', 'https://www.codechef.com/DBYZ2014/problems/IITI13', 'https://www.codechef.com/DBYZ2014/problems/IITI14', 'https://www.codechef.com/DBYZ2014/problems/IITI15', 'https://www.codechef.com/DBYZ2014/problems/IITI16', 'https://www.codechef.com/DCOD2015/problems/CD1IT1', 'https://www.codechef.com/DCOD2015/problems/CD1IT2', 'https://www.codechef.com/DCOD2015/problems/CD1IT3', 'https://www.codechef.com/DCOD2015/problems/CD1IT4', 'https://www.codechef.com/DCOD2015/problems/CD1IT5', 'https://www.codechef.com/DEC13/problems/ALEXNUMB', 'https://www.codechef.com/DEC13/problems/CHODE', 'https://www.codechef.com/DEC13/problems/CUBE', 'https://www.codechef.com/DEC13/problems/DECORATE', 'https://www.codechef.com/DEC13/problems/MARBLEGF', 'https://www.codechef.com/DEC13/problems/QTREE6', 'https://www.codechef.com/DEC13/problems/REALSET', 'https://www.codechef.com/DEC13/problems/RECTQUER', 'https://www.codechef.com/DEC13/problems/REIGN', 'https://www.codechef.com/DEC13/problems/SMPAINT', 'https://www.codechef.com/DEC14/problems/CAPPLE', 'https://www.codechef.com/DEC14/problems/CHEFBR', 'https://www.codechef.com/DEC14/problems/CHEFPRES', 'https://www.codechef.com/DEC14/problems/DIVIDEN', 'https://www.codechef.com/DEC14/problems/GOODGAL', 'https://www.codechef.com/DEC14/problems/KALKI', 'https://www.codechef.com/DEC14/problems/RIN', 'https://www.codechef.com/DEC14/problems/SANSKAR', 'https://www.codechef.com/DEC14/problems/SEAGCD', 'https://www.codechef.com/DEC14/problems/XORSUB', 'https://www.codechef.com/DEC15/problems/CHCINEMA', 'https://www.codechef.com/DEC15/problems/CHEFFILT', 'https://www.codechef.com/DEC15/problems/CHEFGIRL', 'https://www.codechef.com/DEC15/problems/CHEFST', 'https://www.codechef.com/DEC15/problems/MGCHPERM', 'https://www.codechef.com/DEC15/problems/ORACLCS', 'https://www.codechef.com/DEC15/problems/PLANEDIV', 'https://www.codechef.com/DEC15/problems/SEADIV', 'https://www.codechef.com/DEC15/problems/TANKS', 'https://www.codechef.com/DEC15/problems/WAYPA', 'https://www.codechef.com/DECA2016/problems/DECA01', 'https://www.codechef.com/DECA2016/problems/DECA02', 'https://www.codechef.com/DECA2016/problems/DECA03', 'https://www.codechef.com/DECA2016/problems/DECA05', 'https://www.codechef.com/DIBZ2016/problems/DBZ16RS', 'https://www.codechef.com/DIBZ2016/problems/DBZ16SP', 'https://www.codechef.com/DIBZ2016/problems/DBZ16XOR', 'https://www.codechef.com/DIBZ2016/problems/DBZ16XS1', 'https://www.codechef.com/DIBZ2016/problems/DZ16HITE', 'https://www.codechef.com/DIBZ2016/problems/DZ16KNAP', 'https://www.codechef.com/DIBZ2016/problems/DZ16MAT', 'https://www.codechef.com/DIBZ2016/problems/DZ16SHOP', 'https://www.codechef.com/DIBZ2016/problems/DZ16SUBA', 'https://www.codechef.com/DIBZ2016/problems/DZ16TREE', 'https://www.codechef.com/DINP1501/problems/CHEFARR', 'https://www.codechef.com/DINP1501/problems/CHEFHILL', 'https://www.codechef.com/DINP1501/problems/CHEFMOON', 'https://www.codechef.com/DINP1501/problems/CHEFPOW', 'https://www.codechef.com/DINP1501/problems/CHEFROAD', 'https://www.codechef.com/DINP1501/problems/FIBGCD', 'https://www.codechef.com/DMNT2014/problems/MULFACT', 'https://www.codechef.com/DMNT2014/problems/ORPROFIT', 'https://www.codechef.com/DMNT2014/problems/REVADD', 'https://www.codechef.com/DMNT2014/problems/SNOWWAVE', 'https://www.codechef.com/DMNT2015/problems/AUSCRIC', 'https://www.codechef.com/DMNT2015/problems/BANKPASS', 'https://www.codechef.com/DMNT2015/problems/SNOWLIST', 'https://www.codechef.com/DMNT2015/problems/SNOWPRIM', 'https://www.codechef.com/DMNT2016/problems/DDCC', 'https://www.codechef.com/DMNT2016/problems/POFACT', 'https://www.codechef.com/DMNT2016/problems/POMUSE', 'https://www.codechef.com/DMNT2016/problems/SHISTR', 'https://www.codechef.com/DOEX2015/problems/CHBILL', 'https://www.codechef.com/DOEX2015/problems/DDCP', 'https://www.codechef.com/DOEX2015/problems/LETRI', 'https://www.codechef.com/DOEX2015/problems/VIVAL', 'https://www.codechef.com/DSEC2013/problems/PREE01', 'https://www.codechef.com/DSEC2013/problems/PREE02', 'https://www.codechef.com/DSEC2013/problems/PREE03', 'https://www.codechef.com/DSEC2013/problems/PREE04', 'https://www.codechef.com/DSEC2013/problems/PREE05', 'https://www.codechef.com/DSEC2013/problems/PREE06', 'https://www.codechef.com/DSPF2013/problems/DS15', 'https://www.codechef.com/DSPF2013/problems/DS18', 'https://www.codechef.com/DSPF2013/problems/DS19', 'https://www.codechef.com/DSPF2013/problems/DS5', 'https://www.codechef.com/DSPF2013/problems/DS7', 'https://www.codechef.com/DSPF2013/problems/DS8', 'https://www.codechef.com/DTCT2015/problems/ABSTR', 'https://www.codechef.com/DTCT2015/problems/SSEQ', 'https://www.codechef.com/DTCT2015/problems/SUPERCUP', 'https://www.codechef.com/DTCT2015/problems/VIRAT', 'https://www.codechef.com/DTCT2015/problems/WSERIES', 'https://www.codechef.com/DTMA2015/problems/CHEFHAR', 'https://www.codechef.com/DTMA2015/problems/CHEFU', 'https://www.codechef.com/DTMA2015/problems/LNUM', 'https://www.codechef.com/DTMA2015/problems/NGAME', 'https://www.codechef.com/DTMA2015/problems/RSTRING', 'https://www.codechef.com/EXBT2013/problems/EXEBIT01', 'https://www.codechef.com/EXBT2013/problems/EXEBIT02', 'https://www.codechef.com/EXBT2013/problems/EXEBIT03', 'https://www.codechef.com/EXBT2013/problems/EXEBIT04', 'https://www.codechef.com/EXBT2013/problems/EXEBIT05', 'https://www.codechef.com/EXCT2015/problems/HOBB', 'https://www.codechef.com/EXCT2015/problems/RACEWARS', 'https://www.codechef.com/EXCT2015/problems/TORR', 'https://www.codechef.com/EXCU2015/problems/BEAN', 'https://www.codechef.com/EXCU2015/problems/GOKU', 'https://www.codechef.com/EXCU2015/problems/JERRY', 'https://www.codechef.com/EXCU2015/problems/JHONNY', 'https://www.codechef.com/EXCU2015/problems/OLIVE', 'https://www.codechef.com/EXCU2015/problems/POKE', 'https://www.codechef.com/EXTE2015/problems/CHAOS', 'https://www.codechef.com/EXTE2015/problems/DDPROB', 'https://www.codechef.com/EXTE2015/problems/PALSUB', 'https://www.codechef.com/EXTE2015/problems/PMARK', 'https://www.codechef.com/EXTE2015/problems/RKIRON', 'https://www.codechef.com/FBFRW15/problems/FBFRW1', 'https://www.codechef.com/FBFRW15/problems/FBFRW2', 'https://www.codechef.com/FBFRW15/problems/FBFRW3', 'https://www.codechef.com/FEB13/problems/BUY1GET1', 'https://www.codechef.com/FEB13/problems/CLMBSTRS', 'https://www.codechef.com/FEB13/problems/EFFPAINT', 'https://www.codechef.com/FEB13/problems/LECARDS', 'https://www.codechef.com/FEB13/problems/MBOARD', 'https://www.codechef.com/FEB13/problems/ROC', 'https://www.codechef.com/FEB13/problems/TESTERS', 'https://www.codechef.com/FEB13/problems/TRIQUERY', 'https://www.codechef.com/FEB13/problems/WPLAY', 'https://www.codechef.com/FEB14/problems/CHSEQ22', 'https://www.codechef.com/FEB14/problems/COLARR', 'https://www.codechef.com/FEB14/problems/COT5', 'https://www.codechef.com/FEB14/problems/DAGCH', 'https://www.codechef.com/FEB14/problems/DRGHTS', 'https://www.codechef.com/FEB14/problems/LCPESY', 'https://www.codechef.com/FEB14/problems/LEMOVIE', 'https://www.codechef.com/FEB14/problems/LMATRIX2', 'https://www.codechef.com/FEB14/problems/SUBMIN', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'https://www.codechef.com/FEB15/problems/CHEFCH', 'https://www.codechef.com/FEB15/problems/CHEFEQ', 'https://www.codechef.com/FEB15/problems/CHEFGRPH', 'https://www.codechef.com/FEB15/problems/CHPUZZLE', 'https://www.codechef.com/FEB15/problems/CUSTPRIM', 'https://www.codechef.com/FEB15/problems/DEVLOCK', 'https://www.codechef.com/FEB15/problems/RANKLIST', 'https://www.codechef.com/FEB15/problems/STFM', 'https://www.codechef.com/FEB15/problems/STRQ', 'https://www.codechef.com/FEB15/problems/XRMTRX', 'https://www.codechef.com/FEB16/problems/CALLSCHE', 'https://www.codechef.com/FEB16/problems/CHEFDETE', 'https://www.codechef.com/FEB16/problems/CHEFJR', 'https://www.codechef.com/FEB16/problems/DEVLDISC', 'https://www.codechef.com/FEB16/problems/MTMXSUM', 'https://www.codechef.com/FEB16/problems/RECTLOVE', 'https://www.codechef.com/FEB16/problems/SEAPERMS', 'https://www.codechef.com/FEB16/problems/SEATL', 'https://www.codechef.com/FEB16/problems/STROPR', 'https://www.codechef.com/FEB16/problems/WRDSUM', 'https://www.codechef.com/FLFI2016/problems/CHKAR', 'https://www.codechef.com/FLFI2016/problems/CHKDST', 'https://www.codechef.com/FLFI2016/problems/CHKSEL', 'https://www.codechef.com/FLFI2016/problems/CHKSTR', 'https://www.codechef.com/FLFI2016/problems/CHKTRE', 'https://www.codechef.com/GOC2014/problems/GOC01', 'https://www.codechef.com/GOC2014/problems/GOC02', 'https://www.codechef.com/GOC2014/problems/GOC03', 'https://www.codechef.com/GOC2014/problems/GOC04', 'https://www.codechef.com/GOC2015/problems/ITM001', 'https://www.codechef.com/GOC2015/problems/ITM002', 'https://www.codechef.com/GOC2015/problems/ITM003', 'https://www.codechef.com/GOCD2015/problems/GOC201', 'https://www.codechef.com/GOCD2015/problems/GOC202', 'https://www.codechef.com/GOCD2015/problems/GOC203', 'https://www.codechef.com/GOCD2015/problems/GOC204', 'https://www.codechef.com/GOCD2015/problems/GOC205', 'https://www.codechef.com/GOOG2015/problems/GOOGOL01', 'https://www.codechef.com/GOOG2015/problems/GOOGOL03', 'https://www.codechef.com/GOOG2015/problems/GOOGOL04', 'https://www.codechef.com/GOOG2015/problems/GOOGOL05', 'https://www.codechef.com/HOCO2015/problems/MQRY', 'https://www.codechef.com/HOCO2015/problems/NOWAYS', 'https://www.codechef.com/IC32016/problems/CCFY', 'https://www.codechef.com/IC32016/problems/HBB', 'https://www.codechef.com/IC32016/problems/STD', 'https://www.codechef.com/IC32016/problems/TINT', 'https://www.codechef.com/ICOD2016/problems/ICODE16B', 'https://www.codechef.com/ICOD2016/problems/ICODE16C', 'https://www.codechef.com/ICOD2016/problems/ICODE16D', 'https://www.codechef.com/ICOD2016/problems/ICODE16E', 'https://www.codechef.com/ICOD2016/problems/ICODE16G', 'https://www.codechef.com/ICOD2016/problems/ICODE16H', 'https://www.codechef.com/ICOD2016/problems/ICODE16I', 'https://www.codechef.com/ICOD2016/problems/ICODE16J', 'https://www.codechef.com/ICOD2016/problems/ICODE16K', 'https://www.codechef.com/IGCD2015/problems/IGCDLIFT', 'https://www.codechef.com/IGCD2015/problems/IGCDMAT', 'https://www.codechef.com/IGCD2015/problems/IGCDMNKY', 'https://www.codechef.com/IGNS2014/problems/IGNUS14A', 'https://www.codechef.com/IGNS2014/problems/IGNUS14B', 'https://www.codechef.com/IGNS2014/problems/IGNUS14C', 'https://www.codechef.com/IGNS2014/problems/IGNUS14D', 'https://www.codechef.com/IGNS2014/problems/IGNUS14E', 'https://www.codechef.com/IGNU2015/problems/IGNUS15A', 'https://www.codechef.com/IGNU2015/problems/IGNUS15B', 'https://www.codechef.com/IGNU2015/problems/IGNUS15C', 'https://www.codechef.com/IGNU2015/problems/IGNUS15D', 'https://www.codechef.com/IGNU2015/problems/IGNUS15E', 'https://www.codechef.com/INPR1501/problems/CULPRO', 'https://www.codechef.com/INPR1501/problems/DOMSOL', 'https://www.codechef.com/INPR1502/problems/GLBEGA', 'https://www.codechef.com/INPR1502/problems/REACAR', 'https://www.codechef.com/INPR1503/problems/TWINRO', 'https://www.codechef.com/INPR1503/problems/VOGOZO', 'https://www.codechef.com/INSCRP13/problems/INSCTS1', 'https://www.codechef.com/INSCRP13/problems/INSCTS2', 'https://www.codechef.com/INSCRP13/problems/INSCTS3', 'https://www.codechef.com/INSCRP13/problems/INSCTS4', 'https://www.codechef.com/INSCRP13/problems/INSCTS5', 'https://www.codechef.com/INSM2013/problems/ELOHB', 'https://www.codechef.com/INSM2013/problems/INS01', 'https://www.codechef.com/INSM2013/problems/INS02', 'https://www.codechef.com/INSM2013/problems/INS03', 'https://www.codechef.com/INSM2013/problems/INS05', 'https://www.codechef.com/INSM2013/problems/JETSONS', 'https://www.codechef.com/INSM2013/problems/MONTU', 'https://www.codechef.com/INSM2014/problems/INSM01', 'https://www.codechef.com/INSM2014/problems/INSM02', 'https://www.codechef.com/INSM2014/problems/INSM03', 'https://www.codechef.com/INSM2014/problems/INSM04', 'https://www.codechef.com/INSM2014/problems/INSM06', 'https://www.codechef.com/INST2013/problems/I13BL', 'https://www.codechef.com/INST2013/problems/I13EAF', 'https://www.codechef.com/INST2013/problems/I13POF', 'https://www.codechef.com/INST2013/problems/I13TPG', 'https://www.codechef.com/INST2013/problems/I13TS', 'https://www.codechef.com/INTO2015/problems/DIRTBYTE', 'https://www.codechef.com/INTO2015/problems/FIBCODE', 'https://www.codechef.com/INTO2015/problems/MINTOXIA', 'https://www.codechef.com/INTO2015/problems/T9BYTE', 'https://www.codechef.com/INTO2015/problems/WEEKDAY', 'https://www.codechef.com/INVS2013/problems/CDZ1301', 'https://www.codechef.com/INVS2013/problems/CDZ1302', 'https://www.codechef.com/INVS2013/problems/CDZ1303', 'https://www.codechef.com/INVS2013/problems/CDZ1304', 'https://www.codechef.com/INVS2013/problems/CDZ1305', 'https://www.codechef.com/IOIPRAC/problems/INOI1201', 'https://www.codechef.com/IOIPRAC/problems/INOI1202', 'https://www.codechef.com/IOIPRAC/problems/INOI1301', 'https://www.codechef.com/IOIPRAC/problems/INOI1302', 'https://www.codechef.com/IOIPRAC/problems/INOI1401', 'https://www.codechef.com/IOIPRAC/problems/INOI1402', 'https://www.codechef.com/IOIPRAC/problems/INOI1501', 'https://www.codechef.com/IOIPRAC/problems/INOI1502', 'https://www.codechef.com/ITRA2016/problems/ITRA01', 'https://www.codechef.com/ITRA2016/problems/ITRA03', 'https://www.codechef.com/ITRA2016/problems/ITRA04', 'https://www.codechef.com/ITRA2016/problems/ITRA05', 'https://www.codechef.com/ITRA2016/problems/ITRA06', 'https://www.codechef.com/ITRA2016/problems/ITRA07', 'https://www.codechef.com/ITRA2016/problems/ITRA10', 'https://www.codechef.com/ITRA2016/problems/NPT', 'https://www.codechef.com/ITRX2016/problems/ITRIX16A', 'https://www.codechef.com/ITRX2016/problems/ITRIX16C', 'https://www.codechef.com/ITRX2016/problems/ITRIX16D', 'https://www.codechef.com/ITRX2016/problems/ITRIX16F', 'https://www.codechef.com/JAN13/problems/ANDOOR', 'https://www.codechef.com/JAN13/problems/CHEFHACK', 'https://www.codechef.com/JAN13/problems/CVOTE', 'https://www.codechef.com/JAN13/problems/DIVPRO', 'https://www.codechef.com/JAN13/problems/HOB', 'https://www.codechef.com/JAN13/problems/KILOWHAT', 'https://www.codechef.com/JAN13/problems/LEALCO', 'https://www.codechef.com/JAN13/problems/SALARY', 'https://www.codechef.com/JAN13/problems/THREEDIF', 'https://www.codechef.com/JAN14/problems/CNTDSETS', 'https://www.codechef.com/JAN14/problems/ERROR', 'https://www.codechef.com/JAN14/problems/FGFS', 'https://www.codechef.com/JAN14/problems/FRBSUM', 'https://www.codechef.com/JAN14/problems/METEORAK', 'https://www.codechef.com/JAN14/problems/MTRICK', 'https://www.codechef.com/JAN14/problems/PLZLYKME', 'https://www.codechef.com/JAN14/problems/SEAGRP', 'https://www.codechef.com/JAN14/problems/TAPAIR', 'https://www.codechef.com/JAN14/problems/TOURBUS', 'https://www.codechef.com/JAN15/problems/CHEFSTON', 'https://www.codechef.com/JAN15/problems/CLPERM', 'https://www.codechef.com/JAN15/problems/GCDQ', 'https://www.codechef.com/JAN15/problems/ONEKING', 'https://www.codechef.com/JAN15/problems/QSET', 'https://www.codechef.com/JAN15/problems/RANKA', 'https://www.codechef.com/JAN15/problems/SEALCM', 'https://www.codechef.com/JAN15/problems/SEAND2', 'https://www.codechef.com/JAN15/problems/SEAVOTE', 'https://www.codechef.com/JAN15/problems/XRQRS', 'https://www.codechef.com/JAN16/problems/ASTRD', 'https://www.codechef.com/JAN16/problems/CBALLS', 'https://www.codechef.com/JAN16/problems/CHEFTMA', 'https://www.codechef.com/JAN16/problems/CHINFL', 'https://www.codechef.com/JAN16/problems/CHMKTRPS', 'https://www.codechef.com/JAN16/problems/CYCLRACE', 'https://www.codechef.com/JAN16/problems/DEVPERF', 'https://www.codechef.com/JAN16/problems/DMCS', 'https://www.codechef.com/JAN16/problems/RGAME', 'https://www.codechef.com/JAN16/problems/SEAKAM', 'https://www.codechef.com/JULY13/problems/CHRECT', 'https://www.codechef.com/JULY13/problems/CIRKILL', 'https://www.codechef.com/JULY13/problems/FARASA', 'https://www.codechef.com/JULY13/problems/GALACTIK', 'https://www.codechef.com/JULY13/problems/KPRIME', 'https://www.codechef.com/JULY13/problems/MOU1H', 'https://www.codechef.com/JULY13/problems/NPIN', 'https://www.codechef.com/JULY13/problems/PROB', 'https://www.codechef.com/JULY13/problems/RIVPILE', 'https://www.codechef.com/JULY13/problems/SEASOR', 'https://www.codechef.com/JULY14/problems/CSUB', 'https://www.codechef.com/JULY14/problems/DISHOWN', 'https://www.codechef.com/JULY14/problems/FROGV', 'https://www.codechef.com/JULY14/problems/GERALD09', 'https://www.codechef.com/JULY14/problems/GNUM', 'https://www.codechef.com/JULY14/problems/LEPAINT', 'https://www.codechef.com/JULY14/problems/LUCKG', 'https://www.codechef.com/JULY14/problems/RETPO', 'https://www.codechef.com/JULY14/problems/SEAEQ', 'https://www.codechef.com/JULY14/problems/SGARDEN', 'https://www.codechef.com/JULY15/problems/ADDMUL', 'https://www.codechef.com/JULY15/problems/CHCUBE', 'https://www.codechef.com/JULY15/problems/EASYEX', 'https://www.codechef.com/JULY15/problems/EGBOBRD', 'https://www.codechef.com/JULY15/problems/HAMILG', 'https://www.codechef.com/JULY15/problems/LCKYST', 'https://www.codechef.com/JULY15/problems/MAXDIFFW', 'https://www.codechef.com/JULY15/problems/MCHEF', 'https://www.codechef.com/JULY15/problems/NTHCIR', 'https://www.codechef.com/JULY15/problems/SEAGM2', 'https://www.codechef.com/JULY16/problems/ALLPOLY', 'https://www.codechef.com/JULY16/problems/CHEFARC', 'https://www.codechef.com/JULY16/problems/CHEFELEC', 'https://www.codechef.com/JULY16/problems/CHEFPOL', 'https://www.codechef.com/JULY16/problems/CHEFTET', 'https://www.codechef.com/JULY16/problems/CHSGMNTS', 'https://www.codechef.com/JULY16/problems/CLUSSCHE', 'https://www.codechef.com/JULY16/problems/EGRANDR', 'https://www.codechef.com/JULY16/problems/POLYEVAL', 'https://www.codechef.com/JULY16/problems/WORKCHEF', 'https://www.codechef.com/JUNE13/problems/CHAORNOT', 'https://www.codechef.com/JUNE13/problems/COLLECT', 'https://www.codechef.com/JUNE13/problems/DELISH', 'https://www.codechef.com/JUNE13/problems/LAPIN', 'https://www.codechef.com/JUNE13/problems/LEMOUSE', 'https://www.codechef.com/JUNE13/problems/PERMUTE', 'https://www.codechef.com/JUNE13/problems/PREDICT', 'https://www.codechef.com/JUNE13/problems/SPMATRIX', 'https://www.codechef.com/JUNE13/problems/TKCONVEX', 'https://www.codechef.com/JUNE13/problems/WSTRING', 'https://www.codechef.com/JUNE14/problems/CHEFZOT', 'https://www.codechef.com/JUNE14/problems/DARTS', 'https://www.codechef.com/JUNE14/problems/DIGJUMP', 'https://www.codechef.com/JUNE14/problems/FORGETPW', 'https://www.codechef.com/JUNE14/problems/FUNC', 'https://www.codechef.com/JUNE14/problems/GUESS', 'https://www.codechef.com/JUNE14/problems/LEBLOCKS', 'https://www.codechef.com/JUNE14/problems/MAXPR', 'https://www.codechef.com/JUNE14/problems/SEAARC', 'https://www.codechef.com/JUNE14/problems/TWOCOMP', 'https://www.codechef.com/JUNE15/problems/ANCOIMP', 'https://www.codechef.com/JUNE15/problems/CBARG', 'https://www.codechef.com/JUNE15/problems/CHEFBOOK', 'https://www.codechef.com/JUNE15/problems/CHPLGNS', 'https://www.codechef.com/JUNE15/problems/CHSTR', 'https://www.codechef.com/JUNE15/problems/CONPOIN', 'https://www.codechef.com/JUNE15/problems/FRNDMTNG', 'https://www.codechef.com/JUNE15/problems/MOREFB', 'https://www.codechef.com/JUNE15/problems/SEADIVM', 'https://www.codechef.com/JUNE15/problems/STDYTAB', 'https://www.codechef.com/JUNE16/problems/BINOP', 'https://www.codechef.com/JUNE16/problems/CHCOINSG', 'https://www.codechef.com/JUNE16/problems/CHEARMY', 'https://www.codechef.com/JUNE16/problems/CHEFARK', 'https://www.codechef.com/JUNE16/problems/CHNWGM', 'https://www.codechef.com/JUNE16/problems/CHSQARR', 'https://www.codechef.com/JUNE16/problems/DEVARRAY', 'https://www.codechef.com/JUNE16/problems/FRJUMP', 'https://www.codechef.com/JUNE16/problems/MGCHGEOM', 'https://www.codechef.com/JUNE16/problems/SADPAIRS', 'https://www.codechef.com/JUNE18B/problems/TWOFL', 'https://www.codechef.com/JUNE18B/problems/WRKWAYS', 'https://www.codechef.com/KAN14ROL/problems/ACM14KN1', 'https://www.codechef.com/KAN14ROL/problems/ACM14KN3', 'https://www.codechef.com/KAN14ROL/problems/ACM14KN4', 'https://www.codechef.com/KDAT2013/problems/CHEFREST', 'https://www.codechef.com/KDAT2013/problems/CHEFSTR', 'https://www.codechef.com/KDAT2013/problems/CLUSTER', 'https://www.codechef.com/KDAT2013/problems/DEVILNUM', 'https://www.codechef.com/KDAT2013/problems/WGHTLIF', 'https://www.codechef.com/KG14ROL2/problems/ACM14KP2', 'https://www.codechef.com/KG14ROL2/problems/ACM14KP5', 'https://www.codechef.com/KGP14ROL/problems/ACM14KG2', 'https://www.codechef.com/KGP14ROL/problems/ACM14KG3', 'https://www.codechef.com/KJCC1501/problems/KJCC01', 'https://www.codechef.com/KJCC1501/problems/KJCC02', 'https://www.codechef.com/KJCC1501/problems/KJCC03', 'https://www.codechef.com/KJCC1501/problems/KJCC04', 'https://www.codechef.com/KJCC1501/problems/KJCC05', 'https://www.codechef.com/KJCC1501/problems/KJCC06', 'https://www.codechef.com/KJCC1501/problems/KJCC07', 'https://www.codechef.com/KJCC1501/problems/KJCC08', 'https://www.codechef.com/KJCC2015/problems/ALPHA', 'https://www.codechef.com/KJCC2015/problems/BERMUDA', 'https://www.codechef.com/KJCC2015/problems/LINEAR', 'https://www.codechef.com/KJCC2015/problems/LUCKY', 'https://www.codechef.com/KJCC2015/problems/PIZZA', 'https://www.codechef.com/KJCC2015/problems/WINNER', 'https://www.codechef.com/KJSP1602/problems/KJCC11', 'https://www.codechef.com/KJSP1602/problems/KJCC12', 'https://www.codechef.com/KJSP1602/problems/KJCC13', 'https://www.codechef.com/KJSP1602/problems/KJCC14', 'https://www.codechef.com/KJSP1602/problems/KJCC15', 'https://www.codechef.com/KJSP1602/problems/KJCC16', 'https://www.codechef.com/KJSP1602/problems/KJCC17', 'https://www.codechef.com/KOAT2015/problems/ALTRTREE', 'https://www.codechef.com/KOAT2015/problems/CYCENCR', 'https://www.codechef.com/KOAT2015/problems/KDATZERO', 'https://www.codechef.com/KOAT2015/problems/MASNUM', 'https://www.codechef.com/KOAT2015/problems/MASTRIAN', 'https://www.codechef.com/KOAT2015/problems/PINOCH1', 'https://www.codechef.com/KOAT2015/problems/PINOCH2', 'https://www.codechef.com/KOKT2015/problems/KOKT01', 'https://www.codechef.com/KOKT2015/problems/KOKT02', 'https://www.codechef.com/KOKT2015/problems/KOKT03', 'https://www.codechef.com/KOKT2015/problems/KOKT04', 'https://www.codechef.com/KOKT2015/problems/KOKT05', 'https://www.codechef.com/KOKT2015/problems/KOKT06', 'https://www.codechef.com/KOL15MOS/problems/KOL1504', 'https://www.codechef.com/KOL15MOS/problems/KOL1505', 'https://www.codechef.com/KOL15ROL/problems/KOL15A', 'https://www.codechef.com/KOL15ROL/problems/KOL15B', 'https://www.codechef.com/KOL15ROL/problems/KOL15C', 'https://www.codechef.com/KOPC2016/problems/K16B', 'https://www.codechef.com/KOPC2016/problems/K16C', 'https://www.codechef.com/KOPC2016/problems/K16E', 'https://www.codechef.com/KOPC2016/problems/K16F', 'https://www.codechef.com/KOPC2016/problems/K16G', 'https://www.codechef.com/KOPC2016/problems/K16I', 'https://www.codechef.com/KOPC2016/problems/K16J', 'https://www.codechef.com/KQPM2016/problems/KETFAST', 'https://www.codechef.com/KQPM2016/problems/KETSWAP', 'https://www.codechef.com/KRKS2015/problems/K15A', 'https://www.codechef.com/KRKS2015/problems/K15B', 'https://www.codechef.com/KRKS2015/problems/K15C', 'https://www.codechef.com/KRKS2015/problems/K15D', 'https://www.codechef.com/KRKS2015/problems/K15E', 'https://www.codechef.com/KRKS2015/problems/K15H', 'https://www.codechef.com/KRKS2015/problems/K15J', 'https://www.codechef.com/KRKS2015/problems/K15K', 'https://www.codechef.com/KTBC2015/problems/DELSUM', 'https://www.codechef.com/KTBC2015/problems/KETYES', 'https://www.codechef.com/LGCD2013/problems/LOGIC1', 'https://www.codechef.com/LGCD2013/problems/LOGIC2', 'https://www.codechef.com/LGCD2013/problems/LOGIC3', 'https://www.codechef.com/LGCD2013/problems/LOGIC4', 'https://www.codechef.com/LGCD2013/problems/LOGIC5', 'https://www.codechef.com/LGCD2013/problems/LOGIC6', 'https://www.codechef.com/LOCAPR16/problems/ACDEMY', 'https://www.codechef.com/LOCAPR16/problems/BLTOUR', 'https://www.codechef.com/LOCAPR16/problems/ROLLDEEP', 'https://www.codechef.com/LOCAPR16/problems/RUNNING', 'https://www.codechef.com/LOCAPR16/problems/VSQ2', 'https://www.codechef.com/LOCFEB16/problems/ACRONYM', 'https://www.codechef.com/LOCFEB16/problems/CHOCOLAT', 'https://www.codechef.com/LOCFEB16/problems/ICECREAM', 'https://www.codechef.com/LOCFEB16/problems/LOCRECT', 'https://www.codechef.com/LOCFEB16/problems/POLYDIFR', 'https://www.codechef.com/LOCJUL16/problems/CHEFSPCL', 'https://www.codechef.com/LOCJUL16/problems/FORALN', 'https://www.codechef.com/LOCJUL16/problems/LEVENSUB', 'https://www.codechef.com/LOCJUL16/problems/NUMHOLMS', 'https://www.codechef.com/LOCJUL16/problems/PROGCOMP', 'https://www.codechef.com/LOCJUN16/problems/CHEFLIQD', 'https://www.codechef.com/LOCJUN16/problems/CHSHIFU', 'https://www.codechef.com/LOCJUN16/problems/EXAMCOPY', 'https://www.codechef.com/LOCJUN16/problems/GOODNUMB', 'https://www.codechef.com/LOCJUN16/problems/MXSUBARR', 'https://www.codechef.com/LOCJUN16/problems/PEOPLOVE', 'https://www.codechef.com/LOCJUN16/problems/SKYSCR', 'https://www.codechef.com/LOCMAR16/problems/BTREAT', 'https://www.codechef.com/LOCMAR16/problems/CHEFREC', 'https://www.codechef.com/LOCMAR16/problems/FRAC', 'https://www.codechef.com/LOCMAR16/problems/LOCRPT', 'https://www.codechef.com/LOCMAR16/problems/MOD', 'https://www.codechef.com/LOCMAR16/problems/ROSES', 'https://www.codechef.com/LOCMAR16/problems/VSQ', 'https://www.codechef.com/LOCMAY16/problems/CRACE', 'https://www.codechef.com/LOCMAY16/problems/MDOSA', 'https://www.codechef.com/LOCMAY16/problems/POSTIT', 'https://www.codechef.com/LOCMAY16/problems/TEACHTR', 'https://www.codechef.com/LOCMAY16/problems/VSQ3', 'https://www.codechef.com/LTIME01/problems/COUPON', 'https://www.codechef.com/LTIME01/problems/GRTRIP', 'https://www.codechef.com/LTIME01/problems/NUMFACT', 'https://www.codechef.com/LTIME01/problems/TASTYD', 'https://www.codechef.com/LTIME02/problems/COINCHNG', 'https://www.codechef.com/LTIME02/problems/COOKFOOD', 'https://www.codechef.com/LTIME02/problems/TANGLED', 'https://www.codechef.com/LTIME02/problems/TRIPCOST', 'https://www.codechef.com/LTIME03/problems/AND', 'https://www.codechef.com/LTIME03/problems/MATRIX2', 'https://www.codechef.com/LTIME03/problems/ROUTES', 'https://www.codechef.com/LTIME03/problems/SORTING', 'https://www.codechef.com/LTIME04/problems/CHGIFT1', 'https://www.codechef.com/LTIME04/problems/CHITHH', 'https://www.codechef.com/LTIME04/problems/CHMAGIC', 'https://www.codechef.com/LTIME04/problems/CHXORR', 'https://www.codechef.com/LTIME05/problems/CHFQUEUE', 'https://www.codechef.com/LTIME05/problems/CHGLSTGT', 'https://www.codechef.com/LTIME05/problems/CNR', 'https://www.codechef.com/LTIME05/problems/EXPGAME', 'https://www.codechef.com/LTIME06/problems/LMA1', 'https://www.codechef.com/LTIME06/problems/NUMBERS', 'https://www.codechef.com/LTIME06/problems/PALINDR', 'https://www.codechef.com/LTIME07/problems/MIKE1', 'https://www.codechef.com/LTIME07/problems/MIKE2', 'https://www.codechef.com/LTIME07/problems/SFUNC', 'https://www.codechef.com/LTIME07/problems/SUBARR', 'https://www.codechef.com/LTIME08/problems/CHRL1', 'https://www.codechef.com/LTIME08/problems/CHRL2', 'https://www.codechef.com/LTIME08/problems/CHRL3', 'https://www.codechef.com/LTIME08/problems/CHRL4', 'https://www.codechef.com/LTIME09/problems/LFEB14B', 'https://www.codechef.com/LTIME09/problems/SEAD', 'https://www.codechef.com/LTIME09/problems/SEARRAYS', 'https://www.codechef.com/LTIME10/problems/CORRCHK', 'https://www.codechef.com/LTIME10/problems/SEQCOUNT', 'https://www.codechef.com/LTIME10/problems/SUBSGM', 'https://www.codechef.com/LTIME11/problems/KFORK', 'https://www.codechef.com/LTIME11/problems/MPROD', 'https://www.codechef.com/LTIME12/problems/APPROX2', 'https://www.codechef.com/LTIME12/problems/BNGAME', 'https://www.codechef.com/LTIME12/problems/DIVSUBS', 'https://www.codechef.com/LTIME13/problems/COPRIME3', 'https://www.codechef.com/LTIME13/problems/DYNAINV', 'https://www.codechef.com/LTIME13/problems/SMPAIR', 'https://www.codechef.com/LTIME13/problems/SUBQUERY', 'https://www.codechef.com/LTIME14/problems/TAAND', 'https://www.codechef.com/LTIME14/problems/TAEDITOR', 'https://www.codechef.com/LTIME14/problems/TALCA', 'https://www.codechef.com/LTIME14/problems/TASHIFT', 'https://www.codechef.com/LTIME15/problems/DRAGONST', 'https://www.codechef.com/LTIME15/problems/HHAL', 'https://www.codechef.com/LTIME15/problems/IRONISL', 'https://www.codechef.com/LTIME15/problems/WALL', 'https://www.codechef.com/LTIME16/problems/CHEFA', 'https://www.codechef.com/LTIME16/problems/CHEFB', 'https://www.codechef.com/LTIME16/problems/CHEFC', 'https://www.codechef.com/LTIME16/problems/CHEFD', 'https://www.codechef.com/LTIME17/problems/ANDTUPLE', 'https://www.codechef.com/LTIME17/problems/CSS2', 'https://www.codechef.com/LTIME17/problems/HEADBOB', 'https://www.codechef.com/LTIME17/problems/PHYSICS', 'https://www.codechef.com/LTIME18/problems/DIVIDE', 'https://www.codechef.com/LTIME18/problems/GRIDCONN', 'https://www.codechef.com/LTIME18/problems/WSC', 'https://www.codechef.com/LTIME18/problems/WSCAGAIN', 'https://www.codechef.com/LTIME19/problems/TADELIVE', 'https://www.codechef.com/LTIME19/problems/TAQTREE', 'https://www.codechef.com/LTIME19/problems/TASTRMAT', 'https://www.codechef.com/LTIME19/problems/TASUMOBC', 'https://www.codechef.com/LTIME20/problems/LCH15CD', 'https://www.codechef.com/LTIME20/problems/LCH15JAB', 'https://www.codechef.com/LTIME20/problems/LCH15JEF', 'https://www.codechef.com/LTIME20/problems/LCH15JGH', 'https://www.codechef.com/LTIME21/problems/FCUBE', 'https://www.codechef.com/LTIME21/problems/HLDOTS', 'https://www.codechef.com/LTIME21/problems/LUCKFOUR', 'https://www.codechef.com/LTIME21/problems/WPROB', 'https://www.codechef.com/LTIME22/problems/ASHIGIFT', 'https://www.codechef.com/LTIME22/problems/CHEFANUP', 'https://www.codechef.com/LTIME22/problems/PAINTBOX', 'https://www.codechef.com/LTIME22/problems/UNPAIR', 'https://www.codechef.com/LTIME23/problems/HCLEAN', 'https://www.codechef.com/LTIME23/problems/PALPROB', 'https://www.codechef.com/LTIME23/problems/TICKETS5', 'https://www.codechef.com/LTIME23/problems/XETF', 'https://www.codechef.com/LTIME24/problems/DEVUGRAP', 'https://www.codechef.com/LTIME24/problems/MAXMATCH', 'https://www.codechef.com/LTIME24/problems/MDIST', 'https://www.codechef.com/LTIME24/problems/NWAYS', 'https://www.codechef.com/LTIME25/problems/CHEFAOR', 'https://www.codechef.com/LTIME25/problems/CHEFAXR', 'https://www.codechef.com/LTIME25/problems/CHEFDTRE', 'https://www.codechef.com/LTIME25/problems/CHEFSTLT', 'https://www.codechef.com/LTIME26/problems/GDOG', 'https://www.codechef.com/LTIME26/problems/PUPPYCT', 'https://www.codechef.com/LTIME26/problems/PUPPYGCD', 'https://www.codechef.com/LTIME26/problems/PUPPYGM', 'https://www.codechef.com/LTIME27/problems/CLOST', 'https://www.codechef.com/LTIME27/problems/INVERT', 'https://www.codechef.com/LTIME27/problems/MAKPALIN', 'https://www.codechef.com/LTIME27/problems/MNMX', 'https://www.codechef.com/LTIME28/problems/COFFEE', 'https://www.codechef.com/LTIME28/problems/MANYLIST', 'https://www.codechef.com/LTIME28/problems/PATTMATC', 'https://www.codechef.com/LTIME28/problems/SPALNUM', 'https://www.codechef.com/LTIME29/problems/EMITL', 'https://www.codechef.com/LTIME29/problems/FSTSQ', 'https://www.codechef.com/LTIME29/problems/STDPRGS', 'https://www.codechef.com/LTIME29/problems/SVNTR', 'https://www.codechef.com/LTIME30/problems/BWCELL', 'https://www.codechef.com/LTIME30/problems/KCONNECT', 'https://www.codechef.com/LTIME30/problems/QMAXTRIX', 'https://www.codechef.com/LTIME30/problems/TREEPROD', 'https://www.codechef.com/LTIME31/problems/ABROADS', 'https://www.codechef.com/LTIME31/problems/DISTCODE', 'https://www.codechef.com/LTIME31/problems/EXNETWRK', 'https://www.codechef.com/LTIME31/problems/SEEDLING', 'https://www.codechef.com/LTIME32/problems/EXPALIN', 'https://www.codechef.com/LTIME32/problems/PEAKS', 'https://www.codechef.com/LTIME32/problems/TABLECOV', 'https://www.codechef.com/LTIME32/problems/TRIANGCL', 'https://www.codechef.com/LTIME33/problems/CHEFDOMA', 'https://www.codechef.com/LTIME33/problems/CHEFPOLY', 'https://www.codechef.com/LTIME33/problems/CHEFSOCK', 'https://www.codechef.com/LTIME33/problems/CHEFTIC', 'https://www.codechef.com/LTIME34/problems/ABABAABA', 'https://www.codechef.com/LTIME34/problems/ARRAYSUM', 'https://www.codechef.com/LTIME34/problems/PAIRCLST', 'https://www.codechef.com/LTIME34/problems/SIMPSTAT', 'https://www.codechef.com/LTIME35/problems/COLORING', 'https://www.codechef.com/LTIME35/problems/KSUM', 'https://www.codechef.com/LTIME35/problems/LABEL', 'https://www.codechef.com/LTIME35/problems/TRICOIN', 'https://www.codechef.com/LTIME36/problems/ACBALL', 'https://www.codechef.com/LTIME36/problems/AHWORK', 'https://www.codechef.com/LTIME36/problems/ALOST', 'https://www.codechef.com/LTIME36/problems/ASTRING', 'https://www.codechef.com/LTIME37/problems/LCOLLIS', 'https://www.codechef.com/LTIME37/problems/OMWG', 'https://www.codechef.com/LTIME37/problems/SQNUMBF', 'https://www.codechef.com/LTIME37/problems/TRAVTREE', 'https://www.codechef.com/LTIME58B/problems/ARRP', 'https://www.codechef.com/MARCH13/problems/APPROX', 'https://www.codechef.com/MARCH13/problems/FIRESC', 'https://www.codechef.com/MARCH13/problems/LECOINS', 'https://www.codechef.com/MARCH13/problems/LONGART', 'https://www.codechef.com/MARCH13/problems/MINESWPR', 'https://www.codechef.com/MARCH13/problems/RDF', 'https://www.codechef.com/MARCH13/problems/SUBTREE', 'https://www.codechef.com/MARCH13/problems/TOTR', 'https://www.codechef.com/MARCH13/problems/ZENCALC', 'https://www.codechef.com/MARCH14/problems/ANUGCD', 'https://www.codechef.com/MARCH14/problems/BINTOUR', 'https://www.codechef.com/MARCH14/problems/GERALD07', 'https://www.codechef.com/MARCH14/problems/MIKE3', 'https://www.codechef.com/MARCH14/problems/PROSUM', 'https://www.codechef.com/MARCH14/problems/SEASORT2', 'https://www.codechef.com/MARCH14/problems/SSTORY', 'https://www.codechef.com/MARCH14/problems/STREETTA', 'https://www.codechef.com/MARCH14/problems/TMSLT', 'https://www.codechef.com/MARCH14/problems/WALK', 'https://www.codechef.com/MARCH15/problems/CNOTE', 'https://www.codechef.com/MARCH15/problems/DEVCLASS', 'https://www.codechef.com/MARCH15/problems/EMBED', 'https://www.codechef.com/MARCH15/problems/MTRWY', 'https://www.codechef.com/MARCH15/problems/QCHEF', 'https://www.codechef.com/MARCH15/problems/RNG', 'https://www.codechef.com/MARCH15/problems/SEAPROAR', 'https://www.codechef.com/MARCH15/problems/SIGNWAVE', 'https://www.codechef.com/MARCH15/problems/STRSUB', 'https://www.codechef.com/MARCH15/problems/TREECNT2', 'https://www.codechef.com/MARCH16/problems/CHEFPC', 'https://www.codechef.com/MARCH16/problems/CHEFSPL', 'https://www.codechef.com/MARCH16/problems/CHNGSS', 'https://www.codechef.com/MARCH16/problems/FLOORDIS', 'https://www.codechef.com/MARCH16/problems/HBIRD', 'https://www.codechef.com/MARCH16/problems/MAXISUM', 'https://www.codechef.com/MARCH16/problems/PARITREE', 'https://www.codechef.com/MARCH16/problems/SEATSTR2', 'https://www.codechef.com/MARCH16/problems/STRPALIN', 'https://www.codechef.com/MARCH16/problems/TULIPS', 'https://www.codechef.com/MAY13/problems/CHALENGE', 'https://www.codechef.com/MAY13/problems/CPP', 'https://www.codechef.com/MAY13/problems/FTRIP', 'https://www.codechef.com/MAY13/problems/JUNONGF', 'https://www.codechef.com/MAY13/problems/MSTICK', 'https://www.codechef.com/MAY13/problems/NAME1', 'https://www.codechef.com/MAY13/problems/NAME2', 'https://www.codechef.com/MAY13/problems/QTREE', 'https://www.codechef.com/MAY13/problems/TREE', 'https://www.codechef.com/MAY13/problems/WITMATH', 'https://www.codechef.com/MAY14/problems/ANUMFS', 'https://www.codechef.com/MAY14/problems/CHEFBM', 'https://www.codechef.com/MAY14/problems/COMPILER', 'https://www.codechef.com/MAY14/problems/FUNAGP', 'https://www.codechef.com/MAY14/problems/LEBALONS', 'https://www.codechef.com/MAY14/problems/OJUMPS', 'https://www.codechef.com/MAY14/problems/RRSTONE', 'https://www.codechef.com/MAY14/problems/SEAGM', 'https://www.codechef.com/MAY14/problems/SEINC', 'https://www.codechef.com/MAY15/problems/CBAL', 'https://www.codechef.com/MAY15/problems/CHAPD', 'https://www.codechef.com/MAY15/problems/CHEFCK', 'https://www.codechef.com/MAY15/problems/CHEFRP', 'https://www.codechef.com/MAY15/problems/DEVHAND', 'https://www.codechef.com/MAY15/problems/DEVSTR', 'https://www.codechef.com/MAY15/problems/GRAPHCNT', 'https://www.codechef.com/MAY15/problems/SETDIFF', 'https://www.codechef.com/MAY15/problems/SEZ', 'https://www.codechef.com/MAY15/problems/SHOPPING', 'https://www.codechef.com/MAY16/problems/CHBLLS', 'https://www.codechef.com/MAY16/problems/CHEFMATH', 'https://www.codechef.com/MAY16/problems/CHEFNUM', 'https://www.codechef.com/MAY16/problems/CHEFSOC2', 'https://www.codechef.com/MAY16/problems/DISTNUM2', 'https://www.codechef.com/MAY16/problems/FORESTGA', 'https://www.codechef.com/MAY16/problems/LADDU', 'https://www.codechef.com/MAY16/problems/SEAGCD2', 'https://www.codechef.com/MAY16/problems/SHOP2', 'https://www.codechef.com/MAY16/problems/STARROAD', 'https://www.codechef.com/MDSW2015/problems/ALNUM', 'https://www.codechef.com/MDSW2015/problems/CDTHN', 'https://www.codechef.com/MDSW2015/problems/IDCLOVE', 'https://www.codechef.com/MDSW2015/problems/IDCMSG', 'https://www.codechef.com/MDSW2015/problems/JOV', 'https://www.codechef.com/MTHX2015/problems/CHOCS', 'https://www.codechef.com/MTHX2015/problems/FASTFUR', 'https://www.codechef.com/MTRX2014/problems/APPUZZLE', 'https://www.codechef.com/MTRX2014/problems/DATE', 'https://www.codechef.com/MTRX2014/problems/FLITKT', 'https://www.codechef.com/MTRX2014/problems/JERRYRUN', 'https://www.codechef.com/MTRX2014/problems/JERYFIBO', 'https://www.codechef.com/MTRX2014/problems/STIKGAME', 'https://www.codechef.com/MTRX2014/problems/TOMJER', 'https://www.codechef.com/NCC2014/problems/EXAM', 'https://www.codechef.com/NCC2014/problems/MULDIV', 'https://www.codechef.com/NCC2014/problems/QUAD', 'https://www.codechef.com/NCC2014/problems/RECT', 'https://www.codechef.com/NCC2014/problems/SNET', 'https://www.codechef.com/NCC2014/problems/SNOOKER', 'https://www.codechef.com/NCC2016/problems/NCC01', 'https://www.codechef.com/NCC2016/problems/NCC02', 'https://www.codechef.com/NCC2016/problems/NCC05', 'https://www.codechef.com/NCC2016/problems/NCC06', 'https://www.codechef.com/NCDFEB14/problems/MOVF', 'https://www.codechef.com/NCDFEB14/problems/MPROJ', 'https://www.codechef.com/NCDFEB14/problems/NFEB3', 'https://www.codechef.com/NCDFEB14/problems/NFEB4', 'https://www.codechef.com/NCDFEB14/problems/NFEB5', 'https://www.codechef.com/NCDRN13/problems/GPNY', 'https://www.codechef.com/NCDRN13/problems/SVHR', 'https://www.codechef.com/NCDRN13/problems/TPLOT', 'https://www.codechef.com/NCDRN13/problems/UVHST', 'https://www.codechef.com/NCDRN13/problems/UVTR', 'https://www.codechef.com/NEPR2015/problems/NEXUS00', 'https://www.codechef.com/NEPR2015/problems/NEXUS01', 'https://www.codechef.com/NEPR2015/problems/NEXUS02', 'https://www.codechef.com/NEPR2015/problems/NEXUS03', 'https://www.codechef.com/NOV13/problems/CHEFGM', 'https://www.codechef.com/NOV13/problems/GERALD2', 'https://www.codechef.com/NOV13/problems/JOHNY', 'https://www.codechef.com/NOV13/problems/MCHAIRS', 'https://www.codechef.com/NOV13/problems/MONOPLOY', 'https://www.codechef.com/NOV13/problems/PRETNUM', 'https://www.codechef.com/NOV13/problems/SDSQUARE', 'https://www.codechef.com/NOV13/problems/SEAVEC', 'https://www.codechef.com/NOV13/problems/SPOTWO', 'https://www.codechef.com/NOV14/problems/CHEFSEG', 'https://www.codechef.com/NOV14/problems/CHEFWORD', 'https://www.codechef.com/NOV14/problems/DISCHAR', 'https://www.codechef.com/NOV14/problems/FNCS', 'https://www.codechef.com/NOV14/problems/POWERMUL', 'https://www.codechef.com/NOV14/problems/PRPALN', 'https://www.codechef.com/NOV14/problems/RBTREE', 'https://www.codechef.com/NOV14/problems/SEAORD', 'https://www.codechef.com/NOV14/problems/SEAPERM2', 'https://www.codechef.com/NOV14/problems/SPELL', 'https://www.codechef.com/NOV15/problems/CHEFSHOP', 'https://www.codechef.com/NOV15/problems/CHSTAMP', 'https://www.codechef.com/NOV15/problems/EGRCAKE', 'https://www.codechef.com/NOV15/problems/KFUNC', 'https://www.codechef.com/NOV15/problems/REBTET', 'https://www.codechef.com/NOV15/problems/RECRECOV', 'https://www.codechef.com/NOV15/problems/SMPLSUM', 'https://www.codechef.com/NOV15/problems/TREEP', 'https://www.codechef.com/NOV15/problems/TREEPATH', 'https://www.codechef.com/NPLQ2017/problems/NPL1701A', 'https://www.codechef.com/NPLQ2017/problems/NPL1701B', 'https://www.codechef.com/NPLQ2018/problems/NPLQ18G', 'https://www.codechef.com/NPLTZ15/problems/BALSEQ', 'https://www.codechef.com/NPLTZ15/problems/FINDEX', 'https://www.codechef.com/NPLTZ15/problems/MISNUM', 'https://www.codechef.com/NPLTZ15/problems/MULMAGIC', 'https://www.codechef.com/NPLTZ15/problems/ROTARR', 'https://www.codechef.com/NPLTZ15/problems/SCORES', 'https://www.codechef.com/NUCD2015/problems/NU01', 'https://www.codechef.com/NUCD2015/problems/NU02', 'https://www.codechef.com/NUCD2015/problems/NU03', 'https://www.codechef.com/NUPNMR15/problems/NYUMAT', 'https://www.codechef.com/NUPNMR15/problems/NYUMTEA', 'https://www.codechef.com/NUPNMR15/problems/NYUPIZZA', 'https://www.codechef.com/NUPNMR15/problems/NYUPLOCK', 'https://www.codechef.com/NUPNMR15/problems/NYUSTONE', 'https://www.codechef.com/OCT13/problems/ARRGAME2', 'https://www.codechef.com/OCT13/problems/CAOS3', 'https://www.codechef.com/OCT13/problems/DEG3MAXT', 'https://www.codechef.com/OCT13/problems/EDSTGRID', 'https://www.codechef.com/OCT13/problems/FN', 'https://www.codechef.com/OCT13/problems/HELPLIRA', 'https://www.codechef.com/OCT13/problems/KMHAMHA', 'https://www.codechef.com/OCT13/problems/LEBAMBOO', 'https://www.codechef.com/OCT13/problems/MAANDI', 'https://www.codechef.com/OCT13/problems/SEATRSF', 'https://www.codechef.com/OCT14/problems/CHEFGR', 'https://www.codechef.com/OCT14/problems/CHEFPNT', 'https://www.codechef.com/OCT14/problems/CHEFSQUA', 'https://www.codechef.com/OCT14/problems/FATCHEF', 'https://www.codechef.com/OCT14/problems/PRLADDU', 'https://www.codechef.com/OCT14/problems/PRPOTION', 'https://www.codechef.com/OCT14/problems/QSTRING', 'https://www.codechef.com/OCT14/problems/SEATSR', 'https://www.codechef.com/OCT14/problems/TRIPS', 'https://www.codechef.com/OCT15/problems/ADTRI', 'https://www.codechef.com/OCT15/problems/EFFDELIV', 'https://www.codechef.com/OCT15/problems/JUMP', 'https://www.codechef.com/OCT15/problems/KSPHERES', 'https://www.codechef.com/OCT15/problems/LOTERY', 'https://www.codechef.com/OCT15/problems/MGCHGYM', 'https://www.codechef.com/OCT15/problems/PERSHFTS', 'https://www.codechef.com/OCT15/problems/SUBINC', 'https://www.codechef.com/OCT15/problems/TIMEASR', 'https://www.codechef.com/OCT15/problems/WDTBAM', 'https://www.codechef.com/ODCD2013/problems/LEBALLS', 'https://www.codechef.com/ODCD2013/problems/LEDISHES', 'https://www.codechef.com/ODCD2013/problems/LEMAGIK', 'https://www.codechef.com/ODCD2013/problems/LEMARKS', 'https://www.codechef.com/ODCD2013/problems/LEPROM', 'https://www.codechef.com/ODCD2013/problems/LETHOR', 'https://www.codechef.com/ODCD2013/problems/LEWINE', 'https://www.codechef.com/OVNT2012/problems/ALIENC', 'https://www.codechef.com/OVNT2012/problems/CHOCOAL', 'https://www.codechef.com/OVNT2012/problems/GNUMBER', 'https://www.codechef.com/OVNT2012/problems/SVEARTH', 'https://www.codechef.com/OVRN2013/problems/CATCH', 'https://www.codechef.com/OVRN2013/problems/RECRUIT', 'https://www.codechef.com/PRACTICE/problems/A1', 'https://www.codechef.com/PRACTICE/problems/A2', 'https://www.codechef.com/PRACTICE/problems/A3', 'https://www.codechef.com/PRACTICE/problems/A4', 'https://www.codechef.com/PRACTICE/problems/A6', 'https://www.codechef.com/PRACTICE/problems/ABA15E', 'https://www.codechef.com/PRACTICE/problems/ABA15F', 'https://www.codechef.com/PRACTICE/problems/ABA15G', 'https://www.codechef.com/PRACTICE/problems/ABABAABA', 'https://www.codechef.com/PRACTICE/problems/ABACUS01', 'https://www.codechef.com/PRACTICE/problems/ABACUS02', 'https://www.codechef.com/PRACTICE/problems/ABACUS03', 'https://www.codechef.com/PRACTICE/problems/ABACUS04', 'https://www.codechef.com/PRACTICE/problems/ABACUS05', 'https://www.codechef.com/PRACTICE/problems/ABACUS06', 'https://www.codechef.com/PRACTICE/problems/ABCSTR', 'https://www.codechef.com/PRACTICE/problems/ABHMNSTR', 'https://www.codechef.com/PRACTICE/problems/ABHSTR', 'https://www.codechef.com/PRACTICE/problems/ABROADS', 'https://www.codechef.com/PRACTICE/problems/ABSNUM', 'https://www.codechef.com/PRACTICE/problems/ABSTR', 'https://www.codechef.com/PRACTICE/problems/ACBALL', 'https://www.codechef.com/PRACTICE/problems/ACDEMY', 'https://www.codechef.com/PRACTICE/problems/ACM14AM1', 'https://www.codechef.com/PRACTICE/problems/ACM14AM2', 'https://www.codechef.com/PRACTICE/problems/ACM14AM3', 'https://www.codechef.com/PRACTICE/problems/ACM14AM4', 'https://www.codechef.com/PRACTICE/problems/ACM14AM5', 'https://www.codechef.com/PRACTICE/problems/ACM14KG1', 'https://www.codechef.com/PRACTICE/problems/ACM14KG2', 'https://www.codechef.com/PRACTICE/problems/ACM14KG3', 'https://www.codechef.com/PRACTICE/problems/ACM14KG5', 'https://www.codechef.com/PRACTICE/problems/ACM14KN1', 'https://www.codechef.com/PRACTICE/problems/ACM14KN2', 'https://www.codechef.com/PRACTICE/problems/ACM14KN3', 'https://www.codechef.com/PRACTICE/problems/ACM14KN4', 'https://www.codechef.com/PRACTICE/problems/ACM14KP1', 'https://www.codechef.com/PRACTICE/problems/ACM14KP2', 'https://www.codechef.com/PRACTICE/problems/ACM14KP3', 'https://www.codechef.com/PRACTICE/problems/ACM14KP5', 'https://www.codechef.com/PRACTICE/problems/ACMICL01', 'https://www.codechef.com/PRACTICE/problems/ACMICL02', 'https://www.codechef.com/PRACTICE/problems/ACMICL03', 'https://www.codechef.com/PRACTICE/problems/ACMICL1', 'https://www.codechef.com/PRACTICE/problems/ACMICL2', 'https://www.codechef.com/PRACTICE/problems/ACMICL3', 'https://www.codechef.com/PRACTICE/problems/ACMKANPB', 'https://www.codechef.com/PRACTICE/problems/ACMKANPD', 'https://www.codechef.com/PRACTICE/problems/ACRONYM', 'https://www.codechef.com/PRACTICE/problems/ACUGRAM', 'https://www.codechef.com/PRACTICE/problems/ACUGRAY', 'https://www.codechef.com/PRACTICE/problems/ACULIST', 'https://www.codechef.com/PRACTICE/problems/AD1', 'https://www.codechef.com/PRACTICE/problems/AD2', 'https://www.codechef.com/PRACTICE/problems/ADDFRAC', 'https://www.codechef.com/PRACTICE/problems/ADDMUL', 'https://www.codechef.com/PRACTICE/problems/ADIGIT', 'https://www.codechef.com/PRACTICE/problems/ADMAG', 'https://www.codechef.com/PRACTICE/problems/ADTRI', 'https://www.codechef.com/PRACTICE/problems/AEHASH', 'https://www.codechef.com/PRACTICE/problems/AFDMSD', 'https://www.codechef.com/PRACTICE/problems/AGRAPH', 'https://www.codechef.com/PRACTICE/problems/AHWORK', 'https://www.codechef.com/PRACTICE/problems/AKASHPRB', 'https://www.codechef.com/PRACTICE/problems/ALETHIO', 'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', 'https://www.codechef.com/PRACTICE/problems/ALFZ01', 'https://www.codechef.com/PRACTICE/problems/ALFZ03', 'https://www.codechef.com/PRACTICE/problems/ALFZ07', 'https://www.codechef.com/PRACTICE/problems/ALG06', 'https://www.codechef.com/PRACTICE/problems/ALG2N', 'https://www.codechef.com/PRACTICE/problems/ALGFACT', 'https://www.codechef.com/PRACTICE/problems/ALGPRX', 'https://www.codechef.com/PRACTICE/problems/ALIENC', 'https://www.codechef.com/PRACTICE/problems/ALK1104', 'https://www.codechef.com/PRACTICE/problems/ALK1105', 'https://www.codechef.com/PRACTICE/problems/ALK13A', 'https://www.codechef.com/PRACTICE/problems/ALK13C', 'https://www.codechef.com/PRACTICE/problems/ALK13G', 'https://www.codechef.com/PRACTICE/problems/ALLIANCE', 'https://www.codechef.com/PRACTICE/problems/ALLPOLY', 'https://www.codechef.com/PRACTICE/problems/ALMA01', 'https://www.codechef.com/PRACTICE/problems/ALMA02', 'https://www.codechef.com/PRACTICE/problems/ALMA03', 'https://www.codechef.com/PRACTICE/problems/ALMA04', 'https://www.codechef.com/PRACTICE/problems/ALMA05', 'https://www.codechef.com/PRACTICE/problems/ALMOSTPR', 'https://www.codechef.com/PRACTICE/problems/ALNUM', 'https://www.codechef.com/PRACTICE/problems/ALOST', 'https://www.codechef.com/PRACTICE/problems/ALPHA', 'https://www.codechef.com/PRACTICE/problems/ALTARAY', 'https://www.codechef.com/PRACTICE/problems/AMAEXPER', 'https://www.codechef.com/PRACTICE/problems/AMBDAY', 'https://www.codechef.com/PRACTICE/problems/AMCAM', 'https://www.codechef.com/PRACTICE/problems/AMCAS', 'https://www.codechef.com/PRACTICE/problems/AMCS01', 'https://www.codechef.com/PRACTICE/problems/AMCS03', 'https://www.codechef.com/PRACTICE/problems/AMCS04', 'https://www.codechef.com/PRACTICE/problems/AMCS05', 'https://www.codechef.com/PRACTICE/problems/AMCS06', 'https://www.codechef.com/PRACTICE/problems/AMIFIB', 'https://www.codechef.com/PRACTICE/problems/AMJMP', 'https://www.codechef.com/PRACTICE/problems/AMLPALIN', 'https://www.codechef.com/PRACTICE/problems/AMMEAT', 'https://www.codechef.com/PRACTICE/problems/AMMEAT2', 'https://www.codechef.com/PRACTICE/problems/AMR14B', 'https://www.codechef.com/PRACTICE/problems/AMR14C', 'https://www.codechef.com/PRACTICE/problems/AMR14D', 'https://www.codechef.com/PRACTICE/problems/AMR14E', 'https://www.codechef.com/PRACTICE/problems/AMR14F', 'https://www.codechef.com/PRACTICE/problems/AMR14G', 'https://www.codechef.com/PRACTICE/problems/AMR14H', 'https://www.codechef.com/PRACTICE/problems/AMR14I', 'https://www.codechef.com/PRACTICE/problems/AMR14J', 'https://www.codechef.com/PRACTICE/problems/AMR15A', 'https://www.codechef.com/PRACTICE/problems/AMR15B', 'https://www.codechef.com/PRACTICE/problems/AMR15C', 'https://www.codechef.com/PRACTICE/problems/AMR15D', 'https://www.codechef.com/PRACTICE/problems/AMR15E', 'https://www.codechef.com/PRACTICE/problems/AMROOK', 'https://www.codechef.com/PRACTICE/problems/AMSEQT', 'https://www.codechef.com/PRACTICE/problems/AMSGAME1', 'https://www.codechef.com/PRACTICE/problems/AMSGAME2', 'https://www.codechef.com/PRACTICE/problems/AMSS', 'https://www.codechef.com/PRACTICE/problems/AMSTRING', 'https://www.codechef.com/PRACTICE/problems/AMXOR', 'https://www.codechef.com/PRACTICE/problems/ANAGRAM', 'https://www.codechef.com/PRACTICE/problems/ANCOIMP', 'https://www.codechef.com/PRACTICE/problems/AND', 'https://www.codechef.com/PRACTICE/problems/ANDMAT', 'https://www.codechef.com/PRACTICE/problems/ANDMIN', 'https://www.codechef.com/PRACTICE/problems/ANDTUPLE', 'https://www.codechef.com/PRACTICE/problems/ANKGAME', 'https://www.codechef.com/PRACTICE/problems/ANKLEX', 'https://www.codechef.com/PRACTICE/problems/ANKMARKS', 'https://www.codechef.com/PRACTICE/problems/ANKNIM2', 'https://www.codechef.com/PRACTICE/problems/ANKPAL', 'https://www.codechef.com/PRACTICE/problems/ANKPAREN', 'https://www.codechef.com/PRACTICE/problems/ANUAAA', 'https://www.codechef.com/PRACTICE/problems/ANUAHR', 'https://www.codechef.com/PRACTICE/problems/ANUARM', 'https://www.codechef.com/PRACTICE/problems/ANUBGC', 'https://www.codechef.com/PRACTICE/problems/ANUBTG', 'https://www.codechef.com/PRACTICE/problems/ANUBTT', 'https://www.codechef.com/PRACTICE/problems/ANUCBC', 'https://www.codechef.com/PRACTICE/problems/ANUDTC', 'https://www.codechef.com/PRACTICE/problems/ANUGCD', 'https://www.codechef.com/PRACTICE/problems/ANUMFS', 'https://www.codechef.com/PRACTICE/problems/ANUMLA', 'https://www.codechef.com/PRACTICE/problems/ANURRZ', 'https://www.codechef.com/PRACTICE/problems/ANUSAR', 'https://www.codechef.com/PRACTICE/problems/ANUTDP', 'https://www.codechef.com/PRACTICE/problems/ANUTHM', 'https://www.codechef.com/PRACTICE/problems/ANUUND', 'https://www.codechef.com/PRACTICE/problems/ANUWTA', 'https://www.codechef.com/PRACTICE/problems/AOPN', 'https://www.codechef.com/PRACTICE/problems/AOU', 'https://www.codechef.com/PRACTICE/problems/APGE01', 'https://www.codechef.com/PRACTICE/problems/APGP', 'https://www.codechef.com/PRACTICE/problems/APOWB', 'https://www.codechef.com/PRACTICE/problems/APPROX', 'https://www.codechef.com/PRACTICE/problems/APPROX2', 'https://www.codechef.com/PRACTICE/problems/APPUZZLE', 'https://www.codechef.com/PRACTICE/problems/ARAN01', 'https://www.codechef.com/PRACTICE/problems/ARAN03', 'https://www.codechef.com/PRACTICE/problems/ARAN07', 'https://www.codechef.com/PRACTICE/problems/ARB', 'https://www.codechef.com/PRACTICE/problems/ARHN01', 'https://www.codechef.com/PRACTICE/problems/ARHN03', 'https://www.codechef.com/PRACTICE/problems/ARHN04', 'https://www.codechef.com/PRACTICE/problems/ARHN06', 'https://www.codechef.com/PRACTICE/problems/ARHN07', 'https://www.codechef.com/PRACTICE/problems/ARHN08', 'https://www.codechef.com/PRACTICE/problems/ARHN09', 'https://www.codechef.com/PRACTICE/problems/ARHN10', 'https://www.codechef.com/PRACTICE/problems/ARITHM', 'https://www.codechef.com/PRACTICE/problems/ARRANGE', 'https://www.codechef.com/PRACTICE/problems/ARRAY', 'https://www.codechef.com/PRACTICE/problems/ARRAYSUM', 'https://www.codechef.com/PRACTICE/problems/ARRAYTRM', 'https://www.codechef.com/PRACTICE/problems/ARRGAME2', 'https://www.codechef.com/PRACTICE/problems/ARRGM', 'https://www.codechef.com/PRACTICE/problems/ARTHMNCY', 'https://www.codechef.com/PRACTICE/problems/ASHIGIFT', 'https://www.codechef.com/PRACTICE/problems/ASP', 'https://www.codechef.com/PRACTICE/problems/ASTRD', 'https://www.codechef.com/PRACTICE/problems/ASTRGAME', 'https://www.codechef.com/PRACTICE/problems/ASTRING', 'https://www.codechef.com/PRACTICE/problems/ASYA1', 'https://www.codechef.com/PRACTICE/problems/ATKCTR', 'https://www.codechef.com/PRACTICE/problems/ATM5', 'https://www.codechef.com/PRACTICE/problems/ATOM', 'https://www.codechef.com/PRACTICE/problems/ATOMS', 'https://www.codechef.com/PRACTICE/problems/ATTIC', 'https://www.codechef.com/PRACTICE/problems/AUDH', 'https://www.codechef.com/PRACTICE/problems/AUEC', 'https://www.codechef.com/PRACTICE/problems/AUNX', 'https://www.codechef.com/PRACTICE/problems/AUPM', 'https://www.codechef.com/PRACTICE/problems/AUSAG', 'https://www.codechef.com/PRACTICE/problems/AUSASA', 'https://www.codechef.com/PRACTICE/problems/AUSCRIC', 'https://www.codechef.com/PRACTICE/problems/AUSF', 'https://www.codechef.com/PRACTICE/problems/AUTHEN', 'https://www.codechef.com/PRACTICE/problems/AVATAR', 'https://www.codechef.com/PRACTICE/problems/AVDWAST', 'https://www.codechef.com/PRACTICE/problems/AVGSCORE', 'https://www.codechef.com/PRACTICE/problems/AVISKR01', 'https://www.codechef.com/PRACTICE/problems/AVISKR02', 'https://www.codechef.com/PRACTICE/problems/AX04', 'https://www.codechef.com/PRACTICE/problems/AXR1P2', 'https://www.codechef.com/PRACTICE/problems/AXR1P3', 'https://www.codechef.com/PRACTICE/problems/AXR3P3', 'https://www.codechef.com/PRACTICE/problems/AXR3P4', 'https://www.codechef.com/PRACTICE/problems/B1', 'https://www.codechef.com/PRACTICE/problems/B5', 'https://www.codechef.com/PRACTICE/problems/BACO1601', 'https://www.codechef.com/PRACTICE/problems/BACO1602', 'https://www.codechef.com/PRACTICE/problems/BACO1603', 'https://www.codechef.com/PRACTICE/problems/BACO1604', 'https://www.codechef.com/PRACTICE/problems/BACO1605', 'https://www.codechef.com/PRACTICE/problems/BALLS', 'https://www.codechef.com/PRACTICE/problems/BALPRIME', 'https://www.codechef.com/PRACTICE/problems/BALSEQ', 'https://www.codechef.com/PRACTICE/problems/BANKPASS', 'https://www.codechef.com/PRACTICE/problems/BANROB', 'https://www.codechef.com/PRACTICE/problems/BAO', 'https://www.codechef.com/PRACTICE/problems/BASECHG', 'https://www.codechef.com/PRACTICE/problems/BBSYSTEM', 'https://www.codechef.com/PRACTICE/problems/BC1', 'https://www.codechef.com/PRACTICE/problems/BEATRICE', 'https://www.codechef.com/PRACTICE/problems/BEAUTY', 'https://www.codechef.com/PRACTICE/problems/BESTBATS', 'https://www.codechef.com/PRACTICE/problems/BEX', 'https://www.codechef.com/PRACTICE/problems/BGSM', 'https://www.codechef.com/PRACTICE/problems/BICO', 'https://www.codechef.com/PRACTICE/problems/BIGO01', 'https://www.codechef.com/PRACTICE/problems/BIGO02', 'https://www.codechef.com/PRACTICE/problems/BIGO03', 'https://www.codechef.com/PRACTICE/problems/BIGO04', 'https://www.codechef.com/PRACTICE/problems/BIGO05', 'https://www.codechef.com/PRACTICE/problems/BIGOF01', 'https://www.codechef.com/PRACTICE/problems/BIGOF02', 'https://www.codechef.com/PRACTICE/problems/BIGOF06', 'https://www.codechef.com/PRACTICE/problems/BIGP', 'https://www.codechef.com/PRACTICE/problems/BIGPIZA', 'https://www.codechef.com/PRACTICE/problems/BINGCD', 'https://www.codechef.com/PRACTICE/problems/BINOP', 'https://www.codechef.com/PRACTICE/problems/BINTOUR', 'https://www.codechef.com/PRACTICE/problems/BINTREE', 'https://www.codechef.com/PRACTICE/problems/BINTREEQ', 'https://www.codechef.com/PRACTICE/problems/BIPIN3', 'https://www.codechef.com/PRACTICE/problems/BISHOP', 'https://www.codechef.com/PRACTICE/problems/BIT', 'https://www.codechef.com/PRACTICE/problems/BIT1501', 'https://www.codechef.com/PRACTICE/problems/BIT1502', 'https://www.codechef.com/PRACTICE/problems/BIT1506', 'https://www.codechef.com/PRACTICE/problems/BITCJ1', 'https://www.codechef.com/PRACTICE/problems/BITCJ4', 'https://www.codechef.com/PRACTICE/problems/BITCJ5', 'https://www.codechef.com/PRACTICE/problems/BITS02', 'https://www.codechef.com/PRACTICE/problems/BITS3', 'https://www.codechef.com/PRACTICE/problems/BITS4', 'https://www.codechef.com/PRACTICE/problems/BITTWIST', 'https://www.codechef.com/PRACTICE/problems/BLDNGS', 'https://www.codechef.com/PRACTICE/problems/BLTOUR', 'https://www.codechef.com/PRACTICE/problems/BNGAME', 'https://www.codechef.com/PRACTICE/problems/BOGOSORT', 'https://www.codechef.com/PRACTICE/problems/BOTM', 'https://www.codechef.com/PRACTICE/problems/BPHC03', 'https://www.codechef.com/PRACTICE/problems/BRACKETS', 'https://www.codechef.com/PRACTICE/problems/BRCKMT', 'https://www.codechef.com/PRACTICE/problems/BRCKTSRM', 'https://www.codechef.com/PRACTICE/problems/BROKPHON', 'https://www.codechef.com/PRACTICE/problems/BST', 'https://www.codechef.com/PRACTICE/problems/BSTCLASS', 'https://www.codechef.com/PRACTICE/problems/BSTRLCP', 'https://www.codechef.com/PRACTICE/problems/BTCD14F', 'https://www.codechef.com/PRACTICE/problems/BTCD1503', 'https://www.codechef.com/PRACTICE/problems/BTCD1504', 'https://www.codechef.com/PRACTICE/problems/BTCD1506', 'https://www.codechef.com/PRACTICE/problems/BTCD1510', 'https://www.codechef.com/PRACTICE/problems/BTCO1611', 'https://www.codechef.com/PRACTICE/problems/BTCODE_A', 'https://www.codechef.com/PRACTICE/problems/BTCODE_G', 'https://www.codechef.com/PRACTICE/problems/BTREAT', 'https://www.codechef.com/PRACTICE/problems/BTREEKK', 'https://www.codechef.com/PRACTICE/problems/BUGATACK', 'https://www.codechef.com/PRACTICE/problems/BUTTONS', 'https://www.codechef.com/PRACTICE/problems/BUY1GET1', 'https://www.codechef.com/PRACTICE/problems/BUYING2', 'https://www.codechef.com/PRACTICE/problems/BW001', 'https://www.codechef.com/PRACTICE/problems/BWALL', 'https://www.codechef.com/PRACTICE/problems/BWCELL', 'https://www.codechef.com/PRACTICE/problems/BWGAME', 'https://www.codechef.com/PRACTICE/problems/BWINDOWS', 'https://www.codechef.com/PRACTICE/problems/BWKNIGHT', 'https://www.codechef.com/PRACTICE/problems/BWTREE', 'https://www.codechef.com/PRACTICE/problems/BYCD1602', 'https://www.codechef.com/PRACTICE/problems/BYCD1606', 'https://www.codechef.com/PRACTICE/problems/BYCD1607', 'https://www.codechef.com/PRACTICE/problems/BYTEISLE', 'https://www.codechef.com/PRACTICE/problems/BYTES1', 'https://www.codechef.com/PRACTICE/problems/BYTES11', 'https://www.codechef.com/PRACTICE/problems/BYTES12', 'https://www.codechef.com/PRACTICE/problems/BYTES13', 'https://www.codechef.com/PRACTICE/problems/BYTES14', 'https://www.codechef.com/PRACTICE/problems/BYTES15', 'https://www.codechef.com/PRACTICE/problems/BYTES3', 'https://www.codechef.com/PRACTICE/problems/BYTES4', 'https://www.codechef.com/PRACTICE/problems/BYTES6', 'https://www.codechef.com/PRACTICE/problems/BYTESA', 'https://www.codechef.com/PRACTICE/problems/BYTESE', 'https://www.codechef.com/PRACTICE/problems/C2', 'https://www.codechef.com/PRACTICE/problems/C3', 'https://www.codechef.com/PRACTICE/problems/C3002', 'https://www.codechef.com/PRACTICE/problems/C3003', 'https://www.codechef.com/PRACTICE/problems/C3004', 'https://www.codechef.com/PRACTICE/problems/C5', 'https://www.codechef.com/PRACTICE/problems/CAKE1AM', 'https://www.codechef.com/PRACTICE/problems/CAKECUT', 'https://www.codechef.com/PRACTICE/problems/CAKEDOOM', 'https://www.codechef.com/PRACTICE/problems/CALLSCHE', 'https://www.codechef.com/PRACTICE/problems/CAMERAS', 'https://www.codechef.com/PRACTICE/problems/CAMERAS2', 'https://www.codechef.com/PRACTICE/problems/CANDLE', 'https://www.codechef.com/PRACTICE/problems/CANDYGAM', 'https://www.codechef.com/PRACTICE/problems/CAOS1', 'https://www.codechef.com/PRACTICE/problems/CAOS2', 'https://www.codechef.com/PRACTICE/problems/CAOS3', 'https://www.codechef.com/PRACTICE/problems/CAPPLE', 'https://www.codechef.com/PRACTICE/problems/CARCOUNT', 'https://www.codechef.com/PRACTICE/problems/CARDINAL', 'https://www.codechef.com/PRACTICE/problems/CARDLINE', 'https://www.codechef.com/PRACTICE/problems/CARDSHUF', 'https://www.codechef.com/PRACTICE/problems/CARLOS', 'https://www.codechef.com/PRACTICE/problems/CARVANS', 'https://www.codechef.com/PRACTICE/problems/CATCH', 'https://www.codechef.com/PRACTICE/problems/CB01', 'https://www.codechef.com/PRACTICE/problems/CB02', 'https://www.codechef.com/PRACTICE/problems/CB03', 'https://www.codechef.com/PRACTICE/problems/CB04', 'https://www.codechef.com/PRACTICE/problems/CB07', 'https://www.codechef.com/PRACTICE/problems/CB1', 'https://www.codechef.com/PRACTICE/problems/CB2', 'https://www.codechef.com/PRACTICE/problems/CB20Q5', 'https://www.codechef.com/PRACTICE/problems/CB3', 'https://www.codechef.com/PRACTICE/problems/CB4', 'https://www.codechef.com/PRACTICE/problems/CBAL', 'https://www.codechef.com/PRACTICE/problems/CBALLS', 'https://www.codechef.com/PRACTICE/problems/CBARG', 'https://www.codechef.com/PRACTICE/problems/CBARS', 'https://www.codechef.com/PRACTICE/problems/CBLOCKS', 'https://www.codechef.com/PRACTICE/problems/CC', 'https://www.codechef.com/PRACTICE/problems/CC2', 'https://www.codechef.com/PRACTICE/problems/CCAURCC5', 'https://www.codechef.com/PRACTICE/problems/CCCB03', 'https://www.codechef.com/PRACTICE/problems/CCCS1', 'https://www.codechef.com/PRACTICE/problems/CCCS2', 'https://www.codechef.com/PRACTICE/problems/CD101', 'https://www.codechef.com/PRACTICE/problems/CD1IT1', 'https://www.codechef.com/PRACTICE/problems/CD1IT2', 'https://www.codechef.com/PRACTICE/problems/CD1IT3', 'https://www.codechef.com/PRACTICE/problems/CD1IT4', 'https://www.codechef.com/PRACTICE/problems/CD1IT5', 'https://www.codechef.com/PRACTICE/problems/CD202', 'https://www.codechef.com/PRACTICE/problems/CDBSTR05', 'https://www.codechef.com/PRACTICE/problems/CDBSTR07', 'https://www.codechef.com/PRACTICE/problems/CDBSTR2', 'https://www.codechef.com/PRACTICE/problems/CDBSTR7', 'https://www.codechef.com/PRACTICE/problems/CDCR15_1', 'https://www.codechef.com/PRACTICE/problems/CDFX01', 'https://www.codechef.com/PRACTICE/problems/CDFX02', 'https://www.codechef.com/PRACTICE/problems/CDFX03', 'https://www.codechef.com/PRACTICE/problems/CDFX04', 'https://www.codechef.com/PRACTICE/problems/CDGO1603', 'https://www.codechef.com/PRACTICE/problems/CDM01', 'https://www.codechef.com/PRACTICE/problems/CDM02', 'https://www.codechef.com/PRACTICE/problems/CDM03', 'https://www.codechef.com/PRACTICE/problems/CDME03', 'https://www.codechef.com/PRACTICE/problems/CDMN01', 'https://www.codechef.com/PRACTICE/problems/CDMN03', 'https://www.codechef.com/PRACTICE/problems/CDMN05', 'https://www.codechef.com/PRACTICE/problems/CDMN1601', 'https://www.codechef.com/PRACTICE/problems/CDMN1602', 'https://www.codechef.com/PRACTICE/problems/CDMT06', 'https://www.codechef.com/PRACTICE/problems/CDMU02', 'https://www.codechef.com/PRACTICE/problems/CDOL01', 'https://www.codechef.com/PRACTICE/problems/CDOLP1', 'https://www.codechef.com/PRACTICE/problems/CDOLP3', 'https://www.codechef.com/PRACTICE/problems/CDOUT1', 'https://www.codechef.com/PRACTICE/problems/CDOUT2', 'https://www.codechef.com/PRACTICE/problems/CDOUT5', 'https://www.codechef.com/PRACTICE/problems/CDPR16C', 'https://www.codechef.com/PRACTICE/problems/CDQU03', 'https://www.codechef.com/PRACTICE/problems/CDQU04', 'https://www.codechef.com/PRACTICE/problems/CDQU06', 'https://www.codechef.com/PRACTICE/problems/CDQU09', 'https://www.codechef.com/PRACTICE/problems/CDQU1', 'https://www.codechef.com/PRACTICE/problems/CDQU2', 'https://www.codechef.com/PRACTICE/problems/CDQU3', 'https://www.codechef.com/PRACTICE/problems/CDQU4', 'https://www.codechef.com/PRACTICE/problems/CDQU5', 'https://www.codechef.com/PRACTICE/problems/CDS003', 'https://www.codechef.com/PRACTICE/problems/CDSE03', 'https://www.codechef.com/PRACTICE/problems/CDSE04', 'https://www.codechef.com/PRACTICE/problems/CDSE06', 'https://www.codechef.com/PRACTICE/problems/CDSW151', 'https://www.codechef.com/PRACTICE/problems/CDSW152', 'https://www.codechef.com/PRACTICE/problems/CDTHN', 'https://www.codechef.com/PRACTICE/problems/CDVA1502', 'https://www.codechef.com/PRACTICE/problems/CDVA1504', 'https://www.codechef.com/PRACTICE/problems/CDVA1507', 'https://www.codechef.com/PRACTICE/problems/CDVA1510', 'https://www.codechef.com/PRACTICE/problems/CDVA1601', 'https://www.codechef.com/PRACTICE/problems/CDVA1603', 'https://www.codechef.com/PRACTICE/problems/CDVA1604', 'https://www.codechef.com/PRACTICE/problems/CDVA1605', 'https://www.codechef.com/PRACTICE/problems/CDVA1607', 'https://www.codechef.com/PRACTICE/problems/CDWRS01', 'https://www.codechef.com/PRACTICE/problems/CDWRS05', 'https://www.codechef.com/PRACTICE/problems/CDWRS06', 'https://www.codechef.com/PRACTICE/problems/CDXLRG', 'https://www.codechef.com/PRACTICE/problems/CDXM1', 'https://www.codechef.com/PRACTICE/problems/CDXM2', 'https://www.codechef.com/PRACTICE/problems/CDXM3', 'https://www.codechef.com/PRACTICE/problems/CDXM4', 'https://www.codechef.com/PRACTICE/problems/CDXOPTM', 'https://www.codechef.com/PRACTICE/problems/CDYPA01', 'https://www.codechef.com/PRACTICE/problems/CDYPA02', 'https://www.codechef.com/PRACTICE/problems/CDYPA04', 'https://www.codechef.com/PRACTICE/problems/CDYPA06', 'https://www.codechef.com/PRACTICE/problems/CDYPA10', 'https://www.codechef.com/PRACTICE/problems/CDZ1301', 'https://www.codechef.com/PRACTICE/problems/CDZ14B', 'https://www.codechef.com/PRACTICE/problems/CDZ14C', 'https://www.codechef.com/PRACTICE/problems/CDZ14D', 'https://www.codechef.com/PRACTICE/problems/CDZ14E', 'https://www.codechef.com/PRACTICE/problems/CE01', 'https://www.codechef.com/PRACTICE/problems/CE02', 'https://www.codechef.com/PRACTICE/problems/CE06', 'https://www.codechef.com/PRACTICE/problems/CE07', 'https://www.codechef.com/PRACTICE/problems/CEANGR', 'https://www.codechef.com/PRACTICE/problems/CELZJS', 'https://www.codechef.com/PRACTICE/problems/CENCODE', 'https://www.codechef.com/PRACTICE/problems/CEXP04', 'https://www.codechef.com/PRACTICE/problems/CF203', 'https://www.codechef.com/PRACTICE/problems/CF204', 'https://www.codechef.com/PRACTICE/problems/CF210', 'https://www.codechef.com/PRACTICE/problems/CF211', 'https://www.codechef.com/PRACTICE/problems/CF212', 'https://www.codechef.com/PRACTICE/problems/CF224', 'https://www.codechef.com/PRACTICE/problems/CF226', 'https://www.codechef.com/PRACTICE/problems/CFR101', 'https://www.codechef.com/PRACTICE/problems/CFR102', 'https://www.codechef.com/PRACTICE/problems/CFR103', 'https://www.codechef.com/PRACTICE/problems/CFR203', 'https://www.codechef.com/PRACTICE/problems/CFR301', 'https://www.codechef.com/PRACTICE/problems/CFR303', 'https://www.codechef.com/PRACTICE/problems/CFR304', 'https://www.codechef.com/PRACTICE/problems/CFRTEST', 'https://www.codechef.com/PRACTICE/problems/CFTREE', 'https://www.codechef.com/PRACTICE/problems/CG02', 'https://www.codechef.com/PRACTICE/problems/CHALENGE', 'https://www.codechef.com/PRACTICE/problems/CHAORNOT', 'https://www.codechef.com/PRACTICE/problems/CHAOS', 'https://www.codechef.com/PRACTICE/problems/CHAPD', 'https://www.codechef.com/PRACTICE/problems/CHBILL', 'https://www.codechef.com/PRACTICE/problems/CHBLLNS', 'https://www.codechef.com/PRACTICE/problems/CHBLLS', 'https://www.codechef.com/PRACTICE/problems/CHCINEMA', 'https://www.codechef.com/PRACTICE/problems/CHCOINSG', 'https://www.codechef.com/PRACTICE/problems/CHCOM', 'https://www.codechef.com/PRACTICE/problems/CHCUBE', 'https://www.codechef.com/PRACTICE/problems/CHEARMY', 'https://www.codechef.com/PRACTICE/problems/CHEFA', 'https://www.codechef.com/PRACTICE/problems/CHEFANUP', 'https://www.codechef.com/PRACTICE/problems/CHEFAOR', 'https://www.codechef.com/PRACTICE/problems/CHEFARC', 'https://www.codechef.com/PRACTICE/problems/CHEFARK', 'https://www.codechef.com/PRACTICE/problems/CHEFARR', 'https://www.codechef.com/PRACTICE/problems/CHEFARRP', 'https://www.codechef.com/PRACTICE/problems/CHEFAXR', 'https://www.codechef.com/PRACTICE/problems/CHEFB', 'https://www.codechef.com/PRACTICE/problems/CHEFBM', 'https://www.codechef.com/PRACTICE/problems/CHEFBR', 'https://www.codechef.com/PRACTICE/problems/CHEFBRO', 'https://www.codechef.com/PRACTICE/problems/CHEFBWN', 'https://www.codechef.com/PRACTICE/problems/CHEFC', 'https://www.codechef.com/PRACTICE/problems/CHEFCBA', 'https://www.codechef.com/PRACTICE/problems/CHEFCH', 'https://www.codechef.com/PRACTICE/problems/CHEFCK', 'https://www.codechef.com/PRACTICE/problems/CHEFD', 'https://www.codechef.com/PRACTICE/problems/CHEFDETE', 'https://www.codechef.com/PRACTICE/problems/CHEFDOMA', 'https://www.codechef.com/PRACTICE/problems/CHEFDTRE', 'https://www.codechef.com/PRACTICE/problems/CHEFELEC', 'https://www.codechef.com/PRACTICE/problems/CHEFEQ', 'https://www.codechef.com/PRACTICE/problems/CHEFFED', 'https://www.codechef.com/PRACTICE/problems/CHEFFILT', 'https://www.codechef.com/PRACTICE/problems/CHEFGAME', 'https://www.codechef.com/PRACTICE/problems/CHEFGARD', 'https://www.codechef.com/PRACTICE/problems/CHEFGIFT', 'https://www.codechef.com/PRACTICE/problems/CHEFGIRL', 'https://www.codechef.com/PRACTICE/problems/CHEFGM', 'https://www.codechef.com/PRACTICE/problems/CHEFGR', 'https://www.codechef.com/PRACTICE/problems/CHEFGRPH', 'https://www.codechef.com/PRACTICE/problems/CHEFHACK', 'https://www.codechef.com/PRACTICE/problems/CHEFHCK2', 'https://www.codechef.com/PRACTICE/problems/CHEFHILL', 'https://www.codechef.com/PRACTICE/problems/CHEFHOME', 'https://www.codechef.com/PRACTICE/problems/CHEFIHG', 'https://www.codechef.com/PRACTICE/problems/CHEFINV', 'https://www.codechef.com/PRACTICE/problems/CHEFKLCS', 'https://www.codechef.com/PRACTICE/problems/CHEFLAND', 'https://www.codechef.com/PRACTICE/problems/CHEFLAPT', 'https://www.codechef.com/PRACTICE/problems/CHEFLCM', 'https://www.codechef.com/PRACTICE/problems/CHEFLIQD', 'https://www.codechef.com/PRACTICE/problems/CHEFLKJ', 'https://www.codechef.com/PRACTICE/problems/CHEFLR', 'https://www.codechef.com/PRACTICE/problems/CHEFLUCK', 'https://www.codechef.com/PRACTICE/problems/CHEFMATH', 'https://www.codechef.com/PRACTICE/problems/CHEFMOON', 'https://www.codechef.com/PRACTICE/problems/CHEFNUM', 'https://www.codechef.com/PRACTICE/problems/CHEFPATH', 'https://www.codechef.com/PRACTICE/problems/CHEFPNT', 'https://www.codechef.com/PRACTICE/problems/CHEFPOLY', 'https://www.codechef.com/PRACTICE/problems/CHEFPOT', 'https://www.codechef.com/PRACTICE/problems/CHEFPOW', 'https://www.codechef.com/PRACTICE/problems/CHEFPRES', 'https://www.codechef.com/PRACTICE/problems/CHEFQUE', 'https://www.codechef.com/PRACTICE/problems/CHEFREC', 'https://www.codechef.com/PRACTICE/problems/CHEFROAD', 'https://www.codechef.com/PRACTICE/problems/CHEFRP', 'https://www.codechef.com/PRACTICE/problems/CHEFSEG', 'https://www.codechef.com/PRACTICE/problems/CHEFSHOP', 'https://www.codechef.com/PRACTICE/problems/CHEFSOC2', 'https://www.codechef.com/PRACTICE/problems/CHEFSOCK', 'https://www.codechef.com/PRACTICE/problems/CHEFSPL', 'https://www.codechef.com/PRACTICE/problems/CHEFSQ', 'https://www.codechef.com/PRACTICE/problems/CHEFSQUA', 'https://www.codechef.com/PRACTICE/problems/CHEFST', 'https://www.codechef.com/PRACTICE/problems/CHEFSTLT', 'https://www.codechef.com/PRACTICE/problems/CHEFSTON', 'https://www.codechef.com/PRACTICE/problems/CHEFTEAM', 'https://www.codechef.com/PRACTICE/problems/CHEFTET', 'https://www.codechef.com/PRACTICE/problems/CHEFTIC', 'https://www.codechef.com/PRACTICE/problems/CHEFTMA', 'https://www.codechef.com/PRACTICE/problems/CHEFTOWN', 'https://www.codechef.com/PRACTICE/problems/CHEFTR', 'https://www.codechef.com/PRACTICE/problems/CHEFTREE', 'https://www.codechef.com/PRACTICE/problems/CHEFU', 'https://www.codechef.com/PRACTICE/problems/CHEFVEC', 'https://www.codechef.com/PRACTICE/problems/CHEFVOTE', 'https://www.codechef.com/PRACTICE/problems/CHEFWORD', 'https://www.codechef.com/PRACTICE/problems/CHEFZOT', 'https://www.codechef.com/PRACTICE/problems/CHFANS', 'https://www.codechef.com/PRACTICE/problems/CHFBOOKS', 'https://www.codechef.com/PRACTICE/problems/CHFFIELD', 'https://www.codechef.com/PRACTICE/problems/CHFMAX', 'https://www.codechef.com/PRACTICE/problems/CHFQUEUE', 'https://www.codechef.com/PRACTICE/problems/CHGIFT1', 'https://www.codechef.com/PRACTICE/problems/CHGLSTGT', 'https://www.codechef.com/PRACTICE/problems/CHIEFETT', 'https://www.codechef.com/PRACTICE/problems/CHINFL', 'https://www.codechef.com/PRACTICE/problems/CHINSM', 'https://www.codechef.com/PRACTICE/problems/CHITHH', 'https://www.codechef.com/PRACTICE/problems/CHKSEL', 'https://www.codechef.com/PRACTICE/problems/CHMAGIC', 'https://www.codechef.com/PRACTICE/problems/CHMKTRPS', 'https://www.codechef.com/PRACTICE/problems/CHMOD', 'https://www.codechef.com/PRACTICE/problems/CHN09', 'https://www.codechef.com/PRACTICE/problems/CHN15A', 'https://www.codechef.com/PRACTICE/problems/CHN15B', 'https://www.codechef.com/PRACTICE/problems/CHN15C', 'https://www.codechef.com/PRACTICE/problems/CHN15D', 'https://www.codechef.com/PRACTICE/problems/CHNBGMT', 'https://www.codechef.com/PRACTICE/problems/CHNGSS', 'https://www.codechef.com/PRACTICE/problems/CHNWGM', 'https://www.codechef.com/PRACTICE/problems/CHOC', 'https://www.codechef.com/PRACTICE/problems/CHOCOLAT', 'https://www.codechef.com/PRACTICE/problems/CHODE', 'https://www.codechef.com/PRACTICE/problems/CHOPRT', 'https://www.codechef.com/PRACTICE/problems/CHPLGNS', 'https://www.codechef.com/PRACTICE/problems/CHPLNTS', 'https://www.codechef.com/PRACTICE/problems/CHPUZZLE', 'https://www.codechef.com/PRACTICE/problems/CHRECT', 'https://www.codechef.com/PRACTICE/problems/CHRL1', 'https://www.codechef.com/PRACTICE/problems/CHRL2', 'https://www.codechef.com/PRACTICE/problems/CHRL3', 'https://www.codechef.com/PRACTICE/problems/CHRL4', 'https://www.codechef.com/PRACTICE/problems/CHSEQ22', 'https://www.codechef.com/PRACTICE/problems/CHSGMNTS', 'https://www.codechef.com/PRACTICE/problems/CHSHIFU', 'https://www.codechef.com/PRACTICE/problems/CHSPARR', 'https://www.codechef.com/PRACTICE/problems/CHSQARR', 'https://www.codechef.com/PRACTICE/problems/CHSTAMP', 'https://www.codechef.com/PRACTICE/problems/CHSTR', 'https://www.codechef.com/PRACTICE/problems/CHTTRS', 'https://www.codechef.com/PRACTICE/problems/CHXORR', 'https://www.codechef.com/PRACTICE/problems/CIEL8STR', 'https://www.codechef.com/PRACTICE/problems/CIELAB', 'https://www.codechef.com/PRACTICE/problems/CIELDIST', 'https://www.codechef.com/PRACTICE/problems/CIELMAP', 'https://www.codechef.com/PRACTICE/problems/CIELNUM1', 'https://www.codechef.com/PRACTICE/problems/CIELNUM2', 'https://www.codechef.com/PRACTICE/problems/CIELRCPT', 'https://www.codechef.com/PRACTICE/problems/CIELTOMY', 'https://www.codechef.com/PRACTICE/problems/CINEMA', 'https://www.codechef.com/PRACTICE/problems/CIPHER', 'https://www.codechef.com/PRACTICE/problems/CIRCLE', 'https://www.codechef.com/PRACTICE/problems/CIRCUITS', 'https://www.codechef.com/PRACTICE/problems/CIRKILL', 'https://www.codechef.com/PRACTICE/problems/CKISSHUG', 'https://www.codechef.com/PRACTICE/problems/CKTFEV', 'https://www.codechef.com/PRACTICE/problems/CLARISSA', 'https://www.codechef.com/PRACTICE/problems/CLBMUP', 'https://www.codechef.com/PRACTICE/problems/CLCO02', 'https://www.codechef.com/PRACTICE/problems/CLCO03', 'https://www.codechef.com/PRACTICE/problems/CLCO04', 'https://www.codechef.com/PRACTICE/problems/CLCO05', 'https://www.codechef.com/PRACTICE/problems/CLCO06', 'https://www.codechef.com/PRACTICE/problems/CLCO08', 'https://www.codechef.com/PRACTICE/problems/CLDROP', 'https://www.codechef.com/PRACTICE/problems/CLDSIN', 'https://www.codechef.com/PRACTICE/problems/CLEANUP', 'https://www.codechef.com/PRACTICE/problems/CLETAB', 'https://www.codechef.com/PRACTICE/problems/CLMBSTRS', 'https://www.codechef.com/PRACTICE/problems/CLNDR', 'https://www.codechef.com/PRACTICE/problems/CLNFORUM', 'https://www.codechef.com/PRACTICE/problems/CLOST', 'https://www.codechef.com/PRACTICE/problems/CLPERM', 'https://www.codechef.com/PRACTICE/problems/CLUSSCHE', 'https://www.codechef.com/PRACTICE/problems/CLUSTER', 'https://www.codechef.com/PRACTICE/problems/CM02', 'https://www.codechef.com/PRACTICE/problems/CM04', 'https://www.codechef.com/PRACTICE/problems/CM1404', 'https://www.codechef.com/PRACTICE/problems/CM1505', 'https://www.codechef.com/PRACTICE/problems/CMAN', 'https://www.codechef.com/PRACTICE/problems/CMB01', 'https://www.codechef.com/PRACTICE/problems/CMB02', 'https://www.codechef.com/PRACTICE/problems/CMB03', 'https://www.codechef.com/PRACTICE/problems/CMB05', 'https://www.codechef.com/PRACTICE/problems/CME04', 'https://www.codechef.com/PRACTICE/problems/CN01', 'https://www.codechef.com/PRACTICE/problems/CN02', 'https://www.codechef.com/PRACTICE/problems/CN03', 'https://www.codechef.com/PRACTICE/problems/CN04', 'https://www.codechef.com/PRACTICE/problems/CN05', 'https://www.codechef.com/PRACTICE/problems/CNG', 'https://www.codechef.com/PRACTICE/problems/CNOTE', 'https://www.codechef.com/PRACTICE/problems/CNPIIM', 'https://www.codechef.com/PRACTICE/problems/CNR', 'https://www.codechef.com/PRACTICE/problems/CNT1S', 'https://www.codechef.com/PRACTICE/problems/CNTDIGIT', 'https://www.codechef.com/PRACTICE/problems/CNTDSETS', 'https://www.codechef.com/PRACTICE/problems/CNTPERM', 'https://www.codechef.com/PRACTICE/problems/CNTPRIME', 'https://www.codechef.com/PRACTICE/problems/CNTSOLS', 'https://www.codechef.com/PRACTICE/problems/CNTWAYS', 'https://www.codechef.com/PRACTICE/problems/CO319TSG', 'https://www.codechef.com/PRACTICE/problems/COAD03', 'https://www.codechef.com/PRACTICE/problems/COADIES2', 'https://www.codechef.com/PRACTICE/problems/COADIES5', 'https://www.codechef.com/PRACTICE/problems/COALSCAM', 'https://www.codechef.com/PRACTICE/problems/COCR02', 'https://www.codechef.com/PRACTICE/problems/COCR04', 'https://www.codechef.com/PRACTICE/problems/COCR07', 'https://www.codechef.com/PRACTICE/problems/COCRMR03', 'https://www.codechef.com/PRACTICE/problems/COCRMR06', 'https://www.codechef.com/PRACTICE/problems/COD04', 'https://www.codechef.com/PRACTICE/problems/CODE1602', 'https://www.codechef.com/PRACTICE/problems/CODECRCK', 'https://www.codechef.com/PRACTICE/problems/CODEIT1', 'https://www.codechef.com/PRACTICE/problems/CODEJAM1', 'https://www.codechef.com/PRACTICE/problems/CODEJAM7', 'https://www.codechef.com/PRACTICE/problems/CODEN01', 'https://www.codechef.com/PRACTICE/problems/CODEN02', 'https://www.codechef.com/PRACTICE/problems/CODEN03', 'https://www.codechef.com/PRACTICE/problems/CODQ2', 'https://www.codechef.com/PRACTICE/problems/CODQ7', 'https://www.codechef.com/PRACTICE/problems/CODQ8', 'https://www.codechef.com/PRACTICE/problems/COFFEE', 'https://www.codechef.com/PRACTICE/problems/COG14A', 'https://www.codechef.com/PRACTICE/problems/COG14B', 'https://www.codechef.com/PRACTICE/problems/COGNI15B', 'https://www.codechef.com/PRACTICE/problems/COINCHNG', 'https://www.codechef.com/PRACTICE/problems/COINS', 'https://www.codechef.com/PRACTICE/problems/COLARR', 'https://www.codechef.com/PRACTICE/problems/COLLECT', 'https://www.codechef.com/PRACTICE/problems/COLLIDE', 'https://www.codechef.com/PRACTICE/problems/COLOR', 'https://www.codechef.com/PRACTICE/problems/COLORING', 'https://www.codechef.com/PRACTICE/problems/COLTREE', 'https://www.codechef.com/PRACTICE/problems/COMA01', 'https://www.codechef.com/PRACTICE/problems/COMA02', 'https://www.codechef.com/PRACTICE/problems/COMA04', 'https://www.codechef.com/PRACTICE/problems/COMB4SUM', 'https://www.codechef.com/PRACTICE/problems/COMM3', 'https://www.codechef.com/PRACTICE/problems/COMMUTE', 'https://www.codechef.com/PRACTICE/problems/COMP01', 'https://www.codechef.com/PRACTICE/problems/COMP02', 'https://www.codechef.com/PRACTICE/problems/COMP03', 'https://www.codechef.com/PRACTICE/problems/COMPILER', 'https://www.codechef.com/PRACTICE/problems/COMPNUM', 'https://www.codechef.com/PRACTICE/problems/COMR01', 'https://www.codechef.com/PRACTICE/problems/CONCAT', 'https://www.codechef.com/PRACTICE/problems/CONFLIP', 'https://www.codechef.com/PRACTICE/problems/CONPOIN', 'https://www.codechef.com/PRACTICE/problems/COOKFOOD', 'https://www.codechef.com/PRACTICE/problems/COOKMACH', 'https://www.codechef.com/PRACTICE/problems/COOLGUYS', 'https://www.codechef.com/PRACTICE/problems/COOLING', 'https://www.codechef.com/PRACTICE/problems/COOP5', 'https://www.codechef.com/PRACTICE/problems/COPR16A', 'https://www.codechef.com/PRACTICE/problems/COPR16B', 'https://www.codechef.com/PRACTICE/problems/COPR16C', 'https://www.codechef.com/PRACTICE/problems/COPR16D', 'https://www.codechef.com/PRACTICE/problems/COPR16E', 'https://www.codechef.com/PRACTICE/problems/COPR16F', 'https://www.codechef.com/PRACTICE/problems/COPR16G', 'https://www.codechef.com/PRACTICE/problems/COPRIME3', 'https://www.codechef.com/PRACTICE/problems/COPS', 'https://www.codechef.com/PRACTICE/problems/COPSUM', 'https://www.codechef.com/PRACTICE/problems/CORE3', 'https://www.codechef.com/PRACTICE/problems/CORE4', 'https://www.codechef.com/PRACTICE/problems/CORE9', 'https://www.codechef.com/PRACTICE/problems/CORRCHK', 'https://www.codechef.com/PRACTICE/problems/COSH1501', 'https://www.codechef.com/PRACTICE/problems/COSH1502', 'https://www.codechef.com/PRACTICE/problems/COSH1503', 'https://www.codechef.com/PRACTICE/problems/COSH1505', 'https://www.codechef.com/PRACTICE/problems/COSUK', 'https://www.codechef.com/PRACTICE/problems/COT5', 'https://www.codechef.com/PRACTICE/problems/COTA', 'https://www.codechef.com/PRACTICE/problems/COTR03', 'https://www.codechef.com/PRACTICE/problems/COUNTARI', 'https://www.codechef.com/PRACTICE/problems/COUNTC', 'https://www.codechef.com/PRACTICE/problems/COUNTPAL', 'https://www.codechef.com/PRACTICE/problems/COUNTREL', 'https://www.codechef.com/PRACTICE/problems/COUNTSTR', 'https://www.codechef.com/PRACTICE/problems/COUNZ', 'https://www.codechef.com/PRACTICE/problems/COUPON', 'https://www.codechef.com/PRACTICE/problems/COURSE', 'https://www.codechef.com/PRACTICE/problems/COVERING', 'https://www.codechef.com/PRACTICE/problems/COWA7', 'https://www.codechef.com/PRACTICE/problems/COWA8', 'https://www.codechef.com/PRACTICE/problems/CPOINT', 'https://www.codechef.com/PRACTICE/problems/CR02', 'https://www.codechef.com/PRACTICE/problems/CR06', 'https://www.codechef.com/PRACTICE/problems/CR10', 'https://www.codechef.com/PRACTICE/problems/CRACE', 'https://www.codechef.com/PRACTICE/problems/CRAFT05', 'https://www.codechef.com/PRACTICE/problems/CRANATOM', 'https://www.codechef.com/PRACTICE/problems/CRANBROM', 'https://www.codechef.com/PRACTICE/problems/CRANCRD', 'https://www.codechef.com/PRACTICE/problems/CRAWA', 'https://www.codechef.com/PRACTICE/problems/CREDCHES', 'https://www.codechef.com/PRACTICE/problems/CREDCHOC', 'https://www.codechef.com/PRACTICE/problems/CREDDIST', 'https://www.codechef.com/PRACTICE/problems/CREDE2', 'https://www.codechef.com/PRACTICE/problems/CREDEXAM', 'https://www.codechef.com/PRACTICE/problems/CREDFIBO', 'https://www.codechef.com/PRACTICE/problems/CREDLEAD', 'https://www.codechef.com/PRACTICE/problems/CREDMAEX', 'https://www.codechef.com/PRACTICE/problems/CREDROPE', 'https://www.codechef.com/PRACTICE/problems/CREDSNET', 'https://www.codechef.com/PRACTICE/problems/CREDSQR', 'https://www.codechef.com/PRACTICE/problems/CRES104', 'https://www.codechef.com/PRACTICE/problems/CRES105', 'https://www.codechef.com/PRACTICE/problems/CRICINFO', 'https://www.codechef.com/PRACTICE/problems/CRNG2048', 'https://www.codechef.com/PRACTICE/problems/CRNM1301', 'https://www.codechef.com/PRACTICE/problems/CRNM1305', 'https://www.codechef.com/PRACTICE/problems/CRNMBDRP', 'https://www.codechef.com/PRACTICE/problems/CROCDILE', 'https://www.codechef.com/PRACTICE/problems/CROWD', 'https://www.codechef.com/PRACTICE/problems/CRZ02', 'https://www.codechef.com/PRACTICE/problems/CRZ04', 'https://www.codechef.com/PRACTICE/problems/CS001', 'https://www.codechef.com/PRACTICE/problems/CSEA2', 'https://www.codechef.com/PRACTICE/problems/CSEA3', 'https://www.codechef.com/PRACTICE/problems/CSEA4', 'https://www.codechef.com/PRACTICE/problems/CSEQ', 'https://www.codechef.com/PRACTICE/problems/CSIXIEAN', 'https://www.codechef.com/PRACTICE/problems/CSIXIEPA', 'https://www.codechef.com/PRACTICE/problems/CSIXIERL', 'https://www.codechef.com/PRACTICE/problems/CSIXIEVR', 'https://www.codechef.com/PRACTICE/problems/CSKR', 'https://www.codechef.com/PRACTICE/problems/CSS2', 'https://www.codechef.com/PRACTICE/problems/CSTRIKE2', 'https://www.codechef.com/PRACTICE/problems/CSTRIKE3', 'https://www.codechef.com/PRACTICE/problems/CSTRIKE4', 'https://www.codechef.com/PRACTICE/problems/CSTRIKE5', 'https://www.codechef.com/PRACTICE/problems/CSUB', 'https://www.codechef.com/PRACTICE/problems/CSUBARR', 'https://www.codechef.com/PRACTICE/problems/CSUMD', 'https://www.codechef.com/PRACTICE/problems/CTEAMS', 'https://www.codechef.com/PRACTICE/problems/CTRA01', 'https://www.codechef.com/PRACTICE/problems/CUBE', 'https://www.codechef.com/PRACTICE/problems/CUBES', 'https://www.codechef.com/PRACTICE/problems/CUBESUM', 'https://www.codechef.com/PRACTICE/problems/CUBTOWER', 'https://www.codechef.com/PRACTICE/problems/CULPRO', 'https://www.codechef.com/PRACTICE/problems/CURR2', 'https://www.codechef.com/PRACTICE/problems/CVOTE', 'https://www.codechef.com/PRACTICE/problems/CW01', 'https://www.codechef.com/PRACTICE/problems/CW02', 'https://www.codechef.com/PRACTICE/problems/CW03', 'https://www.codechef.com/PRACTICE/problems/CW04', 'https://www.codechef.com/PRACTICE/problems/CW05', 'https://www.codechef.com/PRACTICE/problems/CW06', 'https://www.codechef.com/PRACTICE/problems/CW08', 'https://www.codechef.com/PRACTICE/problems/CW1', 'https://www.codechef.com/PRACTICE/problems/CW2', 'https://www.codechef.com/PRACTICE/problems/CW4', 'https://www.codechef.com/PRACTICE/problems/CW5', 'https://www.codechef.com/PRACTICE/problems/CW6', 'https://www.codechef.com/PRACTICE/problems/CWAM1502', 'https://www.codechef.com/PRACTICE/problems/CWAYS', 'https://www.codechef.com/PRACTICE/problems/CYCLIST', 'https://www.codechef.com/PRACTICE/problems/CYCLRACE', 'https://www.codechef.com/PRACTICE/problems/CYLINDER', 'https://www.codechef.com/PRACTICE/problems/CYW02', 'https://www.codechef.com/PRACTICE/problems/CYW04', 'https://www.codechef.com/PRACTICE/problems/CYW07', 'https://www.codechef.com/PRACTICE/problems/CYW09', 'https://www.codechef.com/PRACTICE/problems/C_HOLIC4', 'https://www.codechef.com/PRACTICE/problems/D04', 'https://www.codechef.com/PRACTICE/problems/D1', 'https://www.codechef.com/PRACTICE/problems/D2', 'https://www.codechef.com/PRACTICE/problems/D4', 'https://www.codechef.com/PRACTICE/problems/D6', 'https://www.codechef.com/PRACTICE/problems/DAILY', 'https://www.codechef.com/PRACTICE/problems/DARTS', 'https://www.codechef.com/PRACTICE/problems/DATE', 'https://www.codechef.com/PRACTICE/problems/DBLSTR7', 'https://www.codechef.com/PRACTICE/problems/DBOY', 'https://www.codechef.com/PRACTICE/problems/DBYZ15A', 'https://www.codechef.com/PRACTICE/problems/DBYZ15B', 'https://www.codechef.com/PRACTICE/problems/DBYZ15C', 'https://www.codechef.com/PRACTICE/problems/DBYZ15F', 'https://www.codechef.com/PRACTICE/problems/DBYZ15T', 'https://www.codechef.com/PRACTICE/problems/DBYZ15T2', 'https://www.codechef.com/PRACTICE/problems/DBZ16RS', 'https://www.codechef.com/PRACTICE/problems/DBZ16XOR', 'https://www.codechef.com/PRACTICE/problems/DBZ16XS1', 'https://www.codechef.com/PRACTICE/problems/DCE02', 'https://www.codechef.com/PRACTICE/problems/DCE03', 'https://www.codechef.com/PRACTICE/problems/DCE04', 'https://www.codechef.com/PRACTICE/problems/DCE05', 'https://www.codechef.com/PRACTICE/problems/DCGAME', 'https://www.codechef.com/PRACTICE/problems/DCL2015A', 'https://www.codechef.com/PRACTICE/problems/DCL2015B', 'https://www.codechef.com/PRACTICE/problems/DCL2015E', 'https://www.codechef.com/PRACTICE/problems/DCL2015I', 'https://www.codechef.com/PRACTICE/problems/DCOL', 'https://www.codechef.com/PRACTICE/problems/DDCC', 'https://www.codechef.com/PRACTICE/problems/DDILEMMA', 'https://www.codechef.com/PRACTICE/problems/DDISH', 'https://www.codechef.com/PRACTICE/problems/DEB002', 'https://www.codechef.com/PRACTICE/problems/DECA02', 'https://www.codechef.com/PRACTICE/problems/DECA05', 'https://www.codechef.com/PRACTICE/problems/DECORATE', 'https://www.codechef.com/PRACTICE/problems/DECSTR', 'https://www.codechef.com/PRACTICE/problems/DEFACING', 'https://www.codechef.com/PRACTICE/problems/DELISH', 'https://www.codechef.com/PRACTICE/problems/DELNMS', 'https://www.codechef.com/PRACTICE/problems/DELSUM', 'https://www.codechef.com/PRACTICE/problems/DESTROY', 'https://www.codechef.com/PRACTICE/problems/DETDET', 'https://www.codechef.com/PRACTICE/problems/DEVARRAY', 'https://www.codechef.com/PRACTICE/problems/DEVBDAY', 'https://www.codechef.com/PRACTICE/problems/DEVCLASS', 'https://www.codechef.com/PRACTICE/problems/DEVGOSTR', 'https://www.codechef.com/PRACTICE/problems/DEVHAND', 'https://www.codechef.com/PRACTICE/problems/DEVILNUM', 'https://www.codechef.com/PRACTICE/problems/DEVJERRY', 'https://www.codechef.com/PRACTICE/problems/DEVLDISC', 'https://www.codechef.com/PRACTICE/problems/DEVLOCK', 'https://www.codechef.com/PRACTICE/problems/DEVPERF', 'https://www.codechef.com/PRACTICE/problems/DEVSHOW', 'https://www.codechef.com/PRACTICE/problems/DEVSTR', 'https://www.codechef.com/PRACTICE/problems/DEVUGRAP', 'https://www.codechef.com/PRACTICE/problems/DEVVOTE', 'https://www.codechef.com/PRACTICE/problems/DGCD', 'https://www.codechef.com/PRACTICE/problems/DIAMOND', 'https://www.codechef.com/PRACTICE/problems/DIGFORST', 'https://www.codechef.com/PRACTICE/problems/DIGJUMP', 'https://www.codechef.com/PRACTICE/problems/DIGROT', 'https://www.codechef.com/PRACTICE/problems/DINING', 'https://www.codechef.com/PRACTICE/problems/DIRECTI', 'https://www.codechef.com/PRACTICE/problems/DIRTBYTE', 'https://www.codechef.com/PRACTICE/problems/DISCHAR', 'https://www.codechef.com/PRACTICE/problems/DISHBAL', 'https://www.codechef.com/PRACTICE/problems/DISHDIS', 'https://www.codechef.com/PRACTICE/problems/DISHOWN', 'https://www.codechef.com/PRACTICE/problems/DISPLAY', 'https://www.codechef.com/PRACTICE/problems/DISTCODE', 'https://www.codechef.com/PRACTICE/problems/DISTNUM', 'https://www.codechef.com/PRACTICE/problems/DISTNUM2', 'https://www.codechef.com/PRACTICE/problems/DIVGAME', 'https://www.codechef.com/PRACTICE/problems/DIVGOLD', 'https://www.codechef.com/PRACTICE/problems/DIVIDE', 'https://www.codechef.com/PRACTICE/problems/DIVIDING', 'https://www.codechef.com/PRACTICE/problems/DIVLAND', 'https://www.codechef.com/PRACTICE/problems/DIVNINE', 'https://www.codechef.com/PRACTICE/problems/DIVPAIR', 'https://www.codechef.com/PRACTICE/problems/DIVQUERY', 'https://www.codechef.com/PRACTICE/problems/DIVSUBS', 'https://www.codechef.com/PRACTICE/problems/DLCT06', 'https://www.codechef.com/PRACTICE/problems/DMILK', 'https://www.codechef.com/PRACTICE/problems/DMNOS', 'https://www.codechef.com/PRACTICE/problems/DMSG', 'https://www.codechef.com/PRACTICE/problems/DOMSOL', 'https://www.codechef.com/PRACTICE/problems/DONUTS', 'https://www.codechef.com/PRACTICE/problems/DOORS', 'https://www.codechef.com/PRACTICE/problems/DORAEMON', 'https://www.codechef.com/PRACTICE/problems/DOUBLE', 'https://www.codechef.com/PRACTICE/problems/DOWNLOAD', 'https://www.codechef.com/PRACTICE/problems/DPC101', 'https://www.codechef.com/PRACTICE/problems/DPC103', 'https://www.codechef.com/PRACTICE/problems/DPC203', 'https://www.codechef.com/PRACTICE/problems/DPC204', 'https://www.codechef.com/PRACTICE/problems/DPC206', 'https://www.codechef.com/PRACTICE/problems/DPC207', 'https://www.codechef.com/PRACTICE/problems/DPC210', 'https://www.codechef.com/PRACTICE/problems/DPOOL02', 'https://www.codechef.com/PRACTICE/problems/DPOOL05', 'https://www.codechef.com/PRACTICE/problems/DPOOL08', 'https://www.codechef.com/PRACTICE/problems/DPOOL09', 'https://www.codechef.com/PRACTICE/problems/DRAGNXOR', 'https://www.codechef.com/PRACTICE/problems/DRAGONST', 'https://www.codechef.com/PRACTICE/problems/DRANGE', 'https://www.codechef.com/PRACTICE/problems/DRCTNSRM', 'https://www.codechef.com/PRACTICE/problems/DREAM', 'https://www.codechef.com/PRACTICE/problems/DRGHTS', 'https://www.codechef.com/PRACTICE/problems/DRGNBOOL', 'https://www.codechef.com/PRACTICE/problems/DS04', 'https://www.codechef.com/PRACTICE/problems/DS05', 'https://www.codechef.com/PRACTICE/problems/DS06', 'https://www.codechef.com/PRACTICE/problems/DS07', 'https://www.codechef.com/PRACTICE/problems/DS08', 'https://www.codechef.com/PRACTICE/problems/DS09', 'https://www.codechef.com/PRACTICE/problems/DS10', 'https://www.codechef.com/PRACTICE/problems/DS11', 'https://www.codechef.com/PRACTICE/problems/DS15', 'https://www.codechef.com/PRACTICE/problems/DS7', 'https://www.codechef.com/PRACTICE/problems/DSPATNA1', 'https://www.codechef.com/PRACTICE/problems/DSPATNA3', 'https://www.codechef.com/PRACTICE/problems/DSPC304', 'https://www.codechef.com/PRACTICE/problems/DSPCXI01', 'https://www.codechef.com/PRACTICE/problems/DSPCXI02', 'https://www.codechef.com/PRACTICE/problems/DUALPAL', 'https://www.codechef.com/PRACTICE/problems/DUMPLING', 'https://www.codechef.com/PRACTICE/problems/DX', 'https://www.codechef.com/PRACTICE/problems/DYNAINV', 'https://www.codechef.com/PRACTICE/problems/DZ16HITE', 'https://www.codechef.com/PRACTICE/problems/DZ16KNAP', 'https://www.codechef.com/PRACTICE/problems/DZ16MAT', 'https://www.codechef.com/PRACTICE/problems/DZ16SHOP', 'https://www.codechef.com/PRACTICE/problems/DZ16SUBA', 'https://www.codechef.com/PRACTICE/problems/DZ16TREE', 'https://www.codechef.com/PRACTICE/problems/E1', 'https://www.codechef.com/PRACTICE/problems/E2', 'https://www.codechef.com/PRACTICE/problems/E4', 'https://www.codechef.com/PRACTICE/problems/E5', 'https://www.codechef.com/PRACTICE/problems/EASYEX', 'https://www.codechef.com/PRACTICE/problems/EASYPROB', 'https://www.codechef.com/PRACTICE/problems/EDITLIST', 'https://www.codechef.com/PRACTICE/problems/EDSTGRID', 'https://www.codechef.com/PRACTICE/problems/EGBOBRD', 'https://www.codechef.com/PRACTICE/problems/EGRANDR', 'https://www.codechef.com/PRACTICE/problems/EGRCAKE', 'https://www.codechef.com/PRACTICE/problems/EGYPTFRA', 'https://www.codechef.com/PRACTICE/problems/ELPHANT', 'https://www.codechef.com/PRACTICE/problems/EMA01', 'https://www.codechef.com/PRACTICE/problems/EMA03', 'https://www.codechef.com/PRACTICE/problems/EMA09', 'https://www.codechef.com/PRACTICE/problems/EMITL', 'https://www.codechef.com/PRACTICE/problems/EMRGENCY', 'https://www.codechef.com/PRACTICE/problems/ENCD02', 'https://www.codechef.com/PRACTICE/problems/ENCD04', 'https://www.codechef.com/PRACTICE/problems/ENCD06', 'https://www.codechef.com/PRACTICE/problems/ENCD09', 'https://www.codechef.com/PRACTICE/problems/ENCODE01', 'https://www.codechef.com/PRACTICE/problems/ENCODE02', 'https://www.codechef.com/PRACTICE/problems/ENCODE04', 'https://www.codechef.com/PRACTICE/problems/ENTEXAM', 'https://www.codechef.com/PRACTICE/problems/EPI01', 'https://www.codechef.com/PRACTICE/problems/EPI02', 'https://www.codechef.com/PRACTICE/problems/EPI03', 'https://www.codechef.com/PRACTICE/problems/EQCANDY', 'https://www.codechef.com/PRACTICE/problems/EQIDLIS', 'https://www.codechef.com/PRACTICE/problems/EQUAKE', 'https://www.codechef.com/PRACTICE/problems/EQUALITY', 'https://www.codechef.com/PRACTICE/problems/EQUALIZ', 'https://www.codechef.com/PRACTICE/problems/EQUALIZE', 'https://www.codechef.com/PRACTICE/problems/EQUATIO', 'https://www.codechef.com/PRACTICE/problems/EQUATION', 'https://www.codechef.com/PRACTICE/problems/EQUINUM', 'https://www.codechef.com/PRACTICE/problems/ERROR', 'https://www.codechef.com/PRACTICE/problems/ETMX04', 'https://www.codechef.com/PRACTICE/problems/ETMX05', 'https://www.codechef.com/PRACTICE/problems/ETMX06', 'https://www.codechef.com/PRACTICE/problems/ETMX07', 'https://www.codechef.com/PRACTICE/problems/EXAM', 'https://www.codechef.com/PRACTICE/problems/EXGCD', 'https://www.codechef.com/PRACTICE/problems/EXNETWRK', 'https://www.codechef.com/PRACTICE/problems/EXPALIN', 'https://www.codechef.com/PRACTICE/problems/EXPCOMM', 'https://www.codechef.com/PRACTICE/problems/EXPGAME', 'https://www.codechef.com/PRACTICE/problems/EZNO', 'https://www.codechef.com/PRACTICE/problems/F1', 'https://www.codechef.com/PRACTICE/problems/FACT25', 'https://www.codechef.com/PRACTICE/problems/FACTEASY', 'https://www.codechef.com/PRACTICE/problems/FACTORIZ', 'https://www.codechef.com/PRACTICE/problems/FACTSUM', 'https://www.codechef.com/PRACTICE/problems/FAIRPAIR', 'https://www.codechef.com/PRACTICE/problems/FALLDOWN', 'https://www.codechef.com/PRACTICE/problems/FARASA', 'https://www.codechef.com/PRACTICE/problems/FASTFUR', 'https://www.codechef.com/PRACTICE/problems/FATCHEF', 'https://www.codechef.com/PRACTICE/problems/FAULT', 'https://www.codechef.com/PRACTICE/problems/FAVNUM', 'https://www.codechef.com/PRACTICE/problems/FBCHEF', 'https://www.codechef.com/PRACTICE/problems/FBFRW1', 'https://www.codechef.com/PRACTICE/problems/FBFRW2', 'https://www.codechef.com/PRACTICE/problems/FBFRW3', 'https://www.codechef.com/PRACTICE/problems/FCBARCA', 'https://www.codechef.com/PRACTICE/problems/FCTDIG', 'https://www.codechef.com/PRACTICE/problems/FCTR1', 'https://www.codechef.com/PRACTICE/problems/FCTRL', 'https://www.codechef.com/PRACTICE/problems/FCTRL2', 'https://www.codechef.com/PRACTICE/problems/FCUBE', 'https://www.codechef.com/PRACTICE/problems/FDIVGAME', 'https://www.codechef.com/PRACTICE/problems/FEST', 'https://www.codechef.com/PRACTICE/problems/FEST03', 'https://www.codechef.com/PRACTICE/problems/FEYNMAN', 'https://www.codechef.com/PRACTICE/problems/FGFS', 'https://www.codechef.com/PRACTICE/problems/FIBEQN', 'https://www.codechef.com/PRACTICE/problems/FIBGCD', 'https://www.codechef.com/PRACTICE/problems/FIBQ', 'https://www.codechef.com/PRACTICE/problems/FIBTREE', 'https://www.codechef.com/PRACTICE/problems/FINDEX', 'https://www.codechef.com/PRACTICE/problems/FINDHOLE', 'https://www.codechef.com/PRACTICE/problems/FIRE', 'https://www.codechef.com/PRACTICE/problems/FIRESC', 'https://www.codechef.com/PRACTICE/problems/FLAGS', 'https://www.codechef.com/PRACTICE/problems/FLCM', 'https://www.codechef.com/PRACTICE/problems/FLIPCOIN', 'https://www.codechef.com/PRACTICE/problems/FLOOR', 'https://www.codechef.com/PRACTICE/problems/FLOORDIS', 'https://www.codechef.com/PRACTICE/problems/FLOORI4', 'https://www.codechef.com/PRACTICE/problems/FLOW001', 'https://www.codechef.com/PRACTICE/problems/FLOW002', 'https://www.codechef.com/PRACTICE/problems/FLOW004', 'https://www.codechef.com/PRACTICE/problems/FLOW005', 'https://www.codechef.com/PRACTICE/problems/FLOW006', 'https://www.codechef.com/PRACTICE/problems/FLOW007', 'https://www.codechef.com/PRACTICE/problems/FLOW008', 'https://www.codechef.com/PRACTICE/problems/FLOW009', 'https://www.codechef.com/PRACTICE/problems/FLOW010', 'https://www.codechef.com/PRACTICE/problems/FLOW011', 'https://www.codechef.com/PRACTICE/problems/FLOW013', 'https://www.codechef.com/PRACTICE/problems/FLOW014', 'https://www.codechef.com/PRACTICE/problems/FLOW015', 'https://www.codechef.com/PRACTICE/problems/FLOW016', 'https://www.codechef.com/PRACTICE/problems/FLOW017', 'https://www.codechef.com/PRACTICE/problems/FLOW018', 'https://www.codechef.com/PRACTICE/problems/FLUSHOT', 'https://www.codechef.com/PRACTICE/problems/FN', 'https://www.codechef.com/PRACTICE/problems/FNCS', 'https://www.codechef.com/PRACTICE/problems/FOMBRO', 'https://www.codechef.com/PRACTICE/problems/FORCES', 'https://www.codechef.com/PRACTICE/problems/FORESTGA', 'https://www.codechef.com/PRACTICE/problems/FORGETPW', 'https://www.codechef.com/PRACTICE/problems/FP03', 'https://www.codechef.com/PRACTICE/problems/FP09', 'https://www.codechef.com/PRACTICE/problems/FRAC', 'https://www.codechef.com/PRACTICE/problems/FRBSUM', 'https://www.codechef.com/PRACTICE/problems/FRGTNLNG', 'https://www.codechef.com/PRACTICE/problems/FRJUMP', 'https://www.codechef.com/PRACTICE/problems/FRMQ', 'https://www.codechef.com/PRACTICE/problems/FRNDMTNG', 'https://www.codechef.com/PRACTICE/problems/FROGV', 'https://www.codechef.com/PRACTICE/problems/FRUITS', 'https://www.codechef.com/PRACTICE/problems/FSEQ', 'https://www.codechef.com/PRACTICE/problems/FSFSFS', 'https://www.codechef.com/PRACTICE/problems/FSQRT', 'https://www.codechef.com/PRACTICE/problems/FSSYNC', 'https://www.codechef.com/PRACTICE/problems/FSTSQ', 'https://www.codechef.com/PRACTICE/problems/FTH', 'https://www.codechef.com/PRACTICE/problems/FTRIP', 'https://www.codechef.com/PRACTICE/problems/FUNAGP', 'https://www.codechef.com/PRACTICE/problems/FUNC', 'https://www.codechef.com/PRACTICE/problems/FUNKVAL', 'https://www.codechef.com/PRACTICE/problems/FUNN', 'https://www.codechef.com/PRACTICE/problems/FURGRAPH', 'https://www.codechef.com/PRACTICE/problems/FUZZYADD', 'https://www.codechef.com/PRACTICE/problems/GALACTIK', 'https://www.codechef.com/PRACTICE/problems/GAME2048', 'https://www.codechef.com/PRACTICE/problems/GAMEAAM', 'https://www.codechef.com/PRACTICE/problems/GANGAAM', 'https://www.codechef.com/PRACTICE/problems/GARDENSQ', 'https://www.codechef.com/PRACTICE/problems/GBALLS', 'https://www.codechef.com/PRACTICE/problems/GCD', 'https://www.codechef.com/PRACTICE/problems/GCD2', 'https://www.codechef.com/PRACTICE/problems/GCDMAX1', 'https://www.codechef.com/PRACTICE/problems/GCDQ', 'https://www.codechef.com/PRACTICE/problems/GCDTREE', 'https://www.codechef.com/PRACTICE/problems/GDOG', 'https://www.codechef.com/PRACTICE/problems/GENARSEQ', 'https://www.codechef.com/PRACTICE/problems/GENETICS', 'https://www.codechef.com/PRACTICE/problems/GERALD03', 'https://www.codechef.com/PRACTICE/problems/GERALD04', 'https://www.codechef.com/PRACTICE/problems/GERALD05', 'https://www.codechef.com/PRACTICE/problems/GERALD07', 'https://www.codechef.com/PRACTICE/problems/GERALD08', 'https://www.codechef.com/PRACTICE/problems/GERALD09', 'https://www.codechef.com/PRACTICE/problems/GERALD2', 'https://www.codechef.com/PRACTICE/problems/GERALD3', 'https://www.codechef.com/PRACTICE/problems/GGAME', 'https://www.codechef.com/PRACTICE/problems/GIVCANDY', 'https://www.codechef.com/PRACTICE/problems/GIVEAWAY', 'https://www.codechef.com/PRACTICE/problems/GLBEGA', 'https://www.codechef.com/PRACTICE/problems/GMB01', 'https://www.codechef.com/PRACTICE/problems/GNUM', 'https://www.codechef.com/PRACTICE/problems/GOALIE', 'https://www.codechef.com/PRACTICE/problems/GOC01', 'https://www.codechef.com/PRACTICE/problems/GOC201', 'https://www.codechef.com/PRACTICE/problems/GOC202', 'https://www.codechef.com/PRACTICE/problems/GOC203', 'https://www.codechef.com/PRACTICE/problems/GOC204', 'https://www.codechef.com/PRACTICE/problems/GOKU', 'https://www.codechef.com/PRACTICE/problems/GOODNUMB', 'https://www.codechef.com/PRACTICE/problems/GOOGOL01', 'https://www.codechef.com/PRACTICE/problems/GOOGOL03', 'https://www.codechef.com/PRACTICE/problems/GOOGOL04', 'https://www.codechef.com/PRACTICE/problems/GOOGOL05', 'https://www.codechef.com/PRACTICE/problems/GOPJ', 'https://www.codechef.com/PRACTICE/problems/GOPR', 'https://www.codechef.com/PRACTICE/problems/GOT', 'https://www.codechef.com/PRACTICE/problems/GOTN', 'https://www.codechef.com/PRACTICE/problems/GOVT', 'https://www.codechef.com/PRACTICE/problems/GPRIME', 'https://www.codechef.com/PRACTICE/problems/GRANAMA', 'https://www.codechef.com/PRACTICE/problems/GRAPHCNT', 'https://www.codechef.com/PRACTICE/problems/GRAYCODE', 'https://www.codechef.com/PRACTICE/problems/GRAYSC', 'https://www.codechef.com/PRACTICE/problems/GRGUY', 'https://www.codechef.com/PRACTICE/problems/GRID', 'https://www.codechef.com/PRACTICE/problems/GRID01', 'https://www.codechef.com/PRACTICE/problems/GRIDCONN', 'https://www.codechef.com/PRACTICE/problems/GROADS', 'https://www.codechef.com/PRACTICE/problems/GROWGOLD', 'https://www.codechef.com/PRACTICE/problems/GRTRIP', 'https://www.codechef.com/PRACTICE/problems/GSHUFF', 'https://www.codechef.com/PRACTICE/problems/GTH', 'https://www.codechef.com/PRACTICE/problems/GUESS', 'https://www.codechef.com/PRACTICE/problems/GWBUT', 'https://www.codechef.com/PRACTICE/problems/H1', 'https://www.codechef.com/PRACTICE/problems/H2', 'https://www.codechef.com/PRACTICE/problems/H4', 'https://www.codechef.com/PRACTICE/problems/HAMILG', 'https://www.codechef.com/PRACTICE/problems/HAREJUMP', 'https://www.codechef.com/PRACTICE/problems/HARRY', 'https://www.codechef.com/PRACTICE/problems/HBB', 'https://www.codechef.com/PRACTICE/problems/HBIRD', 'https://www.codechef.com/PRACTICE/problems/HCLEAN', 'https://www.codechef.com/PRACTICE/problems/HDELIVER', 'https://www.codechef.com/PRACTICE/problems/HEADBOB', 'https://www.codechef.com/PRACTICE/problems/HELLO', 'https://www.codechef.com/PRACTICE/problems/HELPLIRA', 'https://www.codechef.com/PRACTICE/problems/HES', 'https://www.codechef.com/PRACTICE/problems/HFCQ1', 'https://www.codechef.com/PRACTICE/problems/HFCQ2', 'https://www.codechef.com/PRACTICE/problems/HFCQ3', 'https://www.codechef.com/PRACTICE/problems/HFCQ4', 'https://www.codechef.com/PRACTICE/problems/HFCQ5', 'https://www.codechef.com/PRACTICE/problems/HHAL', 'https://www.codechef.com/PRACTICE/problems/HISTJUNK', 'https://www.codechef.com/PRACTICE/problems/HLDOTS', 'https://www.codechef.com/PRACTICE/problems/HLPSUG', 'https://www.codechef.com/PRACTICE/problems/HOB2', 'https://www.codechef.com/PRACTICE/problems/HOBB', 'https://www.codechef.com/PRACTICE/problems/HOLDIL', 'https://www.codechef.com/PRACTICE/problems/HOLES', 'https://www.codechef.com/PRACTICE/problems/HOLES2', 'https://www.codechef.com/PRACTICE/problems/HOMDEL', 'https://www.codechef.com/PRACTICE/problems/HORSES', 'https://www.codechef.com/PRACTICE/problems/HOTEL', 'https://www.codechef.com/PRACTICE/problems/HPYBDAY', 'https://www.codechef.com/PRACTICE/problems/HS08TEST', 'https://www.codechef.com/PRACTICE/problems/HSHAKE', 'https://www.codechef.com/PRACTICE/problems/HTLPLM', 'https://www.codechef.com/PRACTICE/problems/I13POF', 'https://www.codechef.com/PRACTICE/problems/ICD01', 'https://www.codechef.com/PRACTICE/problems/ICD02', 'https://www.codechef.com/PRACTICE/problems/ICD03', 'https://www.codechef.com/PRACTICE/problems/ICD04', 'https://www.codechef.com/PRACTICE/problems/ICECREAM', 'https://www.codechef.com/PRACTICE/problems/ICL16A', 'https://www.codechef.com/PRACTICE/problems/ICL16C', 'https://www.codechef.com/PRACTICE/problems/ICL16E', 'https://www.codechef.com/PRACTICE/problems/ICLFIN01', 'https://www.codechef.com/PRACTICE/problems/ICLFIN02', 'https://www.codechef.com/PRACTICE/problems/ICQ1', 'https://www.codechef.com/PRACTICE/problems/ICQ2', 'https://www.codechef.com/PRACTICE/problems/ICQ3', 'https://www.codechef.com/PRACTICE/problems/ICQ4', 'https://www.codechef.com/PRACTICE/problems/IDCLOVE', 'https://www.codechef.com/PRACTICE/problems/IDCMSG', 'https://www.codechef.com/PRACTICE/problems/IDOLS', 'https://www.codechef.com/PRACTICE/problems/IEEET02', 'https://www.codechef.com/PRACTICE/problems/IEEEUOM', 'https://www.codechef.com/PRACTICE/problems/IG01', 'https://www.codechef.com/PRACTICE/problems/IGAME', 'https://www.codechef.com/PRACTICE/problems/IGCDLIFT', 'https://www.codechef.com/PRACTICE/problems/IGCDMAT', 'https://www.codechef.com/PRACTICE/problems/IGCDMNKY', 'https://www.codechef.com/PRACTICE/problems/IGNUS14B', 'https://www.codechef.com/PRACTICE/problems/IGNUS14D', 'https://www.codechef.com/PRACTICE/problems/IGNUS14E', 'https://www.codechef.com/PRACTICE/problems/IGNUS15B', 'https://www.codechef.com/PRACTICE/problems/IGNUS15C', 'https://www.codechef.com/PRACTICE/problems/IGNUS15D', 'https://www.codechef.com/PRACTICE/problems/IGNUS15E', 'https://www.codechef.com/PRACTICE/problems/IIITA206', 'https://www.codechef.com/PRACTICE/problems/IIITBH11', 'https://www.codechef.com/PRACTICE/problems/IIITBH14', 'https://www.codechef.com/PRACTICE/problems/IITI00', 'https://www.codechef.com/PRACTICE/problems/IITI07', 'https://www.codechef.com/PRACTICE/problems/IITI09', 'https://www.codechef.com/PRACTICE/problems/IITI11', 'https://www.codechef.com/PRACTICE/problems/IITI13', 'https://www.codechef.com/PRACTICE/problems/IITI14', 'https://www.codechef.com/PRACTICE/problems/IITI15', 'https://www.codechef.com/PRACTICE/problems/IITI16', 'https://www.codechef.com/PRACTICE/problems/IITK1P01', 'https://www.codechef.com/PRACTICE/problems/IITK1P02', 'https://www.codechef.com/PRACTICE/problems/IITK1P03', 'https://www.codechef.com/PRACTICE/problems/IITK1P04', 'https://www.codechef.com/PRACTICE/problems/IITK1P05', 'https://www.codechef.com/PRACTICE/problems/IITK1P06', 'https://www.codechef.com/PRACTICE/problems/IITK1P07', 'https://www.codechef.com/PRACTICE/problems/IITK1P08', 'https://www.codechef.com/PRACTICE/problems/IITK1P09', 'https://www.codechef.com/PRACTICE/problems/IITK1P10', 'https://www.codechef.com/PRACTICE/problems/IITK1P11', 'https://www.codechef.com/PRACTICE/problems/IITK2P01', 'https://www.codechef.com/PRACTICE/problems/IITK2P02', 'https://www.codechef.com/PRACTICE/problems/IITK2P03', 'https://www.codechef.com/PRACTICE/problems/IITK2P04', 'https://www.codechef.com/PRACTICE/problems/IITK2P05', 'https://www.codechef.com/PRACTICE/problems/IITK2P06', 'https://www.codechef.com/PRACTICE/problems/IITK2P07', 'https://www.codechef.com/PRACTICE/problems/IITK2P08', 'https://www.codechef.com/PRACTICE/problems/IITK2P09', 'https://www.codechef.com/PRACTICE/problems/IITK2P10', 'https://www.codechef.com/PRACTICE/problems/INC1', 'https://www.codechef.com/PRACTICE/problems/INC3', 'https://www.codechef.com/PRACTICE/problems/INC5', 'https://www.codechef.com/PRACTICE/problems/INGREDIE', 'https://www.codechef.com/PRACTICE/problems/INLO02', 'https://www.codechef.com/PRACTICE/problems/INLO05', 'https://www.codechef.com/PRACTICE/problems/INLO35', 'https://www.codechef.com/PRACTICE/problems/INLO36', 'https://www.codechef.com/PRACTICE/problems/INS01', 'https://www.codechef.com/PRACTICE/problems/INS0903', 'https://www.codechef.com/PRACTICE/problems/INSM02', 'https://www.codechef.com/PRACTICE/problems/INSM06', 'https://www.codechef.com/PRACTICE/problems/INSOMA1', 'https://www.codechef.com/PRACTICE/problems/INSOMA2', 'https://www.codechef.com/PRACTICE/problems/INSOMA3', 'https://www.codechef.com/PRACTICE/problems/INSOMA5', 'https://www.codechef.com/PRACTICE/problems/INSOMB1', 'https://www.codechef.com/PRACTICE/problems/INSQ15_A', 'https://www.codechef.com/PRACTICE/problems/INSQ15_B', 'https://www.codechef.com/PRACTICE/problems/INSQ15_C', 'https://www.codechef.com/PRACTICE/problems/INSQ15_D', 'https://www.codechef.com/PRACTICE/problems/INSQ15_E', 'https://www.codechef.com/PRACTICE/problems/INSQ15_F', 'https://www.codechef.com/PRACTICE/problems/INSQ15_G', 'https://www.codechef.com/PRACTICE/problems/INSQ15_H', 'https://www.codechef.com/PRACTICE/problems/INTEG', 'https://www.codechef.com/PRACTICE/problems/INTERSEC', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'https://www.codechef.com/PRACTICE/problems/INTEX1', 'https://www.codechef.com/PRACTICE/problems/INTEX10', 'https://www.codechef.com/PRACTICE/problems/INTEX11', 'https://www.codechef.com/PRACTICE/problems/INTEX12', 'https://www.codechef.com/PRACTICE/problems/INTEX13', 'https://www.codechef.com/PRACTICE/problems/INTEX2', 'https://www.codechef.com/PRACTICE/problems/INTEX3', 'https://www.codechef.com/PRACTICE/problems/INTEX4', 'https://www.codechef.com/PRACTICE/problems/INTEX5', 'https://www.codechef.com/PRACTICE/problems/INTEX6', 'https://www.codechef.com/PRACTICE/problems/INTEX7', 'https://www.codechef.com/PRACTICE/problems/INTEX8', 'https://www.codechef.com/PRACTICE/problems/INTEX9', 'https://www.codechef.com/PRACTICE/problems/INTRESEC', 'https://www.codechef.com/PRACTICE/problems/INTROSRM', 'https://www.codechef.com/PRACTICE/problems/INVBINCF', 'https://www.codechef.com/PRACTICE/problems/INVERT', 'https://www.codechef.com/PRACTICE/problems/INVITES', 'https://www.codechef.com/PRACTICE/problems/IOPC06', 'https://www.codechef.com/PRACTICE/problems/IOPC1203', 'https://www.codechef.com/PRACTICE/problems/IOPC1207', 'https://www.codechef.com/PRACTICE/problems/IOPC1211', 'https://www.codechef.com/PRACTICE/problems/IOPC13B', 'https://www.codechef.com/PRACTICE/problems/IOPC13D', 'https://www.codechef.com/PRACTICE/problems/IOPC13H', 'https://www.codechef.com/PRACTICE/problems/IOPC13N', 'https://www.codechef.com/PRACTICE/problems/IOPC13O', 'https://www.codechef.com/PRACTICE/problems/IOPC13P', 'https://www.codechef.com/PRACTICE/problems/IOPC14A', 'https://www.codechef.com/PRACTICE/problems/IOPC14C', 'https://www.codechef.com/PRACTICE/problems/IOPC14F', 'https://www.codechef.com/PRACTICE/problems/IOPC14J', 'https://www.codechef.com/PRACTICE/problems/IOPC14K', 'https://www.codechef.com/PRACTICE/problems/IOPC14N', 'https://www.codechef.com/PRACTICE/problems/IOPC14O', 'https://www.codechef.com/PRACTICE/problems/IOPC14Q', 'https://www.codechef.com/PRACTICE/problems/IOPC15A', 'https://www.codechef.com/PRACTICE/problems/IOPC15C', 'https://www.codechef.com/PRACTICE/problems/IOPC15O', 'https://www.codechef.com/PRACTICE/problems/IOPC15R', 'https://www.codechef.com/PRACTICE/problems/IOPC16E', 'https://www.codechef.com/PRACTICE/problems/IOPC16H', 'https://www.codechef.com/PRACTICE/problems/IOPC16J', 'https://www.codechef.com/PRACTICE/problems/IOPC16L', 'https://www.codechef.com/PRACTICE/problems/IOPC16M', 'https://www.codechef.com/PRACTICE/problems/IOPC16N', 'https://www.codechef.com/PRACTICE/problems/IOPC16O', 'https://www.codechef.com/PRACTICE/problems/IOPC16P', 'https://www.codechef.com/PRACTICE/problems/IOPC16Q', 'https://www.codechef.com/PRACTICE/problems/IOPC16R', 'https://www.codechef.com/PRACTICE/problems/IOPC16S', 'https://www.codechef.com/PRACTICE/problems/IOPC16T', 'https://www.codechef.com/PRACTICE/problems/IOPC16U', 'https://www.codechef.com/PRACTICE/problems/IRONISL', 'https://www.codechef.com/PRACTICE/problems/ISD', 'https://www.codechef.com/PRACTICE/problems/ISITFIB', 'https://www.codechef.com/PRACTICE/problems/ISM01', 'https://www.codechef.com/PRACTICE/problems/ISM1', 'https://www.codechef.com/PRACTICE/problems/ISM3', 'https://www.codechef.com/PRACTICE/problems/ISM6', 'https://www.codechef.com/PRACTICE/problems/ISONUM', 'https://www.codechef.com/PRACTICE/problems/ITM001', 'https://www.codechef.com/PRACTICE/problems/ITM003', 'https://www.codechef.com/PRACTICE/problems/ITRA03', 'https://www.codechef.com/PRACTICE/problems/ITRA07', 'https://www.codechef.com/PRACTICE/problems/ITRIX16A', 'https://www.codechef.com/PRACTICE/problems/ITRIX16D', 'https://www.codechef.com/PRACTICE/problems/IWIN', 'https://www.codechef.com/PRACTICE/problems/J1', 'https://www.codechef.com/PRACTICE/problems/J2', 'https://www.codechef.com/PRACTICE/problems/J7', 'https://www.codechef.com/PRACTICE/problems/JABO', 'https://www.codechef.com/PRACTICE/problems/JACKPOT', 'https://www.codechef.com/PRACTICE/problems/JADEJA', 'https://www.codechef.com/PRACTICE/problems/JAGE', 'https://www.codechef.com/PRACTICE/problems/JERRYRUN', 'https://www.codechef.com/PRACTICE/problems/JERYFIBO', 'https://www.codechef.com/PRACTICE/problems/JHONNY', 'https://www.codechef.com/PRACTICE/problems/JMI00', 'https://www.codechef.com/PRACTICE/problems/JMI04', 'https://www.codechef.com/PRACTICE/problems/JNTUV1', 'https://www.codechef.com/PRACTICE/problems/JNTUV2', 'https://www.codechef.com/PRACTICE/problems/JNTUV3', 'https://www.codechef.com/PRACTICE/problems/JNTUV4', 'https://www.codechef.com/PRACTICE/problems/JOHNNY', 'https://www.codechef.com/PRACTICE/problems/JOHNY', 'https://www.codechef.com/PRACTICE/problems/JOV', 'https://www.codechef.com/PRACTICE/problems/JUMP', 'https://www.codechef.com/PRACTICE/problems/JUNONGF', 'https://www.codechef.com/PRACTICE/problems/K1', 'https://www.codechef.com/PRACTICE/problems/K15A', 'https://www.codechef.com/PRACTICE/problems/K15C', 'https://www.codechef.com/PRACTICE/problems/K15D', 'https://www.codechef.com/PRACTICE/problems/K15H', 'https://www.codechef.com/PRACTICE/problems/K16F', 'https://www.codechef.com/PRACTICE/problems/K2', 'https://www.codechef.com/PRACTICE/problems/KALKI', 'https://www.codechef.com/PRACTICE/problems/KAN13A', 'https://www.codechef.com/PRACTICE/problems/KAN13B', 'https://www.codechef.com/PRACTICE/problems/KAN13C', 'https://www.codechef.com/PRACTICE/problems/KAN13D', 'https://www.codechef.com/PRACTICE/problems/KAN13E', 'https://www.codechef.com/PRACTICE/problems/KAN13F', 'https://www.codechef.com/PRACTICE/problems/KAN13G', 'https://www.codechef.com/PRACTICE/problems/KAN13H', 'https://www.codechef.com/PRACTICE/problems/KAN15RTA', 'https://www.codechef.com/PRACTICE/problems/KAN15RTB', 'https://www.codechef.com/PRACTICE/problems/KAN15RTC', 'https://www.codechef.com/PRACTICE/problems/KAN15RTD', 'https://www.codechef.com/PRACTICE/problems/KAN15RTF', 'https://www.codechef.com/PRACTICE/problems/KAN15RTG', 'https://www.codechef.com/PRACTICE/problems/KAN15RTH', 'https://www.codechef.com/PRACTICE/problems/KAN15RTI', 'https://www.codechef.com/PRACTICE/problems/KAN15RTJ', 'https://www.codechef.com/PRACTICE/problems/KAN15RTK', 'https://www.codechef.com/PRACTICE/problems/KAN15RTL', 'https://www.codechef.com/PRACTICE/problems/KATNISS', 'https://www.codechef.com/PRACTICE/problems/KC04', 'https://www.codechef.com/PRACTICE/problems/KCHIPS', 'https://www.codechef.com/PRACTICE/problems/KCONNECT', 'https://www.codechef.com/PRACTICE/problems/KDATZERO', 'https://www.codechef.com/PRACTICE/problems/KETSWAP', 'https://www.codechef.com/PRACTICE/problems/KFORK', 'https://www.codechef.com/PRACTICE/problems/KFUNC', 'https://www.codechef.com/PRACTICE/problems/KGOOD', 'https://www.codechef.com/PRACTICE/problems/KGP13A', 'https://www.codechef.com/PRACTICE/problems/KGP13B', 'https://www.codechef.com/PRACTICE/problems/KGP13C', 'https://www.codechef.com/PRACTICE/problems/KGP13F', 'https://www.codechef.com/PRACTICE/problems/KGP13G', 'https://www.codechef.com/PRACTICE/problems/KGP13H', 'https://www.codechef.com/PRACTICE/problems/KGP13I', 'https://www.codechef.com/PRACTICE/problems/KGP14A', 'https://www.codechef.com/PRACTICE/problems/KGP14B', 'https://www.codechef.com/PRACTICE/problems/KGP14C', 'https://www.codechef.com/PRACTICE/problems/KGP14D', 'https://www.codechef.com/PRACTICE/problems/KGP14E', 'https://www.codechef.com/PRACTICE/problems/KGP14F', 'https://www.codechef.com/PRACTICE/problems/KGP14H', 'https://www.codechef.com/PRACTICE/problems/KGP14I', 'https://www.codechef.com/PRACTICE/problems/KGP14J', 'https://www.codechef.com/PRACTICE/problems/KING', 'https://www.codechef.com/PRACTICE/problems/KINGCON', 'https://www.codechef.com/PRACTICE/problems/KINGSHIP', 'https://www.codechef.com/PRACTICE/problems/KINT', 'https://www.codechef.com/PRACTICE/problems/KJCC01', 'https://www.codechef.com/PRACTICE/problems/KJCC02', 'https://www.codechef.com/PRACTICE/problems/KJCC03', 'https://www.codechef.com/PRACTICE/problems/KJCC05', 'https://www.codechef.com/PRACTICE/problems/KJCC12', 'https://www.codechef.com/PRACTICE/problems/KJCC13', 'https://www.codechef.com/PRACTICE/problems/KMHAMHA', 'https://www.codechef.com/PRACTICE/problems/KNIGHT01', 'https://www.codechef.com/PRACTICE/problems/KNIGHT03', 'https://www.codechef.com/PRACTICE/problems/KNIGHT05', 'https://www.codechef.com/PRACTICE/problems/KNIGHTMV', 'https://www.codechef.com/PRACTICE/problems/KNODES', 'https://www.codechef.com/PRACTICE/problems/KNPSK', 'https://www.codechef.com/PRACTICE/problems/KOKT02', 'https://www.codechef.com/PRACTICE/problems/KOKT03', 'https://www.codechef.com/PRACTICE/problems/KOKT05', 'https://www.codechef.com/PRACTICE/problems/KOL1502', 'https://www.codechef.com/PRACTICE/problems/KOL1504', 'https://www.codechef.com/PRACTICE/problems/KOL1505', 'https://www.codechef.com/PRACTICE/problems/KOL1506', 'https://www.codechef.com/PRACTICE/problems/KOL1508', 'https://www.codechef.com/PRACTICE/problems/KOL1509', 'https://www.codechef.com/PRACTICE/problems/KOL1510', 'https://www.codechef.com/PRACTICE/problems/KOL15A', 'https://www.codechef.com/PRACTICE/problems/KOL15B', 'https://www.codechef.com/PRACTICE/problems/KOL15C', 'https://www.codechef.com/PRACTICE/problems/KPRIME', 'https://www.codechef.com/PRACTICE/problems/KSPHERES', 'https://www.codechef.com/PRACTICE/problems/KSUBSUM', 'https://www.codechef.com/PRACTICE/problems/KSUM', 'https://www.codechef.com/PRACTICE/problems/KTHCON', 'https://www.codechef.com/PRACTICE/problems/KTHPATH', 'https://www.codechef.com/PRACTICE/problems/KTOUR', 'https://www.codechef.com/PRACTICE/problems/KTTABLE', 'https://www.codechef.com/PRACTICE/problems/KUNIQUE', 'https://www.codechef.com/PRACTICE/problems/KWERIES', 'https://www.codechef.com/PRACTICE/problems/L2GRAPH', 'https://www.codechef.com/PRACTICE/problems/LABEL', 'https://www.codechef.com/PRACTICE/problems/LADDU', 'https://www.codechef.com/PRACTICE/problems/LAPIN', 'https://www.codechef.com/PRACTICE/problems/LARGEST', 'https://www.codechef.com/PRACTICE/problems/LASTDIG', 'https://www.codechef.com/PRACTICE/problems/LCH15CD', 'https://www.codechef.com/PRACTICE/problems/LCH15JAB', 'https://www.codechef.com/PRACTICE/problems/LCH15JEF', 'https://www.codechef.com/PRACTICE/problems/LCH15JGH', 'https://www.codechef.com/PRACTICE/problems/LCKYST', 'https://www.codechef.com/PRACTICE/problems/LCOLLIS', 'https://www.codechef.com/PRACTICE/problems/LCPESY', 'https://www.codechef.com/PRACTICE/problems/LCPMAX', 'https://www.codechef.com/PRACTICE/problems/LEALCO', 'https://www.codechef.com/PRACTICE/problems/LEBALONS', 'https://www.codechef.com/PRACTICE/problems/LEBAMBOO', 'https://www.codechef.com/PRACTICE/problems/LEBINARY', 'https://www.codechef.com/PRACTICE/problems/LEBLOCKS', 'https://www.codechef.com/PRACTICE/problems/LEBOBBLE', 'https://www.codechef.com/PRACTICE/problems/LEBOMBS', 'https://www.codechef.com/PRACTICE/problems/LECANDY', 'https://www.codechef.com/PRACTICE/problems/LECARDS', 'https://www.codechef.com/PRACTICE/problems/LEDIV', 'https://www.codechef.com/PRACTICE/problems/LEEXAMS', 'https://www.codechef.com/PRACTICE/problems/LEFEED', 'https://www.codechef.com/PRACTICE/problems/LELEMON', 'https://www.codechef.com/PRACTICE/problems/LELOUCH2', 'https://www.codechef.com/PRACTICE/problems/LEMAGIC', 'https://www.codechef.com/PRACTICE/problems/LEMOUSE', 'https://www.codechef.com/PRACTICE/problems/LEMOVIE', 'https://www.codechef.com/PRACTICE/problems/LEMUSIC', 'https://www.codechef.com/PRACTICE/problems/LEPAINT', 'https://www.codechef.com/PRACTICE/problems/LEPERMUT', 'https://www.codechef.com/PRACTICE/problems/LETSTOSS', 'https://www.codechef.com/PRACTICE/problems/LEVY', 'https://www.codechef.com/PRACTICE/problems/LFEB14A', 'https://www.codechef.com/PRACTICE/problems/LFEB14B', 'https://www.codechef.com/PRACTICE/problems/LFIRE', 'https://www.codechef.com/PRACTICE/problems/LFIVES', 'https://www.codechef.com/PRACTICE/problems/LFS', 'https://www.codechef.com/PRACTICE/problems/LIFE', 'https://www.codechef.com/PRACTICE/problems/LIGHTHSE', 'https://www.codechef.com/PRACTICE/problems/LIGHTS', 'https://www.codechef.com/PRACTICE/problems/LINCAN', 'https://www.codechef.com/PRACTICE/problems/LINCOM', 'https://www.codechef.com/PRACTICE/problems/LINEAR', 'https://www.codechef.com/PRACTICE/problems/LINEPROB', 'https://www.codechef.com/PRACTICE/problems/LINFRI', 'https://www.codechef.com/PRACTICE/problems/LINGRP', 'https://www.codechef.com/PRACTICE/problems/LINNUM', 'https://www.codechef.com/PRACTICE/problems/LINSUB', 'https://www.codechef.com/PRACTICE/problems/LINXOR', 'https://www.codechef.com/PRACTICE/problems/LISA', 'https://www.codechef.com/PRACTICE/problems/LISBYONE', 'https://www.codechef.com/PRACTICE/problems/LISLDS', 'https://www.codechef.com/PRACTICE/problems/LIZARDS', 'https://www.codechef.com/PRACTICE/problems/LIZARDS2', 'https://www.codechef.com/PRACTICE/problems/LMA1', 'https://www.codechef.com/PRACTICE/problems/LMATRIX2', 'https://www.codechef.com/PRACTICE/problems/LMDP1103', 'https://www.codechef.com/PRACTICE/problems/LNUM', 'https://www.codechef.com/PRACTICE/problems/LOC01', 'https://www.codechef.com/PRACTICE/problems/LOCKS', 'https://www.codechef.com/PRACTICE/problems/LOCRECT', 'https://www.codechef.com/PRACTICE/problems/LOCRPT', 'https://www.codechef.com/PRACTICE/problems/LOGGERS', 'https://www.codechef.com/PRACTICE/problems/LOGIC1', 'https://www.codechef.com/PRACTICE/problems/LOGIC3', 'https://www.codechef.com/PRACTICE/problems/LOKBIL', 'https://www.codechef.com/PRACTICE/problems/LOLOL', 'https://www.codechef.com/PRACTICE/problems/LONGART', 'https://www.codechef.com/PRACTICE/problems/LOSTPW', 'https://www.codechef.com/PRACTICE/problems/LOTERY', 'https://www.codechef.com/PRACTICE/problems/LOVE', 'https://www.codechef.com/PRACTICE/problems/LOVEA', 'https://www.codechef.com/PRACTICE/problems/LOWSUM', 'https://www.codechef.com/PRACTICE/problems/LPAIR', 'https://www.codechef.com/PRACTICE/problems/LPATH', 'https://www.codechef.com/PRACTICE/problems/LSTGRPH', 'https://www.codechef.com/PRACTICE/problems/LSTR', 'https://www.codechef.com/PRACTICE/problems/LUCKFILL', 'https://www.codechef.com/PRACTICE/problems/LUCKFOUR', 'https://www.codechef.com/PRACTICE/problems/LUCKG', 'https://www.codechef.com/PRACTICE/problems/LUCKPAL', 'https://www.codechef.com/PRACTICE/problems/LUCKY', 'https://www.codechef.com/PRACTICE/problems/LUCKY1', 'https://www.codechef.com/PRACTICE/problems/LUCKY10', 'https://www.codechef.com/PRACTICE/problems/LUCKY2', 'https://www.codechef.com/PRACTICE/problems/LUCKY4', 'https://www.codechef.com/PRACTICE/problems/LUCKY5', 'https://www.codechef.com/PRACTICE/problems/LUCKY8', 'https://www.codechef.com/PRACTICE/problems/LUCKYBAL', 'https://www.codechef.com/PRACTICE/problems/LUCKYR', 'https://www.codechef.com/PRACTICE/problems/LUCKYSTR', 'https://www.codechef.com/PRACTICE/problems/LUKYDRIV', 'https://www.codechef.com/PRACTICE/problems/LVP', 'https://www.codechef.com/PRACTICE/problems/LWS', 'https://www.codechef.com/PRACTICE/problems/LYRC', 'https://www.codechef.com/PRACTICE/problems/M2', 'https://www.codechef.com/PRACTICE/problems/MAANDI', 'https://www.codechef.com/PRACTICE/problems/MAC01', 'https://www.codechef.com/PRACTICE/problems/MAC04', 'https://www.codechef.com/PRACTICE/problems/MAGICSTR', 'https://www.codechef.com/PRACTICE/problems/MAJNUM', 'https://www.codechef.com/PRACTICE/problems/MAKEART', 'https://www.codechef.com/PRACTICE/problems/MAKELIS', 'https://www.codechef.com/PRACTICE/problems/MAKPALIN', 'https://www.codechef.com/PRACTICE/problems/MANIP2', 'https://www.codechef.com/PRACTICE/problems/MANIP3', 'https://www.codechef.com/PRACTICE/problems/MANIP5', 'https://www.codechef.com/PRACTICE/problems/MANYCHEF', 'https://www.codechef.com/PRACTICE/problems/MANYLIST', 'https://www.codechef.com/PRACTICE/problems/MARBLEGF', 'https://www.codechef.com/PRACTICE/problems/MARBLES', 'https://www.codechef.com/PRACTICE/problems/MARCHA1', 'https://www.codechef.com/PRACTICE/problems/MARCHA2', 'https://www.codechef.com/PRACTICE/problems/MARCHA4', 'https://www.codechef.com/PRACTICE/problems/MARKS', 'https://www.codechef.com/PRACTICE/problems/MASNUM', 'https://www.codechef.com/PRACTICE/problems/MASTRIAN', 'https://www.codechef.com/PRACTICE/problems/MATHS', 'https://www.codechef.com/PRACTICE/problems/MATRIX2', 'https://www.codechef.com/PRACTICE/problems/MAXCOMB', 'https://www.codechef.com/PRACTICE/problems/MAXCOMP', 'https://www.codechef.com/PRACTICE/problems/MAXCOUNT', 'https://www.codechef.com/PRACTICE/problems/MAXCROSS', 'https://www.codechef.com/PRACTICE/problems/MAXDIFF', 'https://www.codechef.com/PRACTICE/problems/MAXDIFFW', 'https://www.codechef.com/PRACTICE/problems/MAXDIST', 'https://www.codechef.com/PRACTICE/problems/MAXGCD', 'https://www.codechef.com/PRACTICE/problems/MAXISUM', 'https://www.codechef.com/PRACTICE/problems/MAXMAGIC', 'https://www.codechef.com/PRACTICE/problems/MAXMATCH', 'https://www.codechef.com/PRACTICE/problems/MAXPR', 'https://www.codechef.com/PRACTICE/problems/MAXRCHR', 'https://www.codechef.com/PRACTICE/problems/MAXRECT', 'https://www.codechef.com/PRACTICE/problems/MAXSUM', 'https://www.codechef.com/PRACTICE/problems/MAZE', 'https://www.codechef.com/PRACTICE/problems/MBOARD', 'https://www.codechef.com/PRACTICE/problems/MCHAIRS', 'https://www.codechef.com/PRACTICE/problems/MCHEF', 'https://www.codechef.com/PRACTICE/problems/MDIST', 'https://www.codechef.com/PRACTICE/problems/MDOSA', 'https://www.codechef.com/PRACTICE/problems/METEORAK', 'https://www.codechef.com/PRACTICE/problems/MGCH3D', 'https://www.codechef.com/PRACTICE/problems/MGCHGYM', 'https://www.codechef.com/PRACTICE/problems/MGCRNK', 'https://www.codechef.com/PRACTICE/problems/MHGOC02', 'https://www.codechef.com/PRACTICE/problems/MHTPAIR', 'https://www.codechef.com/PRACTICE/problems/MIKE1', 'https://www.codechef.com/PRACTICE/problems/MIKE2', 'https://www.codechef.com/PRACTICE/problems/MIKE3', 'https://www.codechef.com/PRACTICE/problems/MILESTN', 'https://www.codechef.com/PRACTICE/problems/MIME2', 'https://www.codechef.com/PRACTICE/problems/MINESWPR', 'https://www.codechef.com/PRACTICE/problems/MINPOLY', 'https://www.codechef.com/PRACTICE/problems/MINXOR', 'https://www.codechef.com/PRACTICE/problems/MIRRORS', 'https://www.codechef.com/PRACTICE/problems/MISINTER', 'https://www.codechef.com/PRACTICE/problems/MISNUM', 'https://www.codechef.com/PRACTICE/problems/MISSNUM', 'https://www.codechef.com/PRACTICE/problems/MISSP', 'https://www.codechef.com/PRACTICE/problems/MISTERM', 'https://www.codechef.com/PRACTICE/problems/MIXTURES', 'https://www.codechef.com/PRACTICE/problems/MKSQR', 'https://www.codechef.com/PRACTICE/problems/MLCHEF', 'https://www.codechef.com/PRACTICE/problems/MMADNESS', 'https://www.codechef.com/PRACTICE/problems/MMPROD', 'https://www.codechef.com/PRACTICE/problems/MMSUM', 'https://www.codechef.com/PRACTICE/problems/MNMX', 'https://www.codechef.com/PRACTICE/problems/MOD', 'https://www.codechef.com/PRACTICE/problems/MODQ', 'https://www.codechef.com/PRACTICE/problems/MONEY', 'https://www.codechef.com/PRACTICE/problems/MONOPLOY', 'https://www.codechef.com/PRACTICE/problems/MONTRANS', 'https://www.codechef.com/PRACTICE/problems/MOREFB', 'https://www.codechef.com/PRACTICE/problems/MOSTDIST', 'https://www.codechef.com/PRACTICE/problems/MOU1H', 'https://www.codechef.com/PRACTICE/problems/MOU2H', 'https://www.codechef.com/PRACTICE/problems/MOVES', 'https://www.codechef.com/PRACTICE/problems/MOVF', 'https://www.codechef.com/PRACTICE/problems/MOVIEWKN', 'https://www.codechef.com/PRACTICE/problems/MPAIR', 'https://www.codechef.com/PRACTICE/problems/MPROD', 'https://www.codechef.com/PRACTICE/problems/MPROJ', 'https://www.codechef.com/PRACTICE/problems/MPS04', 'https://www.codechef.com/PRACTICE/problems/MPSTME1', 'https://www.codechef.com/PRACTICE/problems/MPSTME4', 'https://www.codechef.com/PRACTICE/problems/MQRY', 'https://www.codechef.com/PRACTICE/problems/MRIU1', 'https://www.codechef.com/PRACTICE/problems/MRIU11', 'https://www.codechef.com/PRACTICE/problems/MRIU12', 'https://www.codechef.com/PRACTICE/problems/MRIU13', 'https://www.codechef.com/PRACTICE/problems/MRIU3', 'https://www.codechef.com/PRACTICE/problems/MRIU4', 'https://www.codechef.com/PRACTICE/problems/MRIU6', 'https://www.codechef.com/PRACTICE/problems/MRIU9', 'https://www.codechef.com/PRACTICE/problems/MRS', 'https://www.codechef.com/PRACTICE/problems/MSDBIN', 'https://www.codechef.com/PRACTICE/problems/MSTEP', 'https://www.codechef.com/PRACTICE/problems/MSTICK', 'https://www.codechef.com/PRACTICE/problems/MSTRINGS', 'https://www.codechef.com/PRACTICE/problems/MTMXSUM', 'https://www.codechef.com/PRACTICE/problems/MTRICK', 'https://www.codechef.com/PRACTICE/problems/MTRWY', 'https://www.codechef.com/PRACTICE/problems/MUFFINS', 'https://www.codechef.com/PRACTICE/problems/MUFFINS3', 'https://www.codechef.com/PRACTICE/problems/MULDIV', 'https://www.codechef.com/PRACTICE/problems/MULMAGIC', 'https://www.codechef.com/PRACTICE/problems/MULTIPLY', 'https://www.codechef.com/PRACTICE/problems/MULTISRM', 'https://www.codechef.com/PRACTICE/problems/MULTQ3', 'https://www.codechef.com/PRACTICE/problems/MUPDO', 'https://www.codechef.com/PRACTICE/problems/MVCOIN', 'https://www.codechef.com/PRACTICE/problems/MX', 'https://www.codechef.com/PRACTICE/problems/MXCNT8', 'https://www.codechef.com/PRACTICE/problems/MXSM', 'https://www.codechef.com/PRACTICE/problems/MXSUBARR', 'https://www.codechef.com/PRACTICE/problems/MXZERO', 'https://www.codechef.com/PRACTICE/problems/N4', 'https://www.codechef.com/PRACTICE/problems/NAME1', 'https://www.codechef.com/PRACTICE/problems/NAME2', 'https://www.codechef.com/PRACTICE/problems/NBSUM', 'https://www.codechef.com/PRACTICE/problems/NCC01', 'https://www.codechef.com/PRACTICE/problems/NCC3', 'https://www.codechef.com/PRACTICE/problems/NDIFFPAL', 'https://www.codechef.com/PRACTICE/problems/NDLVOTE', 'https://www.codechef.com/PRACTICE/problems/NDUNGEON', 'https://www.codechef.com/PRACTICE/problems/NEURON2', 'https://www.codechef.com/PRACTICE/problems/NEURONB1', 'https://www.codechef.com/PRACTICE/problems/NEURONB3', 'https://www.codechef.com/PRACTICE/problems/NEURONB4', 'https://www.codechef.com/PRACTICE/problems/NEWPH', 'https://www.codechef.com/PRACTICE/problems/NEWSCH', 'https://www.codechef.com/PRACTICE/problems/NEXTNUM', 'https://www.codechef.com/PRACTICE/problems/NEXUS00', 'https://www.codechef.com/PRACTICE/problems/NEXUS01', 'https://www.codechef.com/PRACTICE/problems/NEXUS02', 'https://www.codechef.com/PRACTICE/problems/NEXUS03', 'https://www.codechef.com/PRACTICE/problems/NF02', 'https://www.codechef.com/PRACTICE/problems/NF03', 'https://www.codechef.com/PRACTICE/problems/NFEB4', 'https://www.codechef.com/PRACTICE/problems/NGAME', 'https://www.codechef.com/PRACTICE/problems/NGTBIT', 'https://www.codechef.com/PRACTICE/problems/NI01', 'https://www.codechef.com/PRACTICE/problems/NI02', 'https://www.codechef.com/PRACTICE/problems/NI04', 'https://www.codechef.com/PRACTICE/problems/NI05', 'https://www.codechef.com/PRACTICE/problems/NICENESS', 'https://www.codechef.com/PRACTICE/problems/NICEQUAD', 'https://www.codechef.com/PRACTICE/problems/NICPRM', 'https://www.codechef.com/PRACTICE/problems/NITA01', 'https://www.codechef.com/PRACTICE/problems/NITA02', 'https://www.codechef.com/PRACTICE/problems/NITA05', 'https://www.codechef.com/PRACTICE/problems/NITA07', 'https://www.codechef.com/PRACTICE/problems/NITA09', 'https://www.codechef.com/PRACTICE/problems/NMAGIC', 'https://www.codechef.com/PRACTICE/problems/NOCODING', 'https://www.codechef.com/PRACTICE/problems/NOKIA', 'https://www.codechef.com/PRACTICE/problems/NOLOGIC', 'https://www.codechef.com/PRACTICE/problems/NONPALIN', 'https://www.codechef.com/PRACTICE/problems/NOPC1', 'https://www.codechef.com/PRACTICE/problems/NOPC10', 'https://www.codechef.com/PRACTICE/problems/NOPC3', 'https://www.codechef.com/PRACTICE/problems/NOPC4', 'https://www.codechef.com/PRACTICE/problems/NOPC6', 'https://www.codechef.com/PRACTICE/problems/NOPC7', 'https://www.codechef.com/PRACTICE/problems/NOPC9', 'https://www.codechef.com/PRACTICE/problems/NOTATRI', 'https://www.codechef.com/PRACTICE/problems/NOWAYS', 'https://www.codechef.com/PRACTICE/problems/NPRM', 'https://www.codechef.com/PRACTICE/problems/NRTKH', 'https://www.codechef.com/PRACTICE/problems/NSIT11', 'https://www.codechef.com/PRACTICE/problems/NSIT13', 'https://www.codechef.com/PRACTICE/problems/NSIT14', 'https://www.codechef.com/PRACTICE/problems/NSIT15', 'https://www.codechef.com/PRACTICE/problems/NTHCIR', 'https://www.codechef.com/PRACTICE/problems/NTSK', 'https://www.codechef.com/PRACTICE/problems/NU01', 'https://www.codechef.com/PRACTICE/problems/NU03', 'https://www.codechef.com/PRACTICE/problems/NUKES', 'https://www.codechef.com/PRACTICE/problems/NUMBERS', 'https://www.codechef.com/PRACTICE/problems/NUMFACT', 'https://www.codechef.com/PRACTICE/problems/NUMGAME', 'https://www.codechef.com/PRACTICE/problems/NUMGAME2', 'https://www.codechef.com/PRACTICE/problems/NUMMAX3', 'https://www.codechef.com/PRACTICE/problems/NUMPATH', 'https://www.codechef.com/PRACTICE/problems/NUMSET', 'https://www.codechef.com/PRACTICE/problems/NUMSUM', 'https://www.codechef.com/PRACTICE/problems/NWAYS', 'https://www.codechef.com/PRACTICE/problems/NX', 'https://www.codechef.com/PRACTICE/problems/NXTPALIN', 'https://www.codechef.com/PRACTICE/problems/NYUMAT', 'https://www.codechef.com/PRACTICE/problems/NYUMTEA', 'https://www.codechef.com/PRACTICE/problems/NYUPLOCK', 'https://www.codechef.com/PRACTICE/problems/ODD86', 'https://www.codechef.com/PRACTICE/problems/ODDBIN', 'https://www.codechef.com/PRACTICE/problems/ODDDIV', 'https://www.codechef.com/PRACTICE/problems/ODDEVENX', 'https://www.codechef.com/PRACTICE/problems/OJUMPS', 'https://www.codechef.com/PRACTICE/problems/OLIVE', 'https://www.codechef.com/PRACTICE/problems/OMWG', 'https://www.codechef.com/PRACTICE/problems/ONEKING', 'https://www.codechef.com/PRACTICE/problems/ONOZ', 'https://www.codechef.com/PRACTICE/problems/ONP', 'https://www.codechef.com/PRACTICE/problems/OPC1601', 'https://www.codechef.com/PRACTICE/problems/OPC1602', 'https://www.codechef.com/PRACTICE/problems/OPC1603', 'https://www.codechef.com/PRACTICE/problems/OPC1604', 'https://www.codechef.com/PRACTICE/problems/ORACLCS', 'https://www.codechef.com/PRACTICE/problems/ORDERS', 'https://www.codechef.com/PRACTICE/problems/OV1', 'https://www.codechef.com/PRACTICE/problems/OVERTAKE', 'https://www.codechef.com/PRACTICE/problems/P1308', 'https://www.codechef.com/PRACTICE/problems/P1Z2S', 'https://www.codechef.com/PRACTICE/problems/P8', 'https://www.codechef.com/PRACTICE/problems/PACKBAND', 'https://www.codechef.com/PRACTICE/problems/PAINTBOX', 'https://www.codechef.com/PRACTICE/problems/PAIRCLST', 'https://www.codechef.com/PRACTICE/problems/PAIRING', 'https://www.codechef.com/PRACTICE/problems/PAIRSUM', 'https://www.codechef.com/PRACTICE/problems/PALGAME', 'https://www.codechef.com/PRACTICE/problems/PALHAPPY', 'https://www.codechef.com/PRACTICE/problems/PALIN', 'https://www.codechef.com/PRACTICE/problems/PALIN3', 'https://www.codechef.com/PRACTICE/problems/PALIND', 'https://www.codechef.com/PRACTICE/problems/PALINDR', 'https://www.codechef.com/PRACTICE/problems/PALL01', 'https://www.codechef.com/PRACTICE/problems/PALPROB', 'https://www.codechef.com/PRACTICE/problems/PALSTR', 'https://www.codechef.com/PRACTICE/problems/PANSTACK', 'https://www.codechef.com/PRACTICE/problems/PAR', 'https://www.codechef.com/PRACTICE/problems/PARITREE', 'https://www.codechef.com/PRACTICE/problems/PARKWOE', 'https://www.codechef.com/PRACTICE/problems/PARTH', 'https://www.codechef.com/PRACTICE/problems/PASCAL', 'https://www.codechef.com/PRACTICE/problems/PASSSYS', 'https://www.codechef.com/PRACTICE/problems/PATHS', 'https://www.codechef.com/PRACTICE/problems/PATHSG', 'https://www.codechef.com/PRACTICE/problems/PATTMATC', 'https://www.codechef.com/PRACTICE/problems/PBUZZ2', 'https://www.codechef.com/PRACTICE/problems/PBUZZ3', 'https://www.codechef.com/PRACTICE/problems/PBUZZ4', 'https://www.codechef.com/PRACTICE/problems/PBUZZ6', 'https://www.codechef.com/PRACTICE/problems/PC05', 'https://www.codechef.com/PRACTICE/problems/PCHIPS', 'https://www.codechef.com/PRACTICE/problems/PCSC1', 'https://www.codechef.com/PRACTICE/problems/PCSC2', 'https://www.codechef.com/PRACTICE/problems/PCSC3', 'https://www.codechef.com/PRACTICE/problems/PCSC4', 'https://www.codechef.com/PRACTICE/problems/PCSC6', 'https://www.codechef.com/PRACTICE/problems/PCSC7', 'https://www.codechef.com/PRACTICE/problems/PCYCLE', 'https://www.codechef.com/PRACTICE/problems/PD13', 'https://www.codechef.com/PRACTICE/problems/PD22', 'https://www.codechef.com/PRACTICE/problems/PD23', 'https://www.codechef.com/PRACTICE/problems/PD31', 'https://www.codechef.com/PRACTICE/problems/PD33', 'https://www.codechef.com/PRACTICE/problems/PEAKS', 'https://www.codechef.com/PRACTICE/problems/PEOPLOVE', 'https://www.codechef.com/PRACTICE/problems/PERFECT', 'https://www.codechef.com/PRACTICE/problems/PERFTIME', 'https://www.codechef.com/PRACTICE/problems/PERHIL', 'https://www.codechef.com/PRACTICE/problems/PERM', 'https://www.codechef.com/PRACTICE/problems/PERMSUFF', 'https://www.codechef.com/PRACTICE/problems/PERMUT2', 'https://www.codechef.com/PRACTICE/problems/PERSHFTS', 'https://www.codechef.com/PRACTICE/problems/PETERSEN', 'https://www.codechef.com/PRACTICE/problems/PETRM', 'https://www.codechef.com/PRACTICE/problems/PG', 'https://www.codechef.com/PRACTICE/problems/PGM4', 'https://www.codechef.com/PRACTICE/problems/PHYSICS', 'https://www.codechef.com/PRACTICE/problems/PIANO1', 'https://www.codechef.com/PRACTICE/problems/PINOCH1', 'https://www.codechef.com/PRACTICE/problems/PINOCH2', 'https://www.codechef.com/PRACTICE/problems/PLANEDIV', 'https://www.codechef.com/PRACTICE/problems/PLAYFIT', 'https://www.codechef.com/PRACTICE/problems/PLGRM', 'https://www.codechef.com/PRACTICE/problems/PLND', 'https://www.codechef.com/PRACTICE/problems/PLTGRP', 'https://www.codechef.com/PRACTICE/problems/PLUS', 'https://www.codechef.com/PRACTICE/problems/PLZLYKME', 'https://www.codechef.com/PRACTICE/problems/PMARK', 'https://www.codechef.com/PRACTICE/problems/PNTNG', 'https://www.codechef.com/PRACTICE/problems/PNUM', 'https://www.codechef.com/PRACTICE/problems/POFACT', 'https://www.codechef.com/PRACTICE/problems/POINTS', 'https://www.codechef.com/PRACTICE/problems/POKER', 'https://www.codechef.com/PRACTICE/problems/POLYDIFR', 'https://www.codechef.com/PRACTICE/problems/POLYEVAL', 'https://www.codechef.com/PRACTICE/problems/POMUSE', 'https://www.codechef.com/PRACTICE/problems/POPT', 'https://www.codechef.com/PRACTICE/problems/POSTAL', 'https://www.codechef.com/PRACTICE/problems/POSTIT', 'https://www.codechef.com/PRACTICE/problems/POTATOES', 'https://www.codechef.com/PRACTICE/problems/POUR1', 'https://www.codechef.com/PRACTICE/problems/POWER2', 'https://www.codechef.com/PRACTICE/problems/POWERMUL', 'https://www.codechef.com/PRACTICE/problems/POYBLD', 'https://www.codechef.com/PRACTICE/problems/POYHTL', 'https://www.codechef.com/PRACTICE/problems/POYNBRG', 'https://www.codechef.com/PRACTICE/problems/POYPCRD', 'https://www.codechef.com/PRACTICE/problems/POYPFIB', 'https://www.codechef.com/PRACTICE/problems/POYTTC', 'https://www.codechef.com/PRACTICE/problems/PP', 'https://www.codechef.com/PRACTICE/problems/PPCTS', 'https://www.codechef.com/PRACTICE/problems/PPERM', 'https://www.codechef.com/PRACTICE/problems/PPLUCKY', 'https://www.codechef.com/PRACTICE/problems/PPNUM', 'https://www.codechef.com/PRACTICE/problems/PPOW', 'https://www.codechef.com/PRACTICE/problems/PPSUM', 'https://www.codechef.com/PRACTICE/problems/PPTEST', 'https://www.codechef.com/PRACTICE/problems/PPTREE', 'https://www.codechef.com/PRACTICE/problems/PPXOR', 'https://www.codechef.com/PRACTICE/problems/PRAC', 'https://www.codechef.com/PRACTICE/problems/PRAYAS01', 'https://www.codechef.com/PRACTICE/problems/PRB01', 'https://www.codechef.com/PRACTICE/problems/PRCNSR1', 'https://www.codechef.com/PRACTICE/problems/PRCNSR2', 'https://www.codechef.com/PRACTICE/problems/PRCNSR3', 'https://www.codechef.com/PRACTICE/problems/PRCNSR4', 'https://www.codechef.com/PRACTICE/problems/PRCNSR5', 'https://www.codechef.com/PRACTICE/problems/PRCNSR6', 'https://www.codechef.com/PRACTICE/problems/PREDICT', 'https://www.codechef.com/PRACTICE/problems/PREE01', 'https://www.codechef.com/PRACTICE/problems/PREPARE', 'https://www.codechef.com/PRACTICE/problems/PRESTI', 'https://www.codechef.com/PRACTICE/problems/PRETNUM', 'https://www.codechef.com/PRACTICE/problems/PRFUN', 'https://www.codechef.com/PRACTICE/problems/PRGEN6', 'https://www.codechef.com/PRACTICE/problems/PRGIFT', 'https://www.codechef.com/PRACTICE/problems/PRI01', 'https://www.codechef.com/PRACTICE/problems/PRIME', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'https://www.codechef.com/PRACTICE/problems/PRIMEDST', 'https://www.codechef.com/PRACTICE/problems/PRIMEOB', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'https://www.codechef.com/PRACTICE/problems/PRIMPATT', 'https://www.codechef.com/PRACTICE/problems/PRINTF', 'https://www.codechef.com/PRACTICE/problems/PRLADDU', 'https://www.codechef.com/PRACTICE/problems/PRLIN', 'https://www.codechef.com/PRACTICE/problems/PRMARTH', 'https://www.codechef.com/PRACTICE/problems/PRMAX', 'https://www.codechef.com/PRACTICE/problems/PROB', 'https://www.codechef.com/PRACTICE/problems/PROMO', 'https://www.codechef.com/PRACTICE/problems/PROSUM', 'https://www.codechef.com/PRACTICE/problems/PRPAL3', 'https://www.codechef.com/PRACTICE/problems/PRPALIN', 'https://www.codechef.com/PRACTICE/problems/PRPALN', 'https://www.codechef.com/PRACTICE/problems/PRPOTION', 'https://www.codechef.com/PRACTICE/problems/PRST', 'https://www.codechef.com/PRACTICE/problems/PRVG03', 'https://www.codechef.com/PRACTICE/problems/PRVG151', 'https://www.codechef.com/PRACTICE/problems/PRVG153', 'https://www.codechef.com/PRACTICE/problems/PRVG154', 'https://www.codechef.com/PRACTICE/problems/PRYS01', 'https://www.codechef.com/PRACTICE/problems/PRYS09', 'https://www.codechef.com/PRACTICE/problems/PSG03', 'https://www.codechef.com/PRACTICE/problems/PSTRINGS', 'https://www.codechef.com/PRACTICE/problems/PSUDO1', 'https://www.codechef.com/PRACTICE/problems/PSUDO2', 'https://www.codechef.com/PRACTICE/problems/PSUDO4', 'https://www.codechef.com/PRACTICE/problems/PT1', 'https://www.codechef.com/PRACTICE/problems/PT2', 'https://www.codechef.com/PRACTICE/problems/PT3', 'https://www.codechef.com/PRACTICE/problems/PTOSS', 'https://www.codechef.com/PRACTICE/problems/PUCK', 'https://www.codechef.com/PRACTICE/problems/PUNBAN', 'https://www.codechef.com/PRACTICE/problems/PUPPYCT', 'https://www.codechef.com/PRACTICE/problems/PUPPYGCD', 'https://www.codechef.com/PRACTICE/problems/PUPPYGM', 'https://www.codechef.com/PRACTICE/problems/PUPPYPLM', 'https://www.codechef.com/PRACTICE/problems/QCHEF', 'https://www.codechef.com/PRACTICE/problems/QMARKS', 'https://www.codechef.com/PRACTICE/problems/QMAXTRIX', 'https://www.codechef.com/PRACTICE/problems/QNUMBER', 'https://www.codechef.com/PRACTICE/problems/QPAIRS', 'https://www.codechef.com/PRACTICE/problems/QPALIN', 'https://www.codechef.com/PRACTICE/problems/QPOINT', 'https://www.codechef.com/PRACTICE/problems/QRECT', 'https://www.codechef.com/PRACTICE/problems/QSET', 'https://www.codechef.com/PRACTICE/problems/QSTRING', 'https://www.codechef.com/PRACTICE/problems/QTREE', 'https://www.codechef.com/PRACTICE/problems/QTREE6', 'https://www.codechef.com/PRACTICE/problems/QUAD', 'https://www.codechef.com/PRACTICE/problems/QUARK5', 'https://www.codechef.com/PRACTICE/problems/QUCOATO', 'https://www.codechef.com/PRACTICE/problems/QUCOBIC', 'https://www.codechef.com/PRACTICE/problems/QUCOCYL', 'https://www.codechef.com/PRACTICE/problems/QUCOITA', 'https://www.codechef.com/PRACTICE/problems/QUCOLCM', 'https://www.codechef.com/PRACTICE/problems/QUERIES', 'https://www.codechef.com/PRACTICE/problems/QUERY', 'https://www.codechef.com/PRACTICE/problems/QUEST', 'https://www.codechef.com/PRACTICE/problems/QUTREE', 'https://www.codechef.com/PRACTICE/problems/R101', 'https://www.codechef.com/PRACTICE/problems/R102', 'https://www.codechef.com/PRACTICE/problems/R103', 'https://www.codechef.com/PRACTICE/problems/R302', 'https://www.codechef.com/PRACTICE/problems/R303', 'https://www.codechef.com/PRACTICE/problems/RACELANE', 'https://www.codechef.com/PRACTICE/problems/RACEWARS', 'https://www.codechef.com/PRACTICE/problems/RAGOOD', 'https://www.codechef.com/PRACTICE/problems/RAILGADI', 'https://www.codechef.com/PRACTICE/problems/RAINBOWB', 'https://www.codechef.com/PRACTICE/problems/RAMSUR', 'https://www.codechef.com/PRACTICE/problems/RANKA', 'https://www.codechef.com/PRACTICE/problems/RANKLIST', 'https://www.codechef.com/PRACTICE/problems/RAP', 'https://www.codechef.com/PRACTICE/problems/RBTREE', 'https://www.codechef.com/PRACTICE/problems/RBX1301', 'https://www.codechef.com/PRACTICE/problems/RBX1303', 'https://www.codechef.com/PRACTICE/problems/RBX1304', 'https://www.codechef.com/PRACTICE/problems/RBX1308', 'https://www.codechef.com/PRACTICE/problems/RBX1311', 'https://www.codechef.com/PRACTICE/problems/RBX1312', 'https://www.codechef.com/PRACTICE/problems/RBX1313', 'https://www.codechef.com/PRACTICE/problems/RBX1314', 'https://www.codechef.com/PRACTICE/problems/RD01', 'https://www.codechef.com/PRACTICE/problems/RD03', 'https://www.codechef.com/PRACTICE/problems/RDF', 'https://www.codechef.com/PRACTICE/problems/RDIOACTV', 'https://www.codechef.com/PRACTICE/problems/REACAR', 'https://www.codechef.com/PRACTICE/problems/REARRSTR', 'https://www.codechef.com/PRACTICE/problems/REBXOR', 'https://www.codechef.com/PRACTICE/problems/RECAREA', 'https://www.codechef.com/PRACTICE/problems/RECBOX', 'https://www.codechef.com/PRACTICE/problems/RECCKT', 'https://www.codechef.com/PRACTICE/problems/RECIIBKS', 'https://www.codechef.com/PRACTICE/problems/RECIICHA', 'https://www.codechef.com/PRACTICE/problems/RECIIDCD', 'https://www.codechef.com/PRACTICE/problems/RECIITRK', 'https://www.codechef.com/PRACTICE/problems/RECIPE', 'https://www.codechef.com/PRACTICE/problems/RECMSG', 'https://www.codechef.com/PRACTICE/problems/RECPLA', 'https://www.codechef.com/PRACTICE/problems/RECRECOV', 'https://www.codechef.com/PRACTICE/problems/RECREP', 'https://www.codechef.com/PRACTICE/problems/RECTCNT', 'https://www.codechef.com/PRACTICE/problems/RECTLOVE', 'https://www.codechef.com/PRACTICE/problems/RECTQUER', 'https://www.codechef.com/PRACTICE/problems/RECTSQ', 'https://www.codechef.com/PRACTICE/problems/REIGN', 'https://www.codechef.com/PRACTICE/problems/REIGN2', 'https://www.codechef.com/PRACTICE/problems/REMISS', 'https://www.codechef.com/PRACTICE/problems/REN2013A', 'https://www.codechef.com/PRACTICE/problems/REN2013C', 'https://www.codechef.com/PRACTICE/problems/REN2013D', 'https://www.codechef.com/PRACTICE/problems/REN2013G', 'https://www.codechef.com/PRACTICE/problems/REN2013K', 'https://www.codechef.com/PRACTICE/problems/REPSTR', 'https://www.codechef.com/PRACTICE/problems/REPUB', 'https://www.codechef.com/PRACTICE/problems/RESIST', 'https://www.codechef.com/PRACTICE/problems/RESN01', 'https://www.codechef.com/PRACTICE/problems/RESN02', 'https://www.codechef.com/PRACTICE/problems/RESN04', 'https://www.codechef.com/PRACTICE/problems/RESN05', 'https://www.codechef.com/PRACTICE/problems/RESQ', 'https://www.codechef.com/PRACTICE/problems/RESTEXP', 'https://www.codechef.com/PRACTICE/problems/RETPO', 'https://www.codechef.com/PRACTICE/problems/REVER', 'https://www.codechef.com/PRACTICE/problems/REVERSE', 'https://www.codechef.com/PRACTICE/problems/RG03', 'https://www.codechef.com/PRACTICE/problems/RG04', 'https://www.codechef.com/PRACTICE/problems/RG05', 'https://www.codechef.com/PRACTICE/problems/RGAME', 'https://www.codechef.com/PRACTICE/problems/RGHW03', 'https://www.codechef.com/PRACTICE/problems/RGHW06', 'https://www.codechef.com/PRACTICE/problems/RGPVP02', 'https://www.codechef.com/PRACTICE/problems/RGPVR101', 'https://www.codechef.com/PRACTICE/problems/RGPVR102', 'https://www.codechef.com/PRACTICE/problems/RGPVR103', 'https://www.codechef.com/PRACTICE/problems/RGPVR202', 'https://www.codechef.com/PRACTICE/problems/RGPVR302', 'https://www.codechef.com/PRACTICE/problems/RGPVR305', 'https://www.codechef.com/PRACTICE/problems/RG_01', 'https://www.codechef.com/PRACTICE/problems/RHOUSE', 'https://www.codechef.com/PRACTICE/problems/RIGHTRI', 'https://www.codechef.com/PRACTICE/problems/RIGHTTRI', 'https://www.codechef.com/PRACTICE/problems/RIN', 'https://www.codechef.com/PRACTICE/problems/RIPPLE', 'https://www.codechef.com/PRACTICE/problems/RIT01', 'https://www.codechef.com/PRACTICE/problems/RIT02', 'https://www.codechef.com/PRACTICE/problems/RIT03', 'https://www.codechef.com/PRACTICE/problems/RIT04', 'https://www.codechef.com/PRACTICE/problems/RIVALRY', 'https://www.codechef.com/PRACTICE/problems/RIVPILE', 'https://www.codechef.com/PRACTICE/problems/RNG', 'https://www.codechef.com/PRACTICE/problems/RNGMOD', 'https://www.codechef.com/PRACTICE/problems/RNUM', 'https://www.codechef.com/PRACTICE/problems/ROBBERY', 'https://www.codechef.com/PRACTICE/problems/ROLLDEEP', 'https://www.codechef.com/PRACTICE/problems/RONR', 'https://www.codechef.com/PRACTICE/problems/ROSES', 'https://www.codechef.com/PRACTICE/problems/ROTARR', 'https://www.codechef.com/PRACTICE/problems/ROTATION', 'https://www.codechef.com/PRACTICE/problems/ROTSTRNG', 'https://www.codechef.com/PRACTICE/problems/ROUTES', 'https://www.codechef.com/PRACTICE/problems/ROWCOLOP', 'https://www.codechef.com/PRACTICE/problems/RRATING', 'https://www.codechef.com/PRACTICE/problems/RRBIGNUM', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'https://www.codechef.com/PRACTICE/problems/RRCOPY', 'https://www.codechef.com/PRACTICE/problems/RRDAG', 'https://www.codechef.com/PRACTICE/problems/RRECIPE', 'https://www.codechef.com/PRACTICE/problems/RRFRNDS', 'https://www.codechef.com/PRACTICE/problems/RRGAME', 'https://www.codechef.com/PRACTICE/problems/RRJAM', 'https://www.codechef.com/PRACTICE/problems/RRJOKE', 'https://www.codechef.com/PRACTICE/problems/RRMATRIX', 'https://www.codechef.com/PRACTICE/problems/RRMTRX2', 'https://www.codechef.com/PRACTICE/problems/RRPLAYER', 'https://www.codechef.com/PRACTICE/problems/RRSERVER', 'https://www.codechef.com/PRACTICE/problems/RRSTONE', 'https://www.codechef.com/PRACTICE/problems/RRSUM', 'https://www.codechef.com/PRACTICE/problems/RRTREE', 'https://www.codechef.com/PRACTICE/problems/RRTREE2', 'https://www.codechef.com/PRACTICE/problems/RSRECIPE', 'https://www.codechef.com/PRACTICE/problems/RSTRING', 'https://www.codechef.com/PRACTICE/problems/RTREE', 'https://www.codechef.com/PRACTICE/problems/RUBIX4', 'https://www.codechef.com/PRACTICE/problems/RUNNING', 'https://www.codechef.com/PRACTICE/problems/RWALK', 'https://www.codechef.com/PRACTICE/problems/SACHGF', 'https://www.codechef.com/PRACTICE/problems/SAD', 'https://www.codechef.com/PRACTICE/problems/SADPAIRS', 'https://www.codechef.com/PRACTICE/problems/SALARY', 'https://www.codechef.com/PRACTICE/problems/SALG01', 'https://www.codechef.com/PRACTICE/problems/SANSKAR', 'https://www.codechef.com/PRACTICE/problems/SANTA2', 'https://www.codechef.com/PRACTICE/problems/SATA01', 'https://www.codechef.com/PRACTICE/problems/SATA02', 'https://www.codechef.com/PRACTICE/problems/SATA06', 'https://www.codechef.com/PRACTICE/problems/SATA07', 'https://www.codechef.com/PRACTICE/problems/SATA08', 'https://www.codechef.com/PRACTICE/problems/SATA09', 'https://www.codechef.com/PRACTICE/problems/SATA10', 'https://www.codechef.com/PRACTICE/problems/SATA11', 'https://www.codechef.com/PRACTICE/problems/SBSTCNT', 'https://www.codechef.com/PRACTICE/problems/SCC0103', 'https://www.codechef.com/PRACTICE/problems/SCC0106', 'https://www.codechef.com/PRACTICE/problems/SCHEME01', 'https://www.codechef.com/PRACTICE/problems/SCLUSTER', 'https://www.codechef.com/PRACTICE/problems/SCORES', 'https://www.codechef.com/PRACTICE/problems/SCOREX', 'https://www.codechef.com/PRACTICE/problems/SDH', 'https://www.codechef.com/PRACTICE/problems/SDSQUARE', 'https://www.codechef.com/PRACTICE/problems/SEAARASU', 'https://www.codechef.com/PRACTICE/problems/SEABAL', 'https://www.codechef.com/PRACTICE/problems/SEABUB', 'https://www.codechef.com/PRACTICE/problems/SEAD', 'https://www.codechef.com/PRACTICE/problems/SEADIV', 'https://www.codechef.com/PRACTICE/problems/SEADIVM', 'https://www.codechef.com/PRACTICE/problems/SEAEQ', 'https://www.codechef.com/PRACTICE/problems/SEAGCD', 'https://www.codechef.com/PRACTICE/problems/SEAGCD2', 'https://www.codechef.com/PRACTICE/problems/SEAGM', 'https://www.codechef.com/PRACTICE/problems/SEAGM2', 'https://www.codechef.com/PRACTICE/problems/SEAGRP', 'https://www.codechef.com/PRACTICE/problems/SEAKAM', 'https://www.codechef.com/PRACTICE/problems/SEALCM', 'https://www.codechef.com/PRACTICE/problems/SEALINE', 'https://www.codechef.com/PRACTICE/problems/SEAND2', 'https://www.codechef.com/PRACTICE/problems/SEAPAIR', 'https://www.codechef.com/PRACTICE/problems/SEAPERM', 'https://www.codechef.com/PRACTICE/problems/SEAPERM2', 'https://www.codechef.com/PRACTICE/problems/SEAPERMS', 'https://www.codechef.com/PRACTICE/problems/SEAPROAR', 'https://www.codechef.com/PRACTICE/problems/SEARRAYS', 'https://www.codechef.com/PRACTICE/problems/SEASHUF', 'https://www.codechef.com/PRACTICE/problems/SEASNAKE', 'https://www.codechef.com/PRACTICE/problems/SEASORT2', 'https://www.codechef.com/PRACTICE/problems/SEATL', 'https://www.codechef.com/PRACTICE/problems/SEATR', 'https://www.codechef.com/PRACTICE/problems/SEATR2', 'https://www.codechef.com/PRACTICE/problems/SEATRSF', 'https://www.codechef.com/PRACTICE/problems/SEATSR', 'https://www.codechef.com/PRACTICE/problems/SEATSTR2', 'https://www.codechef.com/PRACTICE/problems/SEAVEC', 'https://www.codechef.com/PRACTICE/problems/SEAVOTE', 'https://www.codechef.com/PRACTICE/problems/SEEDLING', 'https://www.codechef.com/PRACTICE/problems/SEG003', 'https://www.codechef.com/PRACTICE/problems/SEGSUMQ', 'https://www.codechef.com/PRACTICE/problems/SEGTREE', 'https://www.codechef.com/PRACTICE/problems/SEINC', 'https://www.codechef.com/PRACTICE/problems/SEQCOUNT', 'https://www.codechef.com/PRACTICE/problems/SEQLCS', 'https://www.codechef.com/PRACTICE/problems/SETDIFF', 'https://www.codechef.com/PRACTICE/problems/SEZ', 'https://www.codechef.com/PRACTICE/problems/SFRNDS', 'https://www.codechef.com/PRACTICE/problems/SFUNC', 'https://www.codechef.com/PRACTICE/problems/SGARDEN', 'https://www.codechef.com/PRACTICE/problems/SHARMAJI', 'https://www.codechef.com/PRACTICE/problems/SHGAME', 'https://www.codechef.com/PRACTICE/problems/SHINAPP', 'https://www.codechef.com/PRACTICE/problems/SHIRO', 'https://www.codechef.com/PRACTICE/problems/SHISTR', 'https://www.codechef.com/PRACTICE/problems/SHOOTING', 'https://www.codechef.com/PRACTICE/problems/SHOP2', 'https://www.codechef.com/PRACTICE/problems/SHORT', 'https://www.codechef.com/PRACTICE/problems/SHORTCUT', 'https://www.codechef.com/PRACTICE/problems/SHORTEST', 'https://www.codechef.com/PRACTICE/problems/SHUTTLE', 'https://www.codechef.com/PRACTICE/problems/SIDPRIME', 'https://www.codechef.com/PRACTICE/problems/SIDSTR', 'https://www.codechef.com/PRACTICE/problems/SIGFIB', 'https://www.codechef.com/PRACTICE/problems/SIGNWAVE', 'https://www.codechef.com/PRACTICE/problems/SILK', 'https://www.codechef.com/PRACTICE/problems/SIMPSTAT', 'https://www.codechef.com/PRACTICE/problems/SISLOVE', 'https://www.codechef.com/PRACTICE/problems/SKIRES', 'https://www.codechef.com/PRACTICE/problems/SKYSCR', 'https://www.codechef.com/PRACTICE/problems/SLADDERS', 'https://www.codechef.com/PRACTICE/problems/SLIS', 'https://www.codechef.com/PRACTICE/problems/SLX01', 'https://www.codechef.com/PRACTICE/problems/SLX02', 'https://www.codechef.com/PRACTICE/problems/SLX04', 'https://www.codechef.com/PRACTICE/problems/SMCD1', 'https://www.codechef.com/PRACTICE/problems/SMCD2', 'https://www.codechef.com/PRACTICE/problems/SMCD3', 'https://www.codechef.com/PRACTICE/problems/SMCD5', 'https://www.codechef.com/PRACTICE/problems/SMCD6', 'https://www.codechef.com/PRACTICE/problems/SMCD7', 'https://www.codechef.com/PRACTICE/problems/SMHTD', 'https://www.codechef.com/PRACTICE/problems/SMHTE', 'https://www.codechef.com/PRACTICE/problems/SMPAIR', 'https://www.codechef.com/PRACTICE/problems/SMPLSUM', 'https://www.codechef.com/PRACTICE/problems/SNAKGAME', 'https://www.codechef.com/PRACTICE/problems/SNAKY', 'https://www.codechef.com/PRACTICE/problems/SNAPE', 'https://www.codechef.com/PRACTICE/problems/SNCHT2', 'https://www.codechef.com/PRACTICE/problems/SNCK01', 'https://www.codechef.com/PRACTICE/problems/SNCK04', 'https://www.codechef.com/PRACTICE/problems/SNCK05', 'https://www.codechef.com/PRACTICE/problems/SNET', 'https://www.codechef.com/PRACTICE/problems/SNON02', 'https://www.codechef.com/PRACTICE/problems/SNON03', 'https://www.codechef.com/PRACTICE/problems/SNON07', 'https://www.codechef.com/PRACTICE/problems/SNON08', 'https://www.codechef.com/PRACTICE/problems/SNOWLIST', 'https://www.codechef.com/PRACTICE/problems/SNOWPRIM', 'https://www.codechef.com/PRACTICE/problems/SNTYGE', 'https://www.codechef.com/PRACTICE/problems/SOCIAL', 'https://www.codechef.com/PRACTICE/problems/SOHAM004', 'https://www.codechef.com/PRACTICE/problems/SOLDIER', 'https://www.codechef.com/PRACTICE/problems/SONAFOR', 'https://www.codechef.com/PRACTICE/problems/SOPC03', 'https://www.codechef.com/PRACTICE/problems/SOPC04', 'https://www.codechef.com/PRACTICE/problems/SOPC1501', 'https://www.codechef.com/PRACTICE/problems/SOPC1502', 'https://www.codechef.com/PRACTICE/problems/SOPC1503', 'https://www.codechef.com/PRACTICE/problems/SOPC1505', 'https://www.codechef.com/PRACTICE/problems/SOPC1506', 'https://www.codechef.com/PRACTICE/problems/SORT', 'https://www.codechef.com/PRACTICE/problems/SORT4', 'https://www.codechef.com/PRACTICE/problems/SORTING', 'https://www.codechef.com/PRACTICE/problems/SPALNUM', 'https://www.codechef.com/PRACTICE/problems/SPCANDY', 'https://www.codechef.com/PRACTICE/problems/SPELL', 'https://www.codechef.com/PRACTICE/problems/SPIDY', 'https://www.codechef.com/PRACTICE/problems/SPIDY2', 'https://www.codechef.com/PRACTICE/problems/SPIT04', 'https://www.codechef.com/PRACTICE/problems/SPIT05', 'https://www.codechef.com/PRACTICE/problems/SPIT1', 'https://www.codechef.com/PRACTICE/problems/SPIT2', 'https://www.codechef.com/PRACTICE/problems/SPIT3', 'https://www.codechef.com/PRACTICE/problems/SPOON', 'https://www.codechef.com/PRACTICE/problems/SPOONS', 'https://www.codechef.com/PRACTICE/problems/SPOTWO', 'https://www.codechef.com/PRACTICE/problems/SPREAD', 'https://www.codechef.com/PRACTICE/problems/SPRLNMS', 'https://www.codechef.com/PRACTICE/problems/SPRNMBRS', 'https://www.codechef.com/PRACTICE/problems/SPSHORT', 'https://www.codechef.com/PRACTICE/problems/SQNUMBF', 'https://www.codechef.com/PRACTICE/problems/SQUE1', 'https://www.codechef.com/PRACTICE/problems/SREENI', 'https://www.codechef.com/PRACTICE/problems/SROADS', 'https://www.codechef.com/PRACTICE/problems/SSS', 'https://www.codechef.com/PRACTICE/problems/SSTORY', 'https://www.codechef.com/PRACTICE/problems/SSUM', 'https://www.codechef.com/PRACTICE/problems/SSWAP', 'https://www.codechef.com/PRACTICE/problems/ST202', 'https://www.codechef.com/PRACTICE/problems/STABLEMP', 'https://www.codechef.com/PRACTICE/problems/STACKS', 'https://www.codechef.com/PRACTICE/problems/STADIUM', 'https://www.codechef.com/PRACTICE/problems/STANDUP', 'https://www.codechef.com/PRACTICE/problems/START01', 'https://www.codechef.com/PRACTICE/problems/STATUES', 'https://www.codechef.com/PRACTICE/problems/STB', 'https://www.codechef.com/PRACTICE/problems/STDPRGS', 'https://www.codechef.com/PRACTICE/problems/STDYTAB', 'https://www.codechef.com/PRACTICE/problems/STEM', 'https://www.codechef.com/PRACTICE/problems/STEPUP', 'https://www.codechef.com/PRACTICE/problems/STETSKLX', 'https://www.codechef.com/PRACTICE/problems/STFM', 'https://www.codechef.com/PRACTICE/problems/STICK', 'https://www.codechef.com/PRACTICE/problems/STICKS', 'https://www.codechef.com/PRACTICE/problems/STKENC', 'https://www.codechef.com/PRACTICE/problems/STONES', 'https://www.codechef.com/PRACTICE/problems/STRAB', 'https://www.codechef.com/PRACTICE/problems/STRBIT', 'https://www.codechef.com/PRACTICE/problems/STRDIG', 'https://www.codechef.com/PRACTICE/problems/STREETTA', 'https://www.codechef.com/PRACTICE/problems/STRMCH', 'https://www.codechef.com/PRACTICE/problems/STROPR', 'https://www.codechef.com/PRACTICE/problems/STRPALIN', 'https://www.codechef.com/PRACTICE/problems/STRQ', 'https://www.codechef.com/PRACTICE/problems/STRSUB', 'https://www.codechef.com/PRACTICE/problems/STR_FUNC', 'https://www.codechef.com/PRACTICE/problems/STUD3', 'https://www.codechef.com/PRACTICE/problems/STUDD', 'https://www.codechef.com/PRACTICE/problems/SUBANAGR', 'https://www.codechef.com/PRACTICE/problems/SUBARR', 'https://www.codechef.com/PRACTICE/problems/SUBARRAY', 'https://www.codechef.com/PRACTICE/problems/SUBBXOR', 'https://www.codechef.com/PRACTICE/problems/SUBGCD', 'https://www.codechef.com/PRACTICE/problems/SUBINC', 'https://www.codechef.com/PRACTICE/problems/SUBLCM', 'https://www.codechef.com/PRACTICE/problems/SUBMAT', 'https://www.codechef.com/PRACTICE/problems/SUBMIN', 'https://www.codechef.com/PRACTICE/problems/SUBQUERY', 'https://www.codechef.com/PRACTICE/problems/SUBSEG2', 'https://www.codechef.com/PRACTICE/problems/SUBSGCD', 'https://www.codechef.com/PRACTICE/problems/SUBSGM', 'https://www.codechef.com/PRACTICE/problems/SUBSORT', 'https://www.codechef.com/PRACTICE/problems/SUBSTR', 'https://www.codechef.com/PRACTICE/problems/SUBTREE', 'https://www.codechef.com/PRACTICE/problems/SUMBITS', 'https://www.codechef.com/PRACTICE/problems/SUMMAND', 'https://www.codechef.com/PRACTICE/problems/SUMMATH', 'https://www.codechef.com/PRACTICE/problems/SUMPAIR', 'https://www.codechef.com/PRACTICE/problems/SUMSLOPE', 'https://www.codechef.com/PRACTICE/problems/SUMTOUR', 'https://www.codechef.com/PRACTICE/problems/SUMTRIAN', 'https://www.codechef.com/PRACTICE/problems/SUPERCUP', 'https://www.codechef.com/PRACTICE/problems/SUPERPLN', 'https://www.codechef.com/PRACTICE/problems/SURFRN', 'https://www.codechef.com/PRACTICE/problems/SUYBOB', 'https://www.codechef.com/PRACTICE/problems/SVNTR', 'https://www.codechef.com/PRACTICE/problems/SWAPMATR', 'https://www.codechef.com/PRACTICE/problems/SWAPS', 'https://www.codechef.com/PRACTICE/problems/SWARM', 'https://www.codechef.com/PRACTICE/problems/SWEET', 'https://www.codechef.com/PRACTICE/problems/SWEGARR', 'https://www.codechef.com/PRACTICE/problems/SWEGIRL', 'https://www.codechef.com/PRACTICE/problems/SWPERMS', 'https://www.codechef.com/PRACTICE/problems/SYNCRYPT', 'https://www.codechef.com/PRACTICE/problems/TAACUTE', 'https://www.codechef.com/PRACTICE/problems/TAAND', 'https://www.codechef.com/PRACTICE/problems/TAAPLUSB', 'https://www.codechef.com/PRACTICE/problems/TABLECOV', 'https://www.codechef.com/PRACTICE/problems/TABUS', 'https://www.codechef.com/PRACTICE/problems/TACHEMIS', 'https://www.codechef.com/PRACTICE/problems/TACHSTCK', 'https://www.codechef.com/PRACTICE/problems/TADELIVE', 'https://www.codechef.com/PRACTICE/problems/TAEDITOR', 'https://www.codechef.com/PRACTICE/problems/TAKEAWAY', 'https://www.codechef.com/PRACTICE/problems/TALCA', 'https://www.codechef.com/PRACTICE/problems/TANDC', 'https://www.codechef.com/PRACTICE/problems/TANGDIV', 'https://www.codechef.com/PRACTICE/problems/TANGLED', 'https://www.codechef.com/PRACTICE/problems/TANKS', 'https://www.codechef.com/PRACTICE/problems/TANSWTCH', 'https://www.codechef.com/PRACTICE/problems/TAPAIR', 'https://www.codechef.com/PRACTICE/problems/TAPALIN', 'https://www.codechef.com/PRACTICE/problems/TAQTREE', 'https://www.codechef.com/PRACTICE/problems/TASHIFT', 'https://www.codechef.com/PRACTICE/problems/TASTR', 'https://www.codechef.com/PRACTICE/problems/TASTRMAT', 'https://www.codechef.com/PRACTICE/problems/TASTYD', 'https://www.codechef.com/PRACTICE/problems/TASUMOBC', 'https://www.codechef.com/PRACTICE/problems/TAUT', 'https://www.codechef.com/PRACTICE/problems/TAVISUAL', 'https://www.codechef.com/PRACTICE/problems/TAZOS', 'https://www.codechef.com/PRACTICE/problems/TBD', 'https://www.codechef.com/PRACTICE/problems/TCCR415', 'https://www.codechef.com/PRACTICE/problems/TCFST03', 'https://www.codechef.com/PRACTICE/problems/TCFST04', 'https://www.codechef.com/PRACTICE/problems/TCFST06', 'https://www.codechef.com/PRACTICE/problems/TCFST10', 'https://www.codechef.com/PRACTICE/problems/TCP', 'https://www.codechef.com/PRACTICE/problems/TDIV', 'https://www.codechef.com/PRACTICE/problems/TDRIVER', 'https://www.codechef.com/PRACTICE/problems/TEACHTR', 'https://www.codechef.com/PRACTICE/problems/TEAMSEL', 'https://www.codechef.com/PRACTICE/problems/TECH02', 'https://www.codechef.com/PRACTICE/problems/TECH04', 'https://www.codechef.com/PRACTICE/problems/TECH05', 'https://www.codechef.com/PRACTICE/problems/TECH06', 'https://www.codechef.com/PRACTICE/problems/TECH07', 'https://www.codechef.com/PRACTICE/problems/TECH08', 'https://www.codechef.com/PRACTICE/problems/TECH09', 'https://www.codechef.com/PRACTICE/problems/TECH12', 'https://www.codechef.com/PRACTICE/problems/TECH14', 'https://www.codechef.com/PRACTICE/problems/TEMPQUE', 'https://www.codechef.com/PRACTICE/problems/TENNCLUM', 'https://www.codechef.com/PRACTICE/problems/TENNIS', 'https://www.codechef.com/PRACTICE/problems/TERVEC', 'https://www.codechef.com/PRACTICE/problems/TEST', 'https://www.codechef.com/PRACTICE/problems/TESTERS', 'https://www.codechef.com/PRACTICE/problems/TESTTT5', 'https://www.codechef.com/PRACTICE/problems/TETRA', 'https://www.codechef.com/PRACTICE/problems/TF01', 'https://www.codechef.com/PRACTICE/problems/TGOC', 'https://www.codechef.com/PRACTICE/problems/THEGAME', 'https://www.codechef.com/PRACTICE/problems/THIEF', 'https://www.codechef.com/PRACTICE/problems/THREECLR', 'https://www.codechef.com/PRACTICE/problems/THREEDIF', 'https://www.codechef.com/PRACTICE/problems/TIC01', 'https://www.codechef.com/PRACTICE/problems/TIC02', 'https://www.codechef.com/PRACTICE/problems/TIC03', 'https://www.codechef.com/PRACTICE/problems/TIC04', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'https://www.codechef.com/PRACTICE/problems/TIDRICE', 'https://www.codechef.com/PRACTICE/problems/TILE', 'https://www.codechef.com/PRACTICE/problems/TILE0', 'https://www.codechef.com/PRACTICE/problems/TIME', 'https://www.codechef.com/PRACTICE/problems/TIMEASR', 'https://www.codechef.com/PRACTICE/problems/TIMETRAV', 'https://www.codechef.com/PRACTICE/problems/TJ002', 'https://www.codechef.com/PRACTICE/problems/TKCHOCS', 'https://www.codechef.com/PRACTICE/problems/TKCONVEX', 'https://www.codechef.com/PRACTICE/problems/TLCS', 'https://www.codechef.com/PRACTICE/problems/TLG', 'https://www.codechef.com/PRACTICE/problems/TMSLT', 'https://www.codechef.com/PRACTICE/problems/TNMALG02', 'https://www.codechef.com/PRACTICE/problems/TNMALG04', 'https://www.codechef.com/PRACTICE/problems/TOFFEE', 'https://www.codechef.com/PRACTICE/problems/TOFFEES', 'https://www.codechef.com/PRACTICE/problems/TOLL', 'https://www.codechef.com/PRACTICE/problems/TOMJER', 'https://www.codechef.com/PRACTICE/problems/TOOLS', 'https://www.codechef.com/PRACTICE/problems/TOPPARR', 'https://www.codechef.com/PRACTICE/problems/TORR', 'https://www.codechef.com/PRACTICE/problems/TOTR', 'https://www.codechef.com/PRACTICE/problems/TOURBUS', 'https://www.codechef.com/PRACTICE/problems/TOURMAP', 'https://www.codechef.com/PRACTICE/problems/TOURNAM', 'https://www.codechef.com/PRACTICE/problems/TPRODUCT', 'https://www.codechef.com/PRACTICE/problems/TR1', 'https://www.codechef.com/PRACTICE/problems/TRANSFIG', 'https://www.codechef.com/PRACTICE/problems/TRAVELER', 'https://www.codechef.com/PRACTICE/problems/TRAVTREE', 'https://www.codechef.com/PRACTICE/problems/TREE', 'https://www.codechef.com/PRACTICE/problems/TREECAKE', 'https://www.codechef.com/PRACTICE/problems/TREECNT2', 'https://www.codechef.com/PRACTICE/problems/TREEFUN', 'https://www.codechef.com/PRACTICE/problems/TREEGAME', 'https://www.codechef.com/PRACTICE/problems/TREEP', 'https://www.codechef.com/PRACTICE/problems/TREEPATH', 'https://www.codechef.com/PRACTICE/problems/TREEPROD', 'https://www.codechef.com/PRACTICE/problems/TREEROOT', 'https://www.codechef.com/PRACTICE/problems/TREES', 'https://www.codechef.com/PRACTICE/problems/TRIANGCL', 'https://www.codechef.com/PRACTICE/problems/TRICOIN', 'https://www.codechef.com/PRACTICE/problems/TRINT', 'https://www.codechef.com/PRACTICE/problems/TRIP', 'https://www.codechef.com/PRACTICE/problems/TRIPCOST', 'https://www.codechef.com/PRACTICE/problems/TRIPS', 'https://www.codechef.com/PRACTICE/problems/TRIQUERY', 'https://www.codechef.com/PRACTICE/problems/TRISQ', 'https://www.codechef.com/PRACTICE/problems/TRMAG', 'https://www.codechef.com/PRACTICE/problems/TROOT', 'https://www.codechef.com/PRACTICE/problems/TRSUBTR', 'https://www.codechef.com/PRACTICE/problems/TRSUM', 'https://www.codechef.com/PRACTICE/problems/TSHIRTS', 'https://www.codechef.com/PRACTICE/problems/TSORT', 'https://www.codechef.com/PRACTICE/problems/TSORTA', 'https://www.codechef.com/PRACTICE/problems/TSX02', 'https://www.codechef.com/PRACTICE/problems/TSX03', 'https://www.codechef.com/PRACTICE/problems/TTEACH', 'https://www.codechef.com/PRACTICE/problems/TTENIS', 'https://www.codechef.com/PRACTICE/problems/TULIPS', 'https://www.codechef.com/PRACTICE/problems/TUX01', 'https://www.codechef.com/PRACTICE/problems/TUX02', 'https://www.codechef.com/PRACTICE/problems/TUX03', 'https://www.codechef.com/PRACTICE/problems/TUZGMBR', 'https://www.codechef.com/PRACTICE/problems/TUZTRN', 'https://www.codechef.com/PRACTICE/problems/TVP', 'https://www.codechef.com/PRACTICE/problems/TWINRO', 'https://www.codechef.com/PRACTICE/problems/TWOCHEFS', 'https://www.codechef.com/PRACTICE/problems/TWOCOMP', 'https://www.codechef.com/PRACTICE/problems/TWODOGS', 'https://www.codechef.com/PRACTICE/problems/TWOFL', 'https://www.codechef.com/PRACTICE/problems/TWOFRNDS', 'https://www.codechef.com/PRACTICE/problems/TWONIM', 'https://www.codechef.com/PRACTICE/problems/TWOSTR', 'https://www.codechef.com/PRACTICE/problems/TWSTR', 'https://www.codechef.com/PRACTICE/problems/TWTCLOSE', 'https://www.codechef.com/PRACTICE/problems/TYTACTIC', 'https://www.codechef.com/PRACTICE/problems/UASEQ', 'https://www.codechef.com/PRACTICE/problems/UEMP01', 'https://www.codechef.com/PRACTICE/problems/UEMP02', 'https://www.codechef.com/PRACTICE/problems/UNIQUE', 'https://www.codechef.com/PRACTICE/problems/UNIVMT', 'https://www.codechef.com/PRACTICE/problems/UPDTREE', 'https://www.codechef.com/PRACTICE/problems/UTMOPR', 'https://www.codechef.com/PRACTICE/problems/VCAKE', 'https://www.codechef.com/PRACTICE/problems/VCS', 'https://www.codechef.com/PRACTICE/problems/VERMIN', 'https://www.codechef.com/PRACTICE/problems/VIGCODE', 'https://www.codechef.com/PRACTICE/problems/VIRAT', 'https://www.codechef.com/PRACTICE/problems/VIRAT20', 'https://www.codechef.com/PRACTICE/problems/VIRATGCD', 'https://www.codechef.com/PRACTICE/problems/VISITALL', 'https://www.codechef.com/PRACTICE/problems/VITC01', 'https://www.codechef.com/PRACTICE/problems/VITC02', 'https://www.codechef.com/PRACTICE/problems/VITC03', 'https://www.codechef.com/PRACTICE/problems/VITC04', 'https://www.codechef.com/PRACTICE/problems/VITC05', 'https://www.codechef.com/PRACTICE/problems/VITC08', 'https://www.codechef.com/PRACTICE/problems/VIVAL', 'https://www.codechef.com/PRACTICE/problems/VLD', 'https://www.codechef.com/PRACTICE/problems/VOGOZO', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'https://www.codechef.com/PRACTICE/problems/VSQ', 'https://www.codechef.com/PRACTICE/problems/VSQ2', 'https://www.codechef.com/PRACTICE/problems/VSQ3', 'https://www.codechef.com/PRACTICE/problems/VVR', 'https://www.codechef.com/PRACTICE/problems/WALK', 'https://www.codechef.com/PRACTICE/problems/WALL', 'https://www.codechef.com/PRACTICE/problems/WATSY', 'https://www.codechef.com/PRACTICE/problems/WAY004', 'https://www.codechef.com/PRACTICE/problems/WAYPA', 'https://www.codechef.com/PRACTICE/problems/WBUP101', 'https://www.codechef.com/PRACTICE/problems/WBUP103', 'https://www.codechef.com/PRACTICE/problems/WBUP104', 'https://www.codechef.com/PRACTICE/problems/WCOUNT', 'https://www.codechef.com/PRACTICE/problems/WDTBAM', 'https://www.codechef.com/PRACTICE/problems/WEEKDAY', 'https://www.codechef.com/PRACTICE/problems/WEIGHT', 'https://www.codechef.com/PRACTICE/problems/WGAME', 'https://www.codechef.com/PRACTICE/problems/WGHTLIF', 'https://www.codechef.com/PRACTICE/problems/WICQ9', 'https://www.codechef.com/PRACTICE/problems/WINDOW2', 'https://www.codechef.com/PRACTICE/problems/WINNER', 'https://www.codechef.com/PRACTICE/problems/WITMATH', 'https://www.codechef.com/PRACTICE/problems/WKIMAAL', 'https://www.codechef.com/PRACTICE/problems/WMIS', 'https://www.codechef.com/PRACTICE/problems/WOLVXR', 'https://www.codechef.com/PRACTICE/problems/WORDCNT', 'https://www.codechef.com/PRACTICE/problems/WORDS1', 'https://www.codechef.com/PRACTICE/problems/WORKCHEF', 'https://www.codechef.com/PRACTICE/problems/WORLDCUP', 'https://www.codechef.com/PRACTICE/problems/WOUT', 'https://www.codechef.com/PRACTICE/problems/WOWPRO', 'https://www.codechef.com/PRACTICE/problems/WPLAY', 'https://www.codechef.com/PRACTICE/problems/WPROB', 'https://www.codechef.com/PRACTICE/problems/WSC', 'https://www.codechef.com/PRACTICE/problems/WSCAGAIN', 'https://www.codechef.com/PRACTICE/problems/WSERIES', 'https://www.codechef.com/PRACTICE/problems/WSTRING', 'https://www.codechef.com/PRACTICE/problems/WTHINGS', 'https://www.codechef.com/PRACTICE/problems/WW2', 'https://www.codechef.com/PRACTICE/problems/WWE', 'https://www.codechef.com/PRACTICE/problems/WYSIWYG4', 'https://www.codechef.com/PRACTICE/problems/XC201', 'https://www.codechef.com/PRACTICE/problems/XC202', 'https://www.codechef.com/PRACTICE/problems/XETF', 'https://www.codechef.com/PRACTICE/problems/XLIFE', 'https://www.codechef.com/PRACTICE/problems/XOR', 'https://www.codechef.com/PRACTICE/problems/XORGRID', 'https://www.codechef.com/PRACTICE/problems/XORNUBER', 'https://www.codechef.com/PRACTICE/problems/XORPATH', 'https://www.codechef.com/PRACTICE/problems/XORSACK', 'https://www.codechef.com/PRACTICE/problems/XORSN', 'https://www.codechef.com/PRACTICE/problems/XORSUB', 'https://www.codechef.com/PRACTICE/problems/XRMTRX', 'https://www.codechef.com/PRACTICE/problems/XRQRS', 'https://www.codechef.com/PRACTICE/problems/XTRSPACE', 'https://www.codechef.com/PRACTICE/problems/YJUMP', 'https://www.codechef.com/PRACTICE/problems/YNOUTPUT', 'https://www.codechef.com/PRACTICE/problems/YUVRAJ', 'https://www.codechef.com/PRACTICE/problems/ZENCALC', 'https://www.codechef.com/PRACTICE/problems/ZEROES', 'https://www.codechef.com/PRACTICE/problems/ZGSEQ', 'https://www.codechef.com/PRACTICE/problems/ZIGZAGTR', 'https://www.codechef.com/PRCNJR15/problems/AOU', 'https://www.codechef.com/PRCNJR15/problems/CSKR', 'https://www.codechef.com/PRCNJR15/problems/NBSUM', 'https://www.codechef.com/PRCNJR15/problems/PLGRM', 'https://www.codechef.com/PRCNJR15/problems/SNCHT2', 'https://www.codechef.com/PRCNJR15/problems/STKENC', 'https://www.codechef.com/PRCNJR15/problems/WOLVXR', 'https://www.codechef.com/PRCNSR14/problems/GAME2048', 'https://www.codechef.com/PRCNSR14/problems/HLPSUG', 'https://www.codechef.com/PRCNSR14/problems/HPYBDAY', 'https://www.codechef.com/PRCNSR14/problems/HTLPLM', 'https://www.codechef.com/PRCNSR14/problems/PLTGRP', 'https://www.codechef.com/PRMT2014/problems/PROM01', 'https://www.codechef.com/PRMT2014/problems/PROM02', 'https://www.codechef.com/PRMT2014/problems/PROM03', 'https://www.codechef.com/PRMT2014/problems/PROM04', 'https://www.codechef.com/PRMT2014/problems/PROM05', 'https://www.codechef.com/PRMT2014/problems/PROM06', 'https://www.codechef.com/PRMT2014/problems/PROM07', 'https://www.codechef.com/PRMT2014/problems/PROM09', 'https://www.codechef.com/PROCON15/problems/PRCNSR1', 'https://www.codechef.com/PROCON15/problems/PRCNSR2', 'https://www.codechef.com/PROCON15/problems/PRCNSR3', 'https://www.codechef.com/PROCON15/problems/PRCNSR4', 'https://www.codechef.com/PROCON15/problems/PRCNSR5', 'https://www.codechef.com/PROCON15/problems/PRCNSR6', 'https://www.codechef.com/PROM2013/problems/PT1', 'https://www.codechef.com/PROM2013/problems/PT2', 'https://www.codechef.com/PROM2013/problems/PT3', 'https://www.codechef.com/PRST2013/problems/P1301', 'https://www.codechef.com/PRST2013/problems/P1303', 'https://www.codechef.com/PRST2013/problems/P1304', 'https://www.codechef.com/PRST2013/problems/P1306', 'https://www.codechef.com/PRST2013/problems/P1308', 'https://www.codechef.com/PRYS2015/problems/PRYS01', 'https://www.codechef.com/PRYS2015/problems/PRYS02', 'https://www.codechef.com/PRYS2015/problems/PRYS03', 'https://www.codechef.com/PRYS2015/problems/PRYS04', 'https://www.codechef.com/PRYS2015/problems/PRYS05', 'https://www.codechef.com/PRYS2015/problems/PRYS06', 'https://www.codechef.com/PRYS2015/problems/PRYS08', 'https://www.codechef.com/PRYS2015/problems/PRYS09', 'https://www.codechef.com/PRYS2015/problems/PRYS11', 'https://www.codechef.com/PSCD2015/problems/PSUDO1', 'https://www.codechef.com/PSCD2015/problems/PSUDO2', 'https://www.codechef.com/PSCD2015/problems/PSUDO4', 'https://www.codechef.com/PSCD2015/problems/PSUDO5', 'https://www.codechef.com/PSYC2015/problems/CHOC', 'https://www.codechef.com/PSYC2015/problems/IWIN', 'https://www.codechef.com/PSYC2015/problems/PRAC', 'https://www.codechef.com/PSYC2015/problems/REPUB', 'https://www.codechef.com/PSYC2015/problems/SWEET', 'https://www.codechef.com/QBIT15/problems/QBIT01', 'https://www.codechef.com/QBIT15/problems/QBIT02', 'https://www.codechef.com/QBIT15/problems/QBIT03', 'https://www.codechef.com/QBIT15/problems/QBIT04', 'https://www.codechef.com/QBIT15/problems/QBIT05', 'https://www.codechef.com/QBIT15/problems/QBIT06', 'https://www.codechef.com/QUCO2014/problems/QUCOATO', 'https://www.codechef.com/QUCO2014/problems/QUCOBIC', 'https://www.codechef.com/QUCO2014/problems/QUCOCYL', 'https://www.codechef.com/QUCO2014/problems/QUCOITA', 'https://www.codechef.com/QUCO2014/problems/QUCOLCM', 'https://www.codechef.com/QUCO2018/problems/FRIEZA', 'https://www.codechef.com/QUCO2018/problems/GOHAN', 'https://www.codechef.com/QUCO2018/problems/VEGETA', 'https://www.codechef.com/RCSN2015/problems/RECBOX', 'https://www.codechef.com/RCSN2015/problems/RECCKT', 'https://www.codechef.com/RCSN2015/problems/RECMSG', 'https://www.codechef.com/RCSN2015/problems/RECPLA', 'https://www.codechef.com/RCSN2015/problems/RECREP', 'https://www.codechef.com/REC2016/problems/RECIIBKS', 'https://www.codechef.com/REC2016/problems/RECIICHA', 'https://www.codechef.com/REC2016/problems/RECIIDCD', 'https://www.codechef.com/REC2016/problems/RECIITRK', 'https://www.codechef.com/REC2016/problems/ROBBERY', 'https://www.codechef.com/RECJ1601/problems/ABHMNSTR', 'https://www.codechef.com/RECJ1601/problems/ABHSTR', 'https://www.codechef.com/RECJ1601/problems/DORAEMON', 'https://www.codechef.com/RECJ1601/problems/SIDPRIME', 'https://www.codechef.com/RECJ1601/problems/SIDSTR', 'https://www.codechef.com/SEPT13/problems/CAOS1', 'https://www.codechef.com/SEPT13/problems/CAOS2', 'https://www.codechef.com/SEPT13/problems/COOLGUYS', 'https://www.codechef.com/SEPT13/problems/INTEG', 'https://www.codechef.com/SEPT13/problems/LEEXAMS', 'https://www.codechef.com/SEPT13/problems/MLCHEF', 'https://www.codechef.com/SEPT13/problems/SEASNAKE', 'https://www.codechef.com/SEPT13/problems/SPOONS', 'https://www.codechef.com/SEPT13/problems/TMP01', 'https://www.codechef.com/SEPT13/problems/TWOROADS', 'https://www.codechef.com/SEPT14/problems/CHEFINV', 'https://www.codechef.com/SEPT14/problems/CHEFLR', 'https://www.codechef.com/SEPT14/problems/FACTORIZ', 'https://www.codechef.com/SEPT14/problems/FIBTREE', 'https://www.codechef.com/SEPT14/problems/FLOORI4', 'https://www.codechef.com/SEPT14/problems/QRECT', 'https://www.codechef.com/SEPT14/problems/RAINBOWB', 'https://www.codechef.com/SEPT14/problems/ROTATION', 'https://www.codechef.com/SEPT14/problems/SEABUB', 'https://www.codechef.com/SEPT14/problems/UASEQ', 'https://www.codechef.com/SEPT15/problems/BANROB', 'https://www.codechef.com/SEPT15/problems/CHTTRS', 'https://www.codechef.com/SEPT15/problems/CODECRCK', 'https://www.codechef.com/SEPT15/problems/DONUTS', 'https://www.codechef.com/SEPT15/problems/LIGHTHSE', 'https://www.codechef.com/SEPT15/problems/MGCH3D', 'https://www.codechef.com/SEPT15/problems/MSTEP', 'https://www.codechef.com/SEPT15/problems/REBXOR', 'https://www.codechef.com/SEPT15/problems/TERVEC', 'https://www.codechef.com/SEPT15/problems/THEGAME', 'https://www.codechef.com/SIMPLX15/problems/SLX01', 'https://www.codechef.com/SIMPLX15/problems/SLX02', 'https://www.codechef.com/SIMPLX15/problems/SLX03', 'https://www.codechef.com/SIMPLX15/problems/SLX04', 'https://www.codechef.com/SMCS2015/problems/SMCD5', 'https://www.codechef.com/SMCS2015/problems/SMCD6', 'https://www.codechef.com/SMCS2015/problems/SMCD7', 'https://www.codechef.com/SMHT2014/problems/SMHTA', 'https://www.codechef.com/SMHT2014/problems/SMHTB', 'https://www.codechef.com/SMHT2014/problems/SMHTD', 'https://www.codechef.com/SMHT2014/problems/SMHTE', 'https://www.codechef.com/SOPC1602/problems/OPC1601', 'https://www.codechef.com/SOPC1602/problems/OPC1602', 'https://www.codechef.com/SOPC1602/problems/OPC1603', 'https://www.codechef.com/SOPC1602/problems/OPC1604', 'https://www.codechef.com/SOPC2015/problems/SOPC1501', 'https://www.codechef.com/SOPC2015/problems/SOPC1502', 'https://www.codechef.com/SOPC2015/problems/SOPC1503', 'https://www.codechef.com/SOPC2015/problems/SOPC1504', 'https://www.codechef.com/SOPC2015/problems/SOPC1505', 'https://www.codechef.com/SOPC2015/problems/SOPC1506', 'https://www.codechef.com/SPT2015/problems/SPIT04', 'https://www.codechef.com/SPT2015/problems/SPIT05', 'https://www.codechef.com/SPT2015/problems/SPIT1', 'https://www.codechef.com/SPT2015/problems/SPIT2', 'https://www.codechef.com/SPT2015/problems/SPIT3', 'https://www.codechef.com/SRMC2016/problems/BRCKTSRM', 'https://www.codechef.com/SRMC2016/problems/DRCTNSRM', 'https://www.codechef.com/SRMC2016/problems/INTROSRM', 'https://www.codechef.com/SRMC2016/problems/MULTISRM', 'https://www.codechef.com/TCFS15P/problems/CAMERAS', 'https://www.codechef.com/TCFS15P/problems/CAMERAS2', 'https://www.codechef.com/TCFS15P/problems/CANDIS', 'https://www.codechef.com/TCFS15P/problems/CUBEMOD', 'https://www.codechef.com/TCFS15P/problems/FEYNMAN', 'https://www.codechef.com/TCFS15P/problems/LIZARDS2', 'https://www.codechef.com/TCFS15P/problems/MARKS', 'https://www.codechef.com/TCFS15P/problems/PALINREV', 'https://www.codechef.com/TCFS15P/problems/PUCK', 'https://www.codechef.com/TCFS15P/problems/RACING', 'https://www.codechef.com/TCFS15P/problems/SPIDY', 'https://www.codechef.com/TCFS15P/problems/SPIDY2', 'https://www.codechef.com/TCFS15P/problems/STATSHW', 'https://www.codechef.com/TCFS15P/problems/TRINT', 'https://www.codechef.com/TCFS15S/problems/BITWO', 'https://www.codechef.com/TCFS15S/problems/LIZARDS', 'https://www.codechef.com/TCFS15S/problems/PERM', 'https://www.codechef.com/TCFS15S/problems/SUMMAND', 'https://www.codechef.com/TCFST13/problems/TCFST01', 'https://www.codechef.com/TCFST13/problems/TCFST02', 'https://www.codechef.com/TCFST13/problems/TCFST03', 'https://www.codechef.com/TCFST13/problems/TCFST04', 'https://www.codechef.com/TCFST13/problems/TCFST05', 'https://www.codechef.com/TCFST13/problems/TCFST06', 'https://www.codechef.com/TCFST13/problems/TCFST07', 'https://www.codechef.com/TCFST13/problems/TCFST08', 'https://www.codechef.com/TCFST13/problems/TCFST09', 'https://www.codechef.com/TCFST13/problems/TCFST10', 'https://www.codechef.com/TCSG2013/problems/ALMOSTPR', 'https://www.codechef.com/TCSG2013/problems/DISCOUNT', 'https://www.codechef.com/TCSG2013/problems/HCAKE', 'https://www.codechef.com/TCSG2013/problems/STRONG', 'https://www.codechef.com/TRNT2014/problems/TR001', 'https://www.codechef.com/TRNT2014/problems/TR002', 'https://www.codechef.com/TRNT2014/problems/TR003', 'https://www.codechef.com/TRNT2014/problems/TR004', 'https://www.codechef.com/TROK2014/problems/BYTES1', 'https://www.codechef.com/TROK2014/problems/BYTES2', 'https://www.codechef.com/TROK2014/problems/BYTES3', 'https://www.codechef.com/TROK2014/problems/BYTES4', 'https://www.codechef.com/TROK2014/problems/BYTES5', 'https://www.codechef.com/TROK2014/problems/BYTES6', 'https://www.codechef.com/TUXO2014/problems/RONR', 'https://www.codechef.com/TUXO2014/problems/SREENI', 'https://www.codechef.com/TUXO2014/problems/SSS', 'https://www.codechef.com/TUXO2014/problems/TUX01', 'https://www.codechef.com/TUXO2014/problems/TUX03', 'https://www.codechef.com/UVCNCD13/problems/BOTM', 'https://www.codechef.com/UVCNCD13/problems/CTSHT', 'https://www.codechef.com/UVCNCD13/problems/GOPJ', 'https://www.codechef.com/UVCNCD13/problems/GOPR', 'https://www.codechef.com/UVCNCD13/problems/PERHIL', 'https://www.codechef.com/WPC1501/problems/IITK2P01', 'https://www.codechef.com/WPC1501/problems/IITK2P02', 'https://www.codechef.com/WPC1501/problems/IITK2P03', 'https://www.codechef.com/WPC1501/problems/IITK2P04', 'https://www.codechef.com/WPC1501/problems/IITK2P05', 'https://www.codechef.com/WPC1501/problems/IITK2P06', 'https://www.codechef.com/WPC1501/problems/IITK2P08', 'https://www.codechef.com/WPC1501/problems/IITK2P09', 'https://www.codechef.com/WPC1501/problems/IITK2P10', 'https://www.codechef.com/XCEP2014/problems/XC102', 'https://www.codechef.com/XCEP2014/problems/XC104', 'https://www.codechef.com/XCEP2014/problems/XC105', 'https://www.codechef.com/XCEP2014/problems/XC106', 'https://www.codechef.com/XCEP2014/problems/XC107', 'https://www.codechef.com/XCPT2015/problems/XC103', 'https://www.codechef.com/XCPT2015/problems/XC201', 'https://www.codechef.com/XCPT2015/problems/XC202', 'https://www.codechef.com/XCPT2015/problems/XC204', 'https://www.codechef.com/ZCOPRAC/problems/ZCO12001', 'https://www.codechef.com/ZCOPRAC/problems/ZCO12002', 'https://www.codechef.com/ZCOPRAC/problems/ZCO12003', 'https://www.codechef.com/ZCOPRAC/problems/ZCO12004', 'https://www.codechef.com/ZCOPRAC/problems/ZCO13001', 'https://www.codechef.com/ZCOPRAC/problems/ZCO13002', 'https://www.codechef.com/ZCOPRAC/problems/ZCO13003', 'https://www.codechef.com/ZCOPRAC/problems/ZCO13004', 'https://www.codechef.com/ZCOPRAC/problems/ZCO14001', 'https://www.codechef.com/ZCOPRAC/problems/ZCO14002', 'https://www.codechef.com/ZCOPRAC/problems/ZCO14003', 'https://www.codechef.com/ZCOPRAC/problems/ZCO14004', 'https://www.codechef.com/ZCOPRAC/problems/ZCO15001', 'https://www.codechef.com/ZCOPRAC/problems/ZCO15002', 'https://www.codechef.com/ZCOPRAC/problems/ZCO15003', 'https://www.codechef.com/ZCOPRAC/problems/ZCO15004', 'https://www.hackerearth.com/challenge/college/pirathon-world-pi-day-challenge-3/algorithm/problem-2-19/', 'https://www.hackerearth.com/challenge/college/pirathon-world-pi-day-challenge-3/algorithm/problem-3-11/', 'https://www.hackerearth.com/challenge/college/pirathon-world-pi-day-challenge-3/algorithm/problem-4-5/', 'https://www.hackerearth.com/challenge/college/pirathon-world-pi-day-challenge-3/algorithm/problem-5-4/', 'https://www.hackerearth.com/challenge/competitive/september-clash-16/approximate/magic-board-september-clash/', 'https://www.hackerearth.com/challenge/hiring/gainsight-qa-hiring-challenge/algorithm/beautiful-strings-6/', 'https://www.hackerearth.com/challenge/hiring/gainsight-qa-hiring-challenge/algorithm/count-triplets/', 'https://www.hackerearth.com/challenge/hiring/target-hiring-challenge15/algorithm/marut-and-queries/', 'https://www.hackerearth.com/challenge/hiring/thoughtworks-women-hiring-challenge-1/algorithm/the-substring-game-c14f8bd2/', 'https://www.hackerearth.com/challenge/hiring/tipstat-android-hiring-challenge/algorithm/gayle-and-his-legacy-3/', 'https://www.hackerearth.com/challenges/college/codathon18-nitbhopal/algorithm/xsquare-and-central-measure-of-tendencies-1-bf43e5e0/', 'https://www.hackerearth.com/challenges/college/codejunk2017/algorithm/one-of-a-kind-colors/', 'https://www.hackerearth.com/challenges/college/codejunk2017/algorithm/problem-of-planar-graph/', 'https://www.hackerearth.com/challenges/college/dreamspark-ignite-2/algorithm/candy-crush-saga/', 'https://www.hackerearth.com/challenges/college/dreamspark-ignite-2/algorithm/magical-treausre-hunt/', 'https://www.hackerearth.com/challenges/college/epiphany-61/algorithm/xs-mission/', 'https://www.hackerearth.com/challenges/competitive/august-circuits/approximate/game-with-xor/', 'https://www.hackerearth.com/challenges/competitive/ibm-developerconnect/algorithm/shil-and-arjits-gift-9/', 'https://www.hackerearth.com/challenges/competitive/indiahacks-2017-programming-finale/algorithm/fix-bad-list-e7249765/', 'https://www.hackerearth.com/challenges/competitive/may-circuits/approximate/city-rebuild-circuits/', 'https://www.hackerearth.com/challenges/competitive/may-clash-16/approximate/post-correspondence-problem/', 'https://www.hackerearth.com/challenges/competitive/may-clash-16/approximate/rooks/', 'https://www.hackerearth.com/challenges/competitive/may-clash-16/approximate/social-network-approx/', 'https://www.hackerearth.com/challenges/competitive/october-clash-16/approximate/different-sums/', 'https://www.hackerearth.com/challenges/hiring/makemytrip-qa-hiring-challenge/approximate/brinston-strings/', 'https://www.hackerearth.com/challenges/hiring/makemytrip-qa-hiring-challenge/approximate/web-tester/', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/sum-conversion-b97a174a/', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/2-way-attack-1/', 'https://www.hackerearth.com/practice/algorithms/greedy/basics-of-greedy-algorithms/practice-problems/algorithm/make-them-different-5d897ef6/', 'https://www.hackerearth.com/practice/algorithms/greedy/basics-of-greedy-algorithms/practice-problems/approximate/mathison-and-the-medical-facilities-cd486d5e/', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/gaurav-and-subarray-3-787fb90a/', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/the-soap-mystery/', 'https://www.hackerearth.com/practice/algorithms/searching/linear-search/practice-problems/algorithm/maximum-sum-4-f8d12458/', 'https://www.hackerearth.com/practice/basic-programming/bit-manipulation/basics-of-bit-manipulation/practice-problems/algorithm/or-sum-5ef57f6e/', 'https://www.hackerearth.com/practice/data-structures/stacks/basics-of-stacks/practice-problems/algorithm/grandmaster/', 'https://www.hackerearth.com/problem/algorithm/alien-invasion-10-cb99b25b-f1e18353/', 'https://www.hackerearth.com/problem/algorithm/arrayed-permutations/', 'https://www.hackerearth.com/problem/algorithm/call-list-4/', 'https://www.hackerearth.com/problem/algorithm/chinmay-and-his-work-ids/', 'https://www.hackerearth.com/problem/algorithm/chinu-and-his-project/', 'https://www.hackerearth.com/problem/algorithm/cluster-response-time-1/', 'https://www.hackerearth.com/problem/algorithm/counting-rr/', 'https://www.hackerearth.com/problem/algorithm/crackers-on-the-floor-8b857ad8/', 'https://www.hackerearth.com/problem/algorithm/d-5/', 'https://www.hackerearth.com/problem/algorithm/danny-and-his-loneliness/', 'https://www.hackerearth.com/problem/algorithm/dealing-with-substring-b8139055/', 'https://www.hackerearth.com/problem/algorithm/debts-of-the-lannisters/', 'https://www.hackerearth.com/problem/algorithm/even-divison/', 'https://www.hackerearth.com/problem/algorithm/how-much-do-you-need-2/', 'https://www.hackerearth.com/problem/algorithm/hungry-games/', 'https://www.hackerearth.com/problem/algorithm/lets-do-it/', 'https://www.hackerearth.com/problem/algorithm/micro-and-shopping-2/', 'https://www.hackerearth.com/problem/algorithm/minimum-maximum-980d501a/', 'https://www.hackerearth.com/problem/algorithm/minimum-value/', 'https://www.hackerearth.com/problem/algorithm/mmorpg-dota2-4/', 'https://www.hackerearth.com/problem/algorithm/move-the-knight/', 'https://www.hackerearth.com/problem/algorithm/p-and-his-chocolates/', 'https://www.hackerearth.com/problem/algorithm/pair-recovery-f27a26a4/', 'https://www.hackerearth.com/problem/algorithm/panda-ball/', 'https://www.hackerearth.com/problem/algorithm/placement-6-e8bbdc5f/', 'https://www.hackerearth.com/problem/algorithm/prince-and-his-thoughts/', 'https://www.hackerearth.com/problem/algorithm/pseudo-equal-numbers-4/', 'https://www.hackerearth.com/problem/algorithm/queries-on-splendid-matrices-17/', 'https://www.hackerearth.com/problem/algorithm/random-numbers/', 'https://www.hackerearth.com/problem/algorithm/sherlock-and-ciphers-3/', 'https://www.hackerearth.com/problem/algorithm/shils-romantic-message/', 'https://www.hackerearth.com/problem/algorithm/strange-strings-3/', 'https://www.hackerearth.com/problem/algorithm/subly-again/', 'https://www.hackerearth.com/problem/algorithm/the-easy-formula-1/', 'https://www.hackerearth.com/problem/algorithm/way-too-secret-9b6a11a0-3bcaa84d/', 'https://www.hackerearth.com/problem/algorithm/yusufs-valentine-gift-ae8237d6-9fe4a595/', 'https://www.hackerrank.com/challenges/complex-numbers', 'https://www.hackerrank.com/challenges/find-the-torsional-angle', 'https://www.hackerrank.com/contests/rookierank-4/challenges/dna-value', 'https://www.spoj.com/problems/NAPTIME/', 'https://www.spoj.com/problems/VSTEPS/'] precords = db(ptable.link.belongs(duplicate_problem_links)).select() link_to_id = {} precord_mapping = {} for record in precords: precord_mapping[record.id] = record - if link_to_id.has_key(record.link): + if record.link in link_to_id: link_to_id[record.link].append(record.id) else: link_to_id[record.link] = [record.id] @@ -56,7 +56,7 @@ if record.editorial_link is not None or record.editorial_link != "": final_data["editorial_link"] = record.editorial_link - tags= map(lambda x: x.strip(","), eval(record.tags)) + tags= [x.strip(",") for x in eval(record.tags)] if len(tags) > 0 and tags[0] != '-': already_tags = set(eval(final_data["tags"])) if "-" in already_tags: @@ -80,7 +80,7 @@ user_ids = user_ids.union(set(record.custom_user_ids.split(",") if record.custom_user_ids is not None and record.custom_user_ids != "" else [])) final_data["custom_user_ids"] = ",".join(user_ids) - print "pids", pids, "correct_pid", correct_pid + print("pids", pids, "correct_pid", correct_pid) precord_mapping[correct_pid].update_record(**final_data) for pid in pids: if pid == correct_pid: @@ -90,4 +90,4 @@ db(sttable.problem_id == pid).delete() db(uetable.problem_id == pid).update(problem_id=correct_pid) precord_mapping[pid].delete_record() - print "===============================================\n\n" + print("===============================================\n\n") diff --git a/private/scripts/extras/migrate_custom_users_stopstalk_handle.py b/private/scripts/extras/migrate_custom_users_stopstalk_handle.py index 0c6bb8cf..fe381230 100644 --- a/private/scripts/extras/migrate_custom_users_stopstalk_handle.py +++ b/private/scripts/extras/migrate_custom_users_stopstalk_handle.py @@ -30,13 +30,13 @@ for handle in custom_handles: keys_for_handle = current.REDIS_CLIENT.keys("*" + handle) - print handle, keys_for_handle + print(handle, keys_for_handle) for key in keys_for_handle: current.REDIS_CLIENT.delete(key) for custom_friend in custom_friends: new_stopstalk_handle = "cus_" + custom_friend.stopstalk_handle row_count = db(stable.custom_user_id == custom_friend.id).update(stopstalk_handle=new_stopstalk_handle) - print custom_friend.id, "updated", row_count, "submission records" + print(custom_friend.id, "updated", row_count, "submission records") custom_friend.update_record(stopstalk_handle=new_stopstalk_handle) db.commit() diff --git a/private/scripts/extras/parallel.py b/private/scripts/extras/parallel.py index f71e041b..b0b7caec 100644 --- a/private/scripts/extras/parallel.py +++ b/private/scripts/extras/parallel.py @@ -42,7 +42,7 @@ def fetch(pid): count += 1 if tmp.status_code == 200: break - print tmp + print(tmp) def synchronous(): for i in range(1,100): @@ -50,7 +50,7 @@ def synchronous(): def asynchronous(): threads = [] - for i in xrange(100): + for i in range(100): threads.append(gevent.spawn(fetch, i)) gevent.joinall(threads) @@ -59,4 +59,4 @@ def asynchronous(): print('Asynchronous:') asynchronous() -print count +print(count) diff --git a/private/scripts/extras/pname-fix.py b/private/scripts/extras/pname-fix.py index a6896298..a2b0ce25 100644 --- a/private/scripts/extras/pname-fix.py +++ b/private/scripts/extras/pname-fix.py @@ -30,7 +30,7 @@ def retrieve_pname(problem_link): response = requests.get(problem_link) if response.status_code != 200: - print problem_link, response.status_code + print(problem_link, response.status_code) return -1 soup = BeautifulSoup(response.text, "lxml") title = soup.find("title").contents[0] @@ -59,29 +59,29 @@ def retrieve_pname(problem_link): elif submission.custom_user_id: custom_users.add(submission.custom_user_id) else: - print "Something is wrong", + print("Something is wrong", end=' ') else: - print "{", - if name_dict.has_key(submission.problem_link): + print("{", end=' ') + if submission.problem_link in name_dict: submission.update_record(problem_name=name_dict[submission.problem_link]) - print submission.problem_link, name_dict[submission.problem_link], + print(submission.problem_link, name_dict[submission.problem_link], end=' ') else: pname = retrieve_pname(submission.problem_link) - print submission.problem_link, "*", pname, "*", + print(submission.problem_link, "*", pname, "*", end=' ') if pname != -1 and pname != "problem moved": submission.update_record(problem_name=pname) name_dict[submission.problem_link] = pname elif pname == "problem moved": - print "Deleted", submission, + print("Deleted", submission, end=' ') submission.delete_record() - print "}" + print("}") -query = (ptable.problem_link.belongs(name_dict.keys())) & \ +query = (ptable.problem_link.belongs(list(name_dict.keys()))) & \ (ptable.problem_name == "") db(query).delete() -print users, custom_users +print(users, custom_users) # Initialize the users back to initial state attrs = dict(last_retrieved=current.INITIAL_DATE, rating=0, diff --git a/private/scripts/extras/populate-following.py b/private/scripts/extras/populate-following.py index ce092aa0..c284e1eb 100644 --- a/private/scripts/extras/populate-following.py +++ b/private/scripts/extras/populate-following.py @@ -40,7 +40,7 @@ insert_count += 1 fwtable.insert(user_id=row.user_id, follower_id=row.friend_id) -print "Friends table:", db(ftable).count() -print "Friend requests table:", db(frtable).count() -print "Following table:", db(fwtable).count() -print "Insert count:", insert_count +print("Friends table:", db(ftable).count()) +print("Friend requests table:", db(frtable).count()) +print("Following table:", db(fwtable).count()) +print("Insert count:", insert_count) diff --git a/private/scripts/extras/populate-pname.py b/private/scripts/extras/populate-pname.py index edc8d84d..ccef838e 100644 --- a/private/scripts/extras/populate-pname.py +++ b/private/scripts/extras/populate-pname.py @@ -37,7 +37,7 @@ all_problems[problem["problem_link"]] = problem["problem_name"].strip() for plink in plinks: - if all_problems.has_key(plink) and all_problems[plink] != "": + if plink in all_problems and all_problems[plink] != "": query = (ptable.problem_link == plink) - print plink, "*", all_problems[plink], "*" + print(plink, "*", all_problems[plink], "*") db(query).update(problem_name=all_problems[plink]) diff --git a/private/scripts/extras/populate-problem.py b/private/scripts/extras/populate-problem.py index e267407f..903aa68f 100644 --- a/private/scripts/extras/populate-problem.py +++ b/private/scripts/extras/populate-problem.py @@ -36,7 +36,7 @@ link_to_id = {} for problem in problem_tags: - print "Inserting " + problem.problem_name + print("Inserting " + problem.problem_name) row_id = ptable.insert(name=problem.problem_name, link=problem.problem_link, tags=problem.tags, @@ -47,6 +47,6 @@ for problem in problem_editorials: row = ptable(link_to_id[problem.problem_link]) - print "Updating " + row.name + print("Updating " + row.name) row.update_record(editorial_link=problem.editorial_link, editorial_added_on=problem.problem_added_on) diff --git a/private/scripts/extras/populate-solved-problem.py b/private/scripts/extras/populate-solved-problem.py index 46caece9..be1c91f0 100644 --- a/private/scripts/extras/populate-solved-problem.py +++ b/private/scripts/extras/populate-solved-problem.py @@ -28,7 +28,7 @@ def build_when_string(current_problems): all_vars = [""] * 4 for problem in current_problems: - for it in xrange(4): + for it in range(4): if it >= 2: if problem[1][it] is None: problem[1][it] = "" @@ -40,7 +40,7 @@ def build_when_string(current_problems): batch_size = 700 -for i in xrange(0, len(final_hash), batch_size): +for i in range(0, len(final_hash), batch_size): current_problems = final_hash[i : i + batch_size] all_vars = build_when_string(current_problems) all_vars.append(",".join(["'" + x[0] + "'" for x in current_problems])) diff --git a/private/scripts/extras/populate_stopstalk_rating.py b/private/scripts/extras/populate_stopstalk_rating.py index dac12244..3426d806 100644 --- a/private/scripts/extras/populate_stopstalk_rating.py +++ b/private/scripts/extras/populate_stopstalk_rating.py @@ -26,12 +26,12 @@ rows = db(atable).select() for row in rows: - print "Updating for", row.stopstalk_handle + print("Updating for", row.stopstalk_handle) row.update_record(stopstalk_rating=int(row.rating), stopstalk_prev_rating=int(row.prev_rating)) rows = db(cftable).select() for row in rows: - print "Updating for", row.stopstalk_handle + print("Updating for", row.stopstalk_handle) row.update_record(stopstalk_rating=int(row.rating), stopstalk_prev_rating=int(row.prev_rating)) diff --git a/private/scripts/extras/problem_difficulty.py b/private/scripts/extras/problem_difficulty.py index a6f0e046..8398b336 100644 --- a/private/scripts/extras/problem_difficulty.py +++ b/private/scripts/extras/problem_difficulty.py @@ -46,7 +46,7 @@ "Hard": 4.5 } -tags = tag_difficulty.keys() +tags = list(tag_difficulty.keys()) difficulty = defaultdict(list) @@ -89,7 +89,7 @@ # Compute average difficulty from all types of problem difficulties. write_count = 0 -for pid, difficulties in difficulty.items(): +for pid, difficulties in list(difficulty.items()): if write_count >= 100: db.commit() write_count = 0 @@ -100,7 +100,7 @@ avg_difficulty = float("{0:.3f}".format(avg_difficulty)) precord = ptable(pid) if precord.difficulty != avg_difficulty: - print "updating problem difficulty for", pid, ":", precord.difficulty, "->", avg_difficulty + print("updating problem difficulty for", pid, ":", precord.difficulty, "->", avg_difficulty) precord.update_record(difficulty=avg_difficulty) db.commit() diff --git a/private/scripts/extras/remove-problem-duplicates.py b/private/scripts/extras/remove-problem-duplicates.py index c9634224..097e6631 100644 --- a/private/scripts/extras/remove-problem-duplicates.py +++ b/private/scripts/extras/remove-problem-duplicates.py @@ -36,6 +36,6 @@ ids = row[0].split(",")[1:] duplicate_ids.extend(ids) -duplicate_ids = [long(x) for x in duplicate_ids] +duplicate_ids = [int(x) for x in duplicate_ids] db(ptable.id.belongs(duplicate_ids)).delete() -print "Deleted %d duplicate problem records" % len(duplicate_ids) +print("Deleted %d duplicate problem records" % len(duplicate_ids)) diff --git a/private/scripts/extras/rename_to_padded_files.py b/private/scripts/extras/rename_to_padded_files.py index af75fbff..1ffa9ef6 100644 --- a/private/scripts/extras/rename_to_padded_files.py +++ b/private/scripts/extras/rename_to_padded_files.py @@ -39,7 +39,7 @@ for one_file in all_files: if re.match("^\d+\.pdf$", one_file) is None or \ len(one_file) == 9 + 4: # 9 digit user_id, 4 for .pdf - print "Skipping", one_file + print("Skipping", one_file) continue user_id = one_file.replace(".pdf", "") command = "aws s3 mv s3://%s/resumes/%s s3://%s/resumes/%s" % (S3_BUCKET, one_file, S3_BUCKET, "%.9d.pdf" % int(user_id)) diff --git a/private/scripts/extras/resetDB.py b/private/scripts/extras/resetDB.py index aa787e38..64a1305d 100644 --- a/private/scripts/extras/resetDB.py +++ b/private/scripts/extras/resetDB.py @@ -33,18 +33,18 @@ Open the Index page again """ db.submission.truncate() -print "Successfully deleted all submissions" +print("Successfully deleted all submissions") auth_user_update = db(db.auth_user).update(last_retrieved="2013-01-01 00:00:00") if auth_user_update: - print "Update on auth_user completed" + print("Update on auth_user completed") else: - print "auth_user was not updated" + print("auth_user was not updated") custom_friend_update = db(db.custom_friend).update(last_retrieved="2013-01-01 00:00:00") if custom_friend_update: - print "Update on custom_friend completed" + print("Update on custom_friend completed") else: - print "custom_friend was not updated" + print("custom_friend was not updated") db.commit() diff --git a/private/scripts/extras/solved-count.py b/private/scripts/extras/solved-count.py index ad857d14..a92a2aa4 100644 --- a/private/scripts/extras/solved-count.py +++ b/private/scripts/extras/solved-count.py @@ -37,14 +37,14 @@ GROUP BY problem_link, newstatus; """ -print "Executing Count SQL query ..." +print("Executing Count SQL query ...") result = db.executesql(sql_query) -print "Count SQL Query finished ..." +print("Count SQL Query finished ...") final_hash = {} for problem in result: - if final_hash.has_key(problem[0]): + if problem[0] in final_hash: if problem[1] == "AC": final_hash[problem[0]][0] = problem[2] final_hash[problem[0]][1] += problem[2] @@ -72,15 +72,15 @@ GROUP BY problem_link; """ -print "Executing Solved IDs query ..." +print("Executing Solved IDs query ...") result = db.executesql(sql_query) -print "Solved IDs query finished..." +print("Solved IDs query finished...") for problem in result: final_hash[problem[0]][-2:] = [problem[1], problem[2]] -print "Final hash completely populated ..." +print("Final hash completely populated ...") # Serialize the dict for populating it to `problem` table with open("problem_stats", "wb") as f: - pickle.dump(final_hash.items(), f) + pickle.dump(list(final_hash.items()), f) diff --git a/private/scripts/extras/spoj_complete_retrieval.py b/private/scripts/extras/spoj_complete_retrieval.py index ca92c662..f1840bf9 100644 --- a/private/scripts/extras/spoj_complete_retrieval.py +++ b/private/scripts/extras/spoj_complete_retrieval.py @@ -35,7 +35,7 @@ except: pass -print all_problem_names +print(all_problem_names) #for problem_name in all_problem_names: diff --git a/private/scripts/extras/sticker_count.py b/private/scripts/extras/sticker_count.py index 5c203fb2..8e57af8c 100644 --- a/private/scripts/extras/sticker_count.py +++ b/private/scripts/extras/sticker_count.py @@ -61,4 +61,4 @@ if claimable: valid_friends += 1 - print user.email, valid_friends / 3 + print(user.email, valid_friends / 3) diff --git a/private/scripts/extras/timus_submissions_retrieval.py b/private/scripts/extras/timus_submissions_retrieval.py index 6da7fae6..02c5abac 100644 --- a/private/scripts/extras/timus_submissions_retrieval.py +++ b/private/scripts/extras/timus_submissions_retrieval.py @@ -29,7 +29,7 @@ submissions = [] from_id = None count = 1000 -for i in xrange(1000): +for i in range(1000): initial_url = acm_link + "status.aspx?author=" + timus_id + "&count=" + str(count) if from_id is None: url = initial_url diff --git a/private/scripts/extras/timus_tag_retrieval.py b/private/scripts/extras/timus_tag_retrieval.py index b8a6f6d6..d27ae3f9 100644 --- a/private/scripts/extras/timus_tag_retrieval.py +++ b/private/scripts/extras/timus_tag_retrieval.py @@ -23,15 +23,15 @@ import bs4, requests from time import sleep tags = set([]) -for i in xrange(1900, 2111): +for i in range(1900, 2111): url = "http://acm.timus.ru/problem.aspx?space=1&num=%d&locale=en" % i response = requests.get(url) soup = bs4.BeautifulSoup(response.text, "lxml") all_as = soup.find("div", class_="problem_links").previous_sibling.find_all("a")[:-1] - print i, [x.text for x in all_as] + print(i, [x.text for x in all_as]) for tmp in all_as: tags.add(tmp.text) sleep(1) -print tags +print(tags) diff --git a/private/scripts/extras/user_editorial_snapshot.py b/private/scripts/extras/user_editorial_snapshot.py index aa6af813..84662653 100644 --- a/private/scripts/extras/user_editorial_snapshot.py +++ b/private/scripts/extras/user_editorial_snapshot.py @@ -22,4 +22,4 @@ """ rows = db(db.user_editorials).select() -print rows +print(rows) diff --git a/private/scripts/extras/uva-no-more-needed.py b/private/scripts/extras/uva-no-more-needed.py index 1b0a557d..3e7bb9ad 100644 --- a/private/scripts/extras/uva-no-more-needed.py +++ b/private/scripts/extras/uva-no-more-needed.py @@ -36,20 +36,20 @@ def is_problem(path): if path[0] != "i": return "someother" params = dict([tuple(x.split("=")) for x in path[10:].split("&")]) - if params.has_key("problem"): - if problem_dict.has_key(int(params["problem"])): + if "problem" in params: + if int(params["problem"]) in problem_dict: problem_dict[int(params["problem"])].append((int(params["Itemid"]), int(params["category"]))) else: problem_dict[int(params["problem"])] = [(int(params["Itemid"]), int(params["category"]))] - return params.has_key("problem") + return "problem" in params def recurse(tabs, path): ret = is_problem(path) if ret == "someother": return - print "\t" * tabs, path + print("\t" * tabs, path) if ret: return response = requests.get(judgeurl + path) @@ -61,7 +61,7 @@ def recurse(tabs, path): recurse(tabs + 1, link["href"]) recurse(0, "index.php?option=com_onlinejudge&Itemid=8") -print "******************************" +print("******************************") for key in problem_dict: - print "[" + str(key) + ", " + str(problem_dict[key]) + "]" + print("[" + str(key) + ", " + str(problem_dict[key]) + "]") diff --git a/private/scripts/extras/uva-populate-username-to-id.py b/private/scripts/extras/uva-populate-username-to-id.py index d4cbbb50..1beaa74d 100644 --- a/private/scripts/extras/uva-populate-username-to-id.py +++ b/private/scripts/extras/uva-populate-username-to-id.py @@ -45,6 +45,6 @@ for handle in (all_uva_handles - current_handles): response = get_request("http://uhunt.felix-halim.net/api/uname2uid/" + handle) if response.status_code == 200 and response.text.strip() != "0": - print handle, response.text, "added" + print(handle, response.text, "added") u2idtable.insert(username=handle, uva_id=response.text) diff --git a/private/scripts/extras/uva-problem-populate.py b/private/scripts/extras/uva-problem-populate.py index 1164f387..002f01ec 100644 --- a/private/scripts/extras/uva-problem-populate.py +++ b/private/scripts/extras/uva-problem-populate.py @@ -33,7 +33,7 @@ for problem in response.json(): if (problem[0], problem[1]) not in problems: - print problem, "added" + print(problem, "added") ptable.insert(problem_id=problem[0], problem_num=problem[1], title=problem[2], diff --git a/private/scripts/flush-institute-user.py b/private/scripts/flush-institute-user.py index 3f3f94bf..3fa4a71b 100644 --- a/private/scripts/flush-institute-user.py +++ b/private/scripts/flush-institute-user.py @@ -117,7 +117,7 @@ def send_message(to_record, from_records): for row in res: to_id = row[0] from_ids = [int(x) for x in row[1].split(",")] - print to_id, from_ids + print(to_id, from_ids) send_message(id_to_record[to_id], [id_to_record[x] for x in from_ids]) diff --git a/private/scripts/generate-codechef-token.py b/private/scripts/generate-codechef-token.py index 3fed59bd..4767b927 100644 --- a/private/scripts/generate-codechef-token.py +++ b/private/scripts/generate-codechef-token.py @@ -38,7 +38,7 @@ type="CodeChef access_token", time_stamp=datetime.now()) else: - print "Error requesting CodeChef API for access token" + print("Error requesting CodeChef API for access token") query = (attable.time_stamp < datetime.now() - timedelta(days=2)) & \ (attable.type == "CodeChef access_token") diff --git a/private/scripts/generate-neverbounce-tokens.py b/private/scripts/generate-neverbounce-tokens.py index a7f8dd42..a72abde2 100644 --- a/private/scripts/generate-neverbounce-tokens.py +++ b/private/scripts/generate-neverbounce-tokens.py @@ -32,11 +32,11 @@ (current.neverbounce_user2, current.neverbounce_password2, "raj454raj@gmail.com"), (current.neverbounce_user3, current.neverbounce_password3, "admin@stopstalk.com")] -for i in xrange(2): +for i in range(2): # Only 5 tries to get a particular token random.shuffle(tokens) - print tokens[0][2] - for i in xrange(5): + print(tokens[0][2]) + for i in range(5): response = requests.post('https://api.neverbounce.com/v3/access_token', auth=HTTPBasicAuth(tokens[0][0], tokens[0][1]), @@ -45,7 +45,7 @@ verify=False) if response.status_code == 200: response = response.json() - if response.has_key("access_token"): + if "access_token" in response: attable.insert(value=response["access_token"], type="NeverBounce access_token", time_stamp=datetime.now()) diff --git a/private/scripts/generate_global_trending.py b/private/scripts/generate_global_trending.py index d616da27..90811a88 100644 --- a/private/scripts/generate_global_trending.py +++ b/private/scripts/generate_global_trending.py @@ -32,11 +32,11 @@ start = time.time() last_submissions = trending_utilities.get_last_submissions_for_trending(query) -print datetime.datetime.now(), "Got submissions for last", current.PAST_DAYS, "days in ", time.time() - start, "seconds" -print datetime.datetime.now(), "Total submission count:", len(last_submissions) +print(datetime.datetime.now(), "Got submissions for last", current.PAST_DAYS, "days in ", time.time() - start, "seconds") +print(datetime.datetime.now(), "Total submission count:", len(last_submissions)) trending_problems = trending_utilities.get_trending_problem_list(last_submissions) current.REDIS_CLIENT.set(GLOBALLY_TRENDING_PROBLEMS_CACHE_KEY, str(trending_problems)) -print datetime.datetime.now(), "Redis set done on", GLOBALLY_TRENDING_PROBLEMS_CACHE_KEY +print(datetime.datetime.now(), "Redis set done on", GLOBALLY_TRENDING_PROBLEMS_CACHE_KEY) diff --git a/private/scripts/get_codeforces_authors.py b/private/scripts/get_codeforces_authors.py index dc41878a..35340dae 100644 --- a/private/scripts/get_codeforces_authors.py +++ b/private/scripts/get_codeforces_authors.py @@ -42,12 +42,12 @@ def get_gym_problem_authors(): timeout=10, headers={"User-Agent": COMMON_USER_AGENT}) if response in REQUEST_FAILURES: - print "[get_gym_problem_authors]: Error while requesting API", response + print("[get_gym_problem_authors]: Error while requesting API", response) return response = response.json() if response["status"] != "OK": - print "[get_gym_problem_authors]: status not OK", response + print("[get_gym_problem_authors]: status not OK", response) for row in response["result"]: if row["id"] not in contest_to_authors["gym"] and \ @@ -70,7 +70,7 @@ def get_normal_problem_authors(): response = get_request(url, headers={"User-Agent": COMMON_USER_AGENT}) if response in REQUEST_FAILURES: - print "[get_normal_problem_authors]: Failure for url", url, response + print("[get_normal_problem_authors]: Failure for url", url, response) break soup = bs4.BeautifulSoup(response.text, "lxml") @@ -89,7 +89,7 @@ def get_normal_problem_authors(): temp_data = tds[1].text.strip() if temp_data == "": - print "[get_normal_problem_authors]: No authors for", contest_id + print("[get_normal_problem_authors]: No authors for", contest_id) continue authors = temp_data.split("\n") @@ -136,11 +136,11 @@ def write_authors_to_file(): if __name__ == "__main__": if codeforces.Profile.is_website_down(): - print "Codeforces is down for now" + print("Codeforces is down for now") sys.exit(0) get_initial_authors() get_gym_problem_authors() get_normal_problem_authors() write_authors_to_file() - print contest_to_authors \ No newline at end of file + print(contest_to_authors) \ No newline at end of file diff --git a/private/scripts/google_index/add_to_google.py b/private/scripts/google_index/add_to_google.py index 9001c45d..40eb9651 100644 --- a/private/scripts/google_index/add_to_google.py +++ b/private/scripts/google_index/add_to_google.py @@ -29,8 +29,8 @@ import sys def log_info(message): - print "%s: %s" % (str(datetime.datetime.now()), - message) + print("%s: %s" % (str(datetime.datetime.now()), + message)) def getHTTPObject(): SCOPES = [ "https://www.googleapis.com/auth/indexing" ] diff --git a/private/scripts/http_errors.py b/private/scripts/http_errors.py index 5e47260b..d73c6dc5 100644 --- a/private/scripts/http_errors.py +++ b/private/scripts/http_errors.py @@ -28,18 +28,18 @@ if len(errors) == 0: sys.exit() -print str(datetime.datetime.now()), "________________" +print(str(datetime.datetime.now()), "________________") all_errors = {} for error in errors: - if all_errors.has_key(error.status_code): + if error.status_code in all_errors: all_errors[error.status_code].append((error.user_id, error.content)) else: all_errors[error.status_code] = [(error.user_id, error.content)] for code in all_errors: - print code + print(code) for error in all_errors[code]: - print error[0], error[1] + print(error[0], error[1]) hetable.truncate() diff --git a/private/scripts/merge_hackerearth_duplicate_problems.py b/private/scripts/merge_hackerearth_duplicate_problems.py index d9388bd1..42290e6b 100644 --- a/private/scripts/merge_hackerearth_duplicate_problems.py +++ b/private/scripts/merge_hackerearth_duplicate_problems.py @@ -46,7 +46,7 @@ def find_pairs(values): result = [] final_problem_id = None final_problem_link = None - print values.keys() + print(list(values.keys())) if "practice" in values: if len(values["practice"]) > 1: for problem_record in values["practice"]: @@ -82,17 +82,17 @@ def find_pairs(values): final_problem_link = values["something_else"][0].link if final_problem_id is None: - if values.keys() == ["problem", "practice"]: + if list(values.keys()) == ["problem", "practice"]: values["problem"][0].delete_record() values["practice"][0].delete_record() else: - print "Couldn't find problem record for", values + print("Couldn't find problem record for", values) return for key in values: for problem in values[key]: - print problem.link, "-->", final_problem_link - print problem.id, "-->", final_problem_id + print(problem.link, "-->", final_problem_link) + print(problem.id, "-->", final_problem_id) utilities.merge_duplicate_problems(final_problem_id, problem.id) rows = db(ptable.link.contains("hackerearth.com/")).select() @@ -104,7 +104,7 @@ def find_pairs(values): else: similar_problems[key] = [row] -print str(datetime.datetime.now()), "Starting to clean HackerEarth duplicates" +print(str(datetime.datetime.now()), "Starting to clean HackerEarth duplicates") all_set = set([]) for key in similar_problems: @@ -115,7 +115,7 @@ def find_pairs(values): tmp_val = re.match("https://www.hackerearth.com/.*?/", item.link).group() except AttributeError: - print "Exception in matching", item.link + print("Exception in matching", item.link) values = {} break @@ -126,6 +126,6 @@ def find_pairs(values): else: values[tmp_val] = [item] find_pairs(values) - print "__________________________________________________" + print("__________________________________________________") -print str(datetime.datetime.now()), "End cleaning HackerEarth duplicates" +print(str(datetime.datetime.now()), "End cleaning HackerEarth duplicates") diff --git a/private/scripts/populate-atcoder-problems.py b/private/scripts/populate-atcoder-problems.py index 557e33c3..53ee4752 100644 --- a/private/scripts/populate-atcoder-problems.py +++ b/private/scripts/populate-atcoder-problems.py @@ -32,11 +32,11 @@ problems = response.json() if len(problems) > row_count: - print str(datetime.datetime.now()), "Row counts is different db:", row_count, " api:", len(problems) + print(str(datetime.datetime.now()), "Row counts is different db:", row_count, " api:", len(problems)) aptable.truncate() for row in problems: aptable.insert(contest_id=row["contest_id"], problem_identifier=row["id"], name=row["title"]) else: - print str(datetime.datetime.now()), "Row count is same as in db", row_count + print(str(datetime.datetime.now()), "Row count is same as in db", row_count) diff --git a/private/scripts/populate-institute-to-country.py b/private/scripts/populate-institute-to-country.py index ca347b23..bbe90086 100644 --- a/private/scripts/populate-institute-to-country.py +++ b/private/scripts/populate-institute-to-country.py @@ -30,20 +30,20 @@ """ institute_to_country = dict(db.executesql(sql_query)) for institute in institute_to_country: - print institute, "->", institute_to_country[institute] + print(institute, "->", institute_to_country[institute]) atable = db.auth_user cftable = db.custom_friend updated_count = 0 -for record in db(atable.institute.belongs(institute_to_country.keys())).select(): +for record in db(atable.institute.belongs(list(institute_to_country.keys()))).select(): if not record.country: record.update_record(country=institute_to_country[record.institute]) updated_count += 1 -for record in db(cftable.institute.belongs(institute_to_country.keys())).select(): +for record in db(cftable.institute.belongs(list(institute_to_country.keys()))).select(): if not record.country: record.update_record(country=institute_to_country[record.institute]) updated_count += 1 -print "Total updated:", updated_count +print("Total updated:", updated_count) diff --git a/private/scripts/populate-tags.py b/private/scripts/populate-tags.py index 7408402e..04a18c9b 100644 --- a/private/scripts/populate-tags.py +++ b/private/scripts/populate-tags.py @@ -112,27 +112,27 @@ flag = False for final_tag in current_set: - if (1L, problem.id, all_tags[final_tag]) not in current_suggested_tags: + if (1, problem.id, all_tags[final_tag]) not in current_suggested_tags: flag = True - sttable.insert(user_id=1L, + sttable.insert(user_id=1, tag_id=all_tags[final_tag], problem_id=problem.id) if flag: - print problem.id, problem.tags, "-->", current_set + print(problem.id, problem.tags, "-->", current_set) for final_tag in this_tags: - if untagged.has_key(final_tag): + if final_tag in untagged: untagged[final_tag] += 1 else: untagged[final_tag] = 1 db.commit() -print "\n\n\n=========================== Untagged ===========================\n" +print("\n\n\n=========================== Untagged ===========================\n") -for a, b in sorted(untagged.items(), key=lambda (k, v): (v, k), reverse=True): +for a, b in sorted(list(untagged.items()), key=lambda k_v: (k_v[1], k_v[0]), reverse=True): try: - print unicode(a), unicode(b) + print(str(a), str(b)) except UnicodeEncodeError: - print "Can't print this tag" + print("Can't print this tag") pass diff --git a/private/scripts/process-mail-queue.py b/private/scripts/process-mail-queue.py index 441d4514..36aed68a 100644 --- a/private/scripts/process-mail-queue.py +++ b/private/scripts/process-mail-queue.py @@ -42,13 +42,13 @@ subject=row.subject, message=row.message): row.update_record(status="sent") - print str(datetime.datetime.now()), "Sent to %s %s" % (row.email, row.subject) + print(str(datetime.datetime.now()), "Sent to %s %s" % (row.email, row.subject)) else: - print "ERROR: " + str(bulkmail.error) + print("ERROR: " + str(bulkmail.error)) if str(bulkmail.error).__contains__("Mail rate exceeded limit") is False: # Email sending failed with some other reason row.update_record(status="failed") - print str(datetime.datetime.now()), "Email sending to %s failed with: %s" % (row.email, bulkmail.error) + print(str(datetime.datetime.now()), "Email sending to %s failed with: %s" % (row.email, bulkmail.error)) else: # Email sending failed due to Mail rate break diff --git a/private/scripts/recheck-invalid-handles.py b/private/scripts/recheck-invalid-handles.py index 6b61c814..0423e95c 100644 --- a/private/scripts/recheck-invalid-handles.py +++ b/private/scripts/recheck-invalid-handles.py @@ -49,14 +49,14 @@ def get_invalid_handle_method(site): handle_to_row[site] = {} impossiblehandle = "thisreallycantbeahandle308" - assert(all(map(lambda site: get_invalid_handle_method(site)(impossiblehandle), current.SITES.keys()))) + assert(all([get_invalid_handle_method(site)(impossiblehandle) for site in list(current.SITES.keys())])) def populate_handle_to_row(table): for row in db(table).select(): for site in current.SITES: site_handle = row[site.lower() + "_handle"] if site_handle: - if handle_to_row[site].has_key(site_handle): + if site_handle in handle_to_row[site]: handle_to_row[site][site_handle].append(row) else: handle_to_row[site][site_handle] = [row] @@ -87,11 +87,11 @@ def populate_handle_to_row(table): continue # If not an invalid handle anymore - if handle_to_row[row.site].has_key(row.handle) and mapping[row.site](row.handle) is False: + if row.handle in handle_to_row[row.site] and mapping[row.site](row.handle) is False: cnt += 1 - print row.site, row.handle, "deleted" + print(row.site, row.handle, "deleted") for row_obj in handle_to_row[row.site][row.handle]: - print "\t", row_obj.stopstalk_handle, "updated" + print("\t", row_obj.stopstalk_handle, "updated") update_dict[row.site.lower() + "_lr"] = current.INITIAL_DATE row_obj.update_record(**update_dict) if "user_id" in row_obj: diff --git a/private/scripts/refresh-editorial.py b/private/scripts/refresh-editorial.py index c0eed8a0..70ccccba 100644 --- a/private/scripts/refresh-editorial.py +++ b/private/scripts/refresh-editorial.py @@ -60,7 +60,7 @@ def refresh_editorials(): # Start retrieving tags for the problems # that are not in problem table - for i in xrange(0, len(no_editorial), workers): + for i in range(0, len(no_editorial), workers): threads = [] # O God I am so smart !! for problem_id in no_editorial[i : i + workers]: @@ -68,9 +68,9 @@ def refresh_editorials(): gevent.joinall(threads) - print "Total Inserted: [%d]" % (total_inserted) - print "Total Updated: [%d]" % (total_updated) - print "Total Not-changed: [%d]" % (not_updated) + print("Total Inserted: [%d]" % (total_inserted)) + print("Total Updated: [%d]" % (total_updated)) + print("Total Not-changed: [%d]" % (not_updated)) def get_editorial(problem_id, today): @@ -98,15 +98,15 @@ def get_editorial(problem_id, today): if editorial_link: row.update_record(editorial_link=editorial_link, editorial_added_on=today) - print "Updated", link, "->", editorial_link + print("Updated", link, "->", editorial_link) total_updated += 1 else: not_updated += 1 - print "No-change", link + print("No-change", link) else: - print "****************Should not be here****************" + print("****************Should not be here****************") total_inserted += 1 - print "Inserted", link, editorial_link + print("Inserted", link, editorial_link) # Intentional raising error to fix the issue 1 / 0 # Insert editorial_link in problem table diff --git a/private/scripts/refresh-problem-details.py b/private/scripts/refresh-problem-details.py index 4cb0c650..42b6cb9d 100644 --- a/private/scripts/refresh-problem-details.py +++ b/private/scripts/refresh-problem-details.py @@ -98,11 +98,11 @@ def update_params(link, prev_value, curr_value): curr_value = "['-']" if curr_value == [] else str(curr_value) if prev_value != curr_value and prev_value == "['-']": - print "Updated tags", link, prev_value, "->", curr_value + print("Updated tags", link, prev_value, "->", curr_value) return dict(tags=curr_value if curr_value != "['-']" else "['-']", tags_added_on=today) else: - print "No-change in tags", link + print("No-change in tags", link) return dict() # -------------------------------------------------------------------------- @@ -156,11 +156,11 @@ def conditional(dal_object): @staticmethod def update_params(link, prev_value, curr_value): if curr_value is not None and prev_value is None: - print "Updated editorial_link", link, prev_value, "->", curr_value + print("Updated editorial_link", link, prev_value, "->", curr_value) return dict(editorial_link=curr_value, editorial_added_on=today) else: - print "No-change in editorial_link", link + print("No-change in editorial_link", link) return dict() @@ -205,7 +205,7 @@ def update_database(problem_record, new_value): problem_id = problem_record.id if new_value is None: - print "No-change in problem_setters", problem_link + print("No-change in problem_setters", problem_link) return records = db(pstable.problem_id == problem_id).select() @@ -219,13 +219,13 @@ def update_database(problem_record, new_value): handle=value) updated_database = True else: - print (problem_id, value), "already exists" + print((problem_id, value), "already exists") if updated_database: change_counts[column_value]["updated"] += 1 - print "Updated problem_setters", problem_link, prev_value, "->", new_value + print("Updated problem_setters", problem_link, prev_value, "->", new_value) else: - print "No-change in problem_setters", problem_link + print("No-change in problem_setters", problem_link) return # ============================================================================== @@ -249,7 +249,7 @@ def refresh_problem_details(): threads = [] workers = 10 - for i in xrange(0, len(results), workers): + for i in range(0, len(results), workers): threads = [] # O God I am so smart !! for problem_record in results[i : i + workers]: @@ -278,7 +278,7 @@ def get_problem_details(problem_record): update_things=update_things) except AttributeError: # get_problem_details not implemented for this site - print "get_problem_details not implemented for", link + print("get_problem_details not implemented for", link) return for column_value in update_things: @@ -295,4 +295,4 @@ def get_problem_details(problem_record): refresh_problem_details() - print change_counts + print(change_counts) diff --git a/private/scripts/refresh-tags.py b/private/scripts/refresh-tags.py index 500c35fa..c0c1a9f1 100644 --- a/private/scripts/refresh-tags.py +++ b/private/scripts/refresh-tags.py @@ -54,7 +54,7 @@ def refresh_tags(): query = (ptable.tags_added_on >= before_30) & \ (ptable.tags == "['-']") no_tags = db(query).select(ptable.id) - no_tags = map(lambda x: x.id, no_tags) + no_tags = [x.id for x in no_tags] today = datetime.datetime.now().strftime("%Y-%m-%d") threads = [] @@ -62,7 +62,7 @@ def refresh_tags(): # Start retrieving tags for the problems # that are not in problem table - for i in xrange(0, len(no_tags), workers): + for i in range(0, len(no_tags), workers): threads = [] # O God I am so smart !! for problem_id in no_tags[i : i + workers]: @@ -72,9 +72,9 @@ def refresh_tags(): gevent.joinall(threads) - print "Total Inserted: [%d]" % (total_inserted) - print "Total Updated: [%d]" % (total_updated) - print "Total Not-changed: [%d]" % (not_updated) + print("Total Inserted: [%d]" % (total_inserted)) + print("Total Updated: [%d]" % (total_updated)) + print("Total Not-changed: [%d]" % (not_updated)) def get_tag(pid, today): @@ -105,14 +105,14 @@ def get_tag(pid, today): if prev_tags != str(all_tags) and prev_tags == "['-']": row.update_record(tags=str(all_tags), tags_added_on=today) - print "Updated", link, prev_tags, "->", all_tags + print("Updated", link, prev_tags, "->", all_tags) total_updated += 1 else: not_updated += 1 - print "No-change", link + print("No-change", link) else: total_inserted += 1 - print "Inserted ", link, all_tags + print("Inserted ", link, all_tags) # Insert tags in problem table # Note: Tags are stored in a stringified list # so that they can be used directly by eval diff --git a/private/scripts/remove-codechef-duplicates.py b/private/scripts/remove-codechef-duplicates.py index a9c90976..06936623 100644 --- a/private/scripts/remove-codechef-duplicates.py +++ b/private/scripts/remove-codechef-duplicates.py @@ -32,8 +32,8 @@ right_now = datetime.datetime.now() start_time = str(right_now - datetime.timedelta(days=5))[:-7] end_time = str(right_now)[:-7] -print "Start time:", start_time, ", End time:", end_time -print "Starting query", datetime.datetime.now() +print("Start time:", start_time, ", End time:", end_time) +print("Starting query", datetime.datetime.now()) # Find the submissions which are duplicate in CodeChef retrieval # These are introduced because of time format being something like 1 hour ago... @@ -45,25 +45,25 @@ site='CodeChef' AND time_stamp BETWEEN '%s' AND '%s' """ % (start_time, end_time)) -print "Query complete", datetime.datetime.now() +print("Query complete", datetime.datetime.now()) duplicate_hash = {} for row in res: dict_key = row[1:] - if duplicate_hash.has_key(dict_key): + if dict_key in duplicate_hash: duplicate_hash[dict_key].append(row[0]) else: duplicate_hash[dict_key] = [row[0]] -print "Hash computation complete", datetime.datetime.now() +print("Hash computation complete", datetime.datetime.now()) to_be_deleted = [] for key in duplicate_hash: if len(duplicate_hash[key]) > 1: - print duplicate_hash[key] + print(duplicate_hash[key]) to_be_deleted.extend(duplicate_hash[key][1:]) -print "To be deleted:", to_be_deleted -print "Starting delete query", datetime.datetime.now() +print("To be deleted:", to_be_deleted) +print("Starting delete query", datetime.datetime.now()) db(stable.id.belongs(to_be_deleted)).delete() -print "Delete complete", datetime.datetime.now() +print("Delete complete", datetime.datetime.now()) diff --git a/private/scripts/stopstalk_rating_history.py b/private/scripts/stopstalk_rating_history.py index e78cbc40..66aee4fc 100644 --- a/private/scripts/stopstalk_rating_history.py +++ b/private/scripts/stopstalk_rating_history.py @@ -70,7 +70,7 @@ def update_stopstalk_rating(user_id, user_submissions, custom): final_rating = utilities.get_stopstalk_user_stats(user_submissions)["rating_history"] final_rating = dict(final_rating) if final_rating == {}: - print user_id, custom, "No submissions" + print(user_id, custom, "No submissions") return atable = db.auth_user @@ -79,7 +79,7 @@ def update_stopstalk_rating(user_id, user_submissions, custom): today = str(datetime.datetime.now().date()) current_rating = sum(final_rating[today]) - print user_id, custom, current_rating + print(user_id, custom, current_rating) update_params = dict(stopstalk_rating=int(current_rating)) if custom: @@ -98,7 +98,7 @@ def compute_group_ratings(last_id, custom): column_name = "custom_user_id" if custom else "user_id" start = 0 - for i in xrange(last_id / BATCH_SIZE + 1): + for i in range(last_id / BATCH_SIZE + 1): res = get_sql_result(i * BATCH_SIZE, (i + 1) * BATCH_SIZE, custom) @@ -140,4 +140,4 @@ def compute_single_rating(user_id, custom): custom = (sys.argv[3] == "custom") compute_single_rating(user_id, custom) else: - print "Invalid command line arguments" + print("Invalid command line arguments") diff --git a/private/scripts/submissions.py b/private/scripts/submissions.py index ee3600cd..e0f38f04 100644 --- a/private/scripts/submissions.py +++ b/private/scripts/submissions.py @@ -77,11 +77,11 @@ def log(self, site, message): @param site (String): Site name of the current logline @param message (String): Actual message to be logged """ - print "%s %s%s %s %s" % (str(datetime.datetime.now()), + print("%s %s%s %s %s" % (str(datetime.datetime.now()), self.stopstalk_handle, self.custom_str, site, - message) + message)) # -------------------------------------------------------------------------- def generic_log(self, message): @@ -90,10 +90,10 @@ def generic_log(self, message): @param message (String): Actual message to be logged """ - print "%s %s%s %s" % (str(datetime.datetime.now()), + print("%s %s%s %s" % (str(datetime.datetime.now()), self.stopstalk_handle, self.custom_str, - message) + message)) # ------------------------------------------------------------------------------ def concurrent_submission_retrieval_handler(action, user_id, custom): @@ -125,7 +125,7 @@ def _stringify(given_set): # Get the existing user_ids and custom_user_ids for taking union ptable = db.problem - query = (ptable.id.belongs(problem_solved_stats.keys())) + query = (ptable.id.belongs(list(problem_solved_stats.keys()))) existing = db(query).select(ptable.id, ptable.user_ids, ptable.custom_user_ids) @@ -375,7 +375,7 @@ def update_stopstalk_rating(user_id, stopstalk_handle, custom): return current_rating # ------------------------------------------------------------------------------ -def retrieve_submissions(record, custom, all_sites=current.SITES.keys(), codechef_retrieval=False): +def retrieve_submissions(record, custom, all_sites=list(current.SITES.keys()), codechef_retrieval=False): """ Retrieve submissions that are not already in the database """ @@ -386,7 +386,7 @@ def retrieve_submissions(record, custom, all_sites=current.SITES.keys(), codeche global metric_handlers if concurrent_submission_retrieval_handler("GET", record.id, custom) == "ONGOING": - print "Already ongoing retrieval for", record.id, custom + print("Already ongoing retrieval for", record.id, custom) return else: concurrent_submission_retrieval_handler("SET", record.id, custom) @@ -405,7 +405,7 @@ def retrieve_submissions(record, custom, all_sites=current.SITES.keys(), codeche logger = Logger(record.stopstalk_handle, custom) if nrtable_record is None: - print "Record not found", user_column_name, record.id + print("Record not found", user_column_name, record.id) nrtable.insert(**{user_column_name: record.id}) nrtable_record = db(nrtable[user_column_name] == record.id).select().first() @@ -657,12 +657,12 @@ def re_retrieve(): rows = db(frtable).select(limitby=(0, 20)) for record in rows: if record.user_id: - if users.has_key(record.user_id): + if record.user_id in users: users[record.user_id].add(record.site) else: users[record.user_id] = set([record.site]) elif record.custom_user_id: - if custom_users.has_key(record.custom_user_id): + if record.custom_user_id in custom_users: custom_users[record.custom_user_id].add(record.site) else: custom_users[record.custom_user_id] = set([record.site]) @@ -749,7 +749,7 @@ def codechef_new_retrievals(): elif retrieval_type == "codechef_new_retrievals": users, custom_users = codechef_new_retrievals() else: - print "Invalid arguments" + print("Invalid arguments") sys.exit() uva_problem_dict = utilities.get_problem_mappings(uvadb, @@ -775,18 +775,18 @@ def codechef_new_retrievals(): retrieve_submissions(atable(user_id), False, users[user_id], - current.SITES.keys()) + list(current.SITES.keys())) for custom_user_id in custom_users: retrieve_submissions(cftable(custom_user_id), True, custom_users[custom_user_id], - current.SITES.keys()) + list(current.SITES.keys())) else: codechef_retrieval = (retrieval_type == "codechef_new_retrievals") for record in users: - retrieve_submissions(record, False, current.SITES.keys(), codechef_retrieval) + retrieve_submissions(record, False, list(current.SITES.keys()), codechef_retrieval) for record in custom_users: - retrieve_submissions(record, True, current.SITES.keys(), codechef_retrieval) + retrieve_submissions(record, True, list(current.SITES.keys()), codechef_retrieval) # Just in case the last batch has some residue flush_problem_stats() diff --git a/private/scripts/todays-following.py b/private/scripts/todays-following.py index 61e2a0a5..1234666f 100644 --- a/private/scripts/todays-following.py +++ b/private/scripts/todays-following.py @@ -40,7 +40,7 @@ added_unfriended = {} for row in rows: - if added_unfriended.has_key(row.user_id): + if row.user_id in added_unfriended: if row.transaction_type == "add": added_unfriended[row.user_id][0].add(row.follower_id) else: @@ -117,7 +117,7 @@ def get_html_content(user_id, add_unfriend_list): log_string += " A:" + ",".join(str(x) for x in curr_list[0]) if len(curr_list[1]): log_string += " U:" + ",".join(str(x) for x in curr_list[1]) - print log_string + print(log_string) current.send_mail(to=user_details[user_id]["email"], subject="Friendship activity from StopStalk", message=mail_content, diff --git a/private/scripts/update-authentic.py b/private/scripts/update-authentic.py index f656b147..c26348b0 100644 --- a/private/scripts/update-authentic.py +++ b/private/scripts/update-authentic.py @@ -34,7 +34,7 @@ main_dict = {} for row in result: - if main_dict.has_key(row[0]): + if row[0] in main_dict: if row[2] > 0: main_dict[row[0]] += 1 else: @@ -43,9 +43,9 @@ registered_users = db(atable).select(atable.id, atable.authentic) for user in registered_users: - if main_dict.has_key(user.id): + if user.id in main_dict: if main_dict[user.id] > 1 and user.authentic is False: - print user.id, "updated" + print(user.id, "updated") user.update_record(authentic=True) # END ========================================================================= diff --git a/private/scripts/update-graph-data.py b/private/scripts/update-graph-data.py index d770eee4..7c497801 100644 --- a/private/scripts/update-graph-data.py +++ b/private/scripts/update-graph-data.py @@ -56,7 +56,7 @@ # ============================================================================== def log_line(message): - print str(datetime.now()) + " " + message + print(str(datetime.now()) + " " + message) # ============================================================================== class User: @@ -146,7 +146,7 @@ def write_to_filesystem(self): def update_graph_data(self, sites): threads = [] for site in sites: - if self.handles.has_key(site + "_handle") and self.handles[site + "_handle"] != "": + if site + "_handle" in self.handles and self.handles[site + "_handle"] != "": threads.append(gevent.spawn(getattr(self, "fetch_site_rating_history"), site)) diff --git a/private/scripts/update-per-day.py b/private/scripts/update-per-day.py index 16330039..ea3b46f4 100644 --- a/private/scripts/update-per-day.py +++ b/private/scripts/update-per-day.py @@ -51,7 +51,7 @@ custom_users = db(cftable).select() for user in users: - if user_submissions.has_key(user.id): + if user.id in user_submissions: curr_per_day = user_submissions[user.id] * 1.0 / total_days change = "%0.5f" % (curr_per_day - user.per_day) user.update_record(per_day_change=change) @@ -60,7 +60,7 @@ cid = custom_user.id if custom_user.duplicate_cu: cid = custom_user.duplicate_cu - if custom_user_submissions.has_key(cid): + if cid in custom_user_submissions: curr_per_day = custom_user_submissions[cid] * 1.0 / total_days change = "%0.5f" % (curr_per_day - custom_user.per_day) custom_user.update_record(per_day_change=change) diff --git a/requirements.txt b/requirements.txt index 1c501c5b..7ebb1179 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ parsedatetime==2.1 -gevent==1.1.1 -greenlet==0.4.9 +gevent==20.12.1 +greenlet==0.4.17 beautifulsoup4==4.4.1 -lxml==3.6.0 +lxml==4.6.2 requests==2.20.0 redis==2.10.5 boto3==1.5.9 diff --git a/tests/crawling/test_retrieval_extras.py b/tests/crawling/test_retrieval_extras.py index 8eae206f..4955438c 100644 --- a/tests/crawling/test_retrieval_extras.py +++ b/tests/crawling/test_retrieval_extras.py @@ -44,27 +44,27 @@ def test_tag_retrieval(self): "with_tags": { "CodeChef": { "plink": "https://www.codechef.com/PRACTICE/problems/FNCS", - "tags": [u'data-structure', u'devuy11', u'fenwick-tree', u'medium-hard', u'nov14', u'segment-tree', u'sqrt-decomp'] + "tags": ['data-structure', 'devuy11', 'fenwick-tree', 'medium-hard', 'nov14', 'segment-tree', 'sqrt-decomp'] }, "CodeForces": { "plink": "http://www.codeforces.com/problemset/problem/323/A", - "tags": [u'combinatorics', u'constructive algorithms'] + "tags": ['combinatorics', 'constructive algorithms'] }, "Spoj": { "plink": "https://www.spoj.com/problems/YODANESS/", - "tags": [u'graph-theory', u'number-theory', u'shortest-path', u'sorting', u'tree', u'bitmasks'] + "tags": ['graph-theory', 'number-theory', 'shortest-path', 'sorting', 'tree', 'bitmasks'] }, "HackerEarth": { "plink": "https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/candy-distribution/", - "tags": [u'Dynamic Programming', u'Math', u'Number Theory'] + "tags": ['Dynamic Programming', 'Math', 'Number Theory'] }, "HackerRank": { "plink": "https://www.hackerrank.com/challenges/print-the-elements-of-a-linked-list", - "tags": [u'Linked Lists'] + "tags": ['Linked Lists'] }, "Timus": { "plink": "http://acm.timus.ru/problem.aspx?space=1&num=1954&locale=en", - "tags": [u'hardest problem', u'palindromes', u'string algorithms'] + "tags": ['hardest problem', 'palindromes', 'string algorithms'] } }, "without_tags": { @@ -93,7 +93,7 @@ def test_tag_retrieval(self): if site in assertion_hash["without_tags"]: tags_val = tags_func(problem_link=assertion_hash["without_tags"][site], update_things=["tags"])["tags"] - if tags_val not in ([u"-"], []): + if tags_val not in (["-"], []): raise RuntimeError(site + " without tags failure") # -------------------------------------------------------------------------- @@ -205,9 +205,7 @@ def test_problem_setters_retrieval(self): # -------------------------------------------------------------------------- def test_invalid_handle(self): handle = "thisreallycantbeahandle308" - result = map(lambda site: (site, self.profile_site[site].is_invalid_handle(handle)), - filter(lambda site: self.profile_site[site].is_website_down() == False, - current.SITES.keys())) + result = [(site, self.profile_site[site].is_invalid_handle(handle)) for site in [site for site in list(current.SITES.keys()) if self.profile_site[site].is_website_down() == False]] failure_sites = [] for site, res in result: if not res: @@ -262,10 +260,10 @@ def test_rating_graph(self): expected_list = { "CodeChef": [{'data': {'2015-06-15 15:00:00': {'url': 'https://www.codechef.com/JUNE15', 'rating': '1605', 'name': 'June Challenge 2015', 'rank': '1913'}, '2016-06-15 15:00:00': {'url': 'https://www.codechef.com/JUNE16', 'rating': '1641', 'name': 'June Challenge 2016', 'rank': '5083'}, '2014-07-14 15:00:00': {'url': 'https://www.codechef.com/JULY14', 'rating': '1518', 'name': 'July Challenge 2014', 'rank': '2769'}, '2015-08-17 15:00:00': {'url': 'https://www.codechef.com/AUG15', 'rating': '1704', 'name': 'August Challenge 2015', 'rank': '1244'}, '2014-01-13 15:00:00': {'url': 'https://www.codechef.com/JAN14', 'rating': '1462', 'name': 'January Challenge 2014', 'rank': '3548'}, '2014-12-15 17:00:00': {'url': 'https://www.codechef.com/DEC14', 'rating': '1609', 'name': 'December Challenge 2014', 'rank': '2218'}, '2015-01-12 15:00:00': {'url': 'https://www.codechef.com/JAN15', 'rating': '1617', 'name': 'January Challenge 2015', 'rank': '3105'}, '2015-09-14 15:00:00': {'url': 'https://www.codechef.com/SEPT15', 'rating': '1829', 'name': 'September Challenge 2015', 'rank': '1417'}, '2014-11-17 15:00:00': {'url': 'https://www.codechef.com/NOV14', 'rating': '1717', 'name': 'November Challenge 2014', 'rank': '1751'}, '2015-03-16 15:00:00': {'url': 'https://www.codechef.com/MARCH15', 'rating': '1553', 'name': 'March Challenge 2015', 'rank': '2489'}, '2014-06-16 15:00:00': {'url': 'https://www.codechef.com/JUNE14', 'rating': '1455', 'name': 'June Challenge 2014', 'rank': '4382'}, '2014-02-17 15:00:00': {'url': 'https://www.codechef.com/FEB14', 'rating': '1509', 'name': 'February Challenge 2014', 'rank': '2007'}, '2015-05-18 15:00:00': {'url': 'https://www.codechef.com/MAY15', 'rating': '1519', 'name': 'May Challenge 2015', 'rank': '2946'}, '2015-07-13 15:00:00': {'url': 'https://www.codechef.com/JULY15', 'rating': '1635', 'name': 'July Challenge 2015', 'rank': '1554'}, '2014-08-11 15:00:00': {'url': 'https://www.codechef.com/AUG14', 'rating': '1633', 'name': 'August Challenge 2014', 'rank': '1293'}, '2014-10-13 15:00:00': {'url': 'https://www.codechef.com/OCT14', 'rating': '1730', 'name': 'October Challenge 2014', 'rank': '900'}}, 'title': 'CodeChef Long'}, {'data': {'2015-09-21 00:00:00': {'url': 'https://www.codechef.com/COOK62', 'rating': '1807', 'name': 'September Mega Cook-Off 2015', 'rank': '751'}, '2015-08-24 00:50:00': {'url': 'https://www.codechef.com/COOK61', 'rating': '1881', 'name': 'August Cook-Off 2015', 'rank': '221'}}, 'title': 'CodeChef Cook-off'}, {'data': {}, 'title': 'CodeChef Lunchtime'}], - "CodeForces": [{'data': {'2015-09-28 14:30:00': {'rating': '1295', 'name': u'Codeforces Round #322 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/581', 'rank': 1836, 'ratingChange': -84}, '2014-09-28 21:05:00': {'rating': '1279', 'name': u'Codeforces Round #270', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/472', 'rank': 3520, 'ratingChange': -124}, '2015-09-10 22:00:00': {'rating': '1422', 'name': u'Codeforces Round #319 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/577', 'rank': 940, 'ratingChange': 134}, '2016-01-14 22:05:00': {'rating': '1228', 'name': u'Codeforces Round #339 (Div. 2)', 'solvedCount': 0, 'url': 'http://www.codeforces.com/contest/614', 'rank': 1929, 'ratingChange': -81}, '2016-08-20 18:35:00': {'rating': '1298', 'name': u'Codeforces Round #368 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/707', 'rank': 1919, 'ratingChange': 82}, '2015-10-31 22:00:00': {'rating': '1284', 'name': u'Codeforces Round #328 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/592', 'rank': 2075, 'ratingChange': 11}, '2015-10-25 14:30:00': {'rating': '1273', 'name': u'Codeforces Round #327 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/591', 'rank': 2259, 'ratingChange': -25}, '2015-09-22 22:00:00': {'rating': '1379', 'name': u'Codeforces Round #321 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/580', 'rank': 2018, 'ratingChange': -43}, '2014-08-08 21:00:00': {'rating': '1403', 'name': u'Codeforces Round #260 (Div. 2)', 'solvedCount': 0, 'url': 'http://www.codeforces.com/contest/456', 'rank': 2152, 'ratingChange': -97}, '2015-12-01 21:05:00': {'rating': '1351', 'name': u'Codeforces Round #334 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/604', 'rank': 1079, 'ratingChange': 67}, '2016-08-29 17:35:00': {'rating': '1309', 'name': u'Codeforces Round #369 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/711', 'rank': 2332, 'ratingChange': 11}, '2015-12-09 21:35:00': {'rating': '1309', 'name': u'Codeforces Round #335 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/606', 'rank': 2249, 'ratingChange': -42}, '2016-08-11 22:05:00': {'rating': '1216', 'name': u'Codeforces Round #367 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/706', 'rank': 2989, 'ratingChange': -12}, '2015-08-29 22:00:00': {'rating': '1288', 'name': u'Codeforces Round #318 [RussianCodeCup Thanks-Round] (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/574', 'rank': 2009, 'ratingChange': -70}, '2015-10-03 22:15:00': {'rating': '1285', 'name': u'Codeforces Round #323 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/583', 'rank': 2912, 'ratingChange': -10}, '2015-10-06 22:00:00': {'rating': '1298', 'name': u'Codeforces Round #324 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/584', 'rank': 2062, 'ratingChange': 13}, '2014-10-06 21:00:00': {'rating': '1227', 'name': u'Codeforces Round #271 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/474', 'rank': 1654, 'ratingChange': -52}, '2015-08-22 22:00:00': {'rating': '1358', 'name': u'Codeforces Round #317 [AimFund Thanks-Round] (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/572', 'rank': 1114, 'ratingChange': 131}, '2016-09-23 18:35:00': {'rating': '1377', 'name': u'Codeforces Round #373 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/719', 'rank': 1593, 'ratingChange': 68}}, 'title': 'Codeforces'}], - "HackerRank": [{'data': {'2014-07-21 21:30:00': {'url': u'https://www.hackerrank.com/w7', 'rating': '1554.46', 'name': u'Weekly Challenges - Week 7', 'rank': 499}, '2015-10-30 21:30:00': {'url': u'https://www.hackerrank.com/codestorm', 'rating': '1276.05', 'name': u'CodeStorm 2015', 'rank': 3743}, '2015-08-02 21:30:00': {'url': u'https://www.hackerrank.com/countercode', 'rating': '1287.0', 'name': u'CounterCode 2015', 'rank': 3605}, '2014-08-11 21:30:00': {'url': u'https://www.hackerrank.com/w8', 'rating': '1276.88', 'name': u'Weekly Challenges - Week 8', 'rank': 1204}}, 'title': u'HackerRank - Algorithms'}], + "CodeForces": [{'data': {'2015-09-28 14:30:00': {'rating': '1295', 'name': 'Codeforces Round #322 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/581', 'rank': 1836, 'ratingChange': -84}, '2014-09-28 21:05:00': {'rating': '1279', 'name': 'Codeforces Round #270', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/472', 'rank': 3520, 'ratingChange': -124}, '2015-09-10 22:00:00': {'rating': '1422', 'name': 'Codeforces Round #319 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/577', 'rank': 940, 'ratingChange': 134}, '2016-01-14 22:05:00': {'rating': '1228', 'name': 'Codeforces Round #339 (Div. 2)', 'solvedCount': 0, 'url': 'http://www.codeforces.com/contest/614', 'rank': 1929, 'ratingChange': -81}, '2016-08-20 18:35:00': {'rating': '1298', 'name': 'Codeforces Round #368 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/707', 'rank': 1919, 'ratingChange': 82}, '2015-10-31 22:00:00': {'rating': '1284', 'name': 'Codeforces Round #328 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/592', 'rank': 2075, 'ratingChange': 11}, '2015-10-25 14:30:00': {'rating': '1273', 'name': 'Codeforces Round #327 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/591', 'rank': 2259, 'ratingChange': -25}, '2015-09-22 22:00:00': {'rating': '1379', 'name': 'Codeforces Round #321 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/580', 'rank': 2018, 'ratingChange': -43}, '2014-08-08 21:00:00': {'rating': '1403', 'name': 'Codeforces Round #260 (Div. 2)', 'solvedCount': 0, 'url': 'http://www.codeforces.com/contest/456', 'rank': 2152, 'ratingChange': -97}, '2015-12-01 21:05:00': {'rating': '1351', 'name': 'Codeforces Round #334 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/604', 'rank': 1079, 'ratingChange': 67}, '2016-08-29 17:35:00': {'rating': '1309', 'name': 'Codeforces Round #369 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/711', 'rank': 2332, 'ratingChange': 11}, '2015-12-09 21:35:00': {'rating': '1309', 'name': 'Codeforces Round #335 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/606', 'rank': 2249, 'ratingChange': -42}, '2016-08-11 22:05:00': {'rating': '1216', 'name': 'Codeforces Round #367 (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/706', 'rank': 2989, 'ratingChange': -12}, '2015-08-29 22:00:00': {'rating': '1288', 'name': 'Codeforces Round #318 [RussianCodeCup Thanks-Round] (Div. 2)', 'solvedCount': 1, 'url': 'http://www.codeforces.com/contest/574', 'rank': 2009, 'ratingChange': -70}, '2015-10-03 22:15:00': {'rating': '1285', 'name': 'Codeforces Round #323 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/583', 'rank': 2912, 'ratingChange': -10}, '2015-10-06 22:00:00': {'rating': '1298', 'name': 'Codeforces Round #324 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/584', 'rank': 2062, 'ratingChange': 13}, '2014-10-06 21:00:00': {'rating': '1227', 'name': 'Codeforces Round #271 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/474', 'rank': 1654, 'ratingChange': -52}, '2015-08-22 22:00:00': {'rating': '1358', 'name': 'Codeforces Round #317 [AimFund Thanks-Round] (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/572', 'rank': 1114, 'ratingChange': 131}, '2016-09-23 18:35:00': {'rating': '1377', 'name': 'Codeforces Round #373 (Div. 2)', 'solvedCount': 2, 'url': 'http://www.codeforces.com/contest/719', 'rank': 1593, 'ratingChange': 68}}, 'title': 'Codeforces'}], + "HackerRank": [{'data': {'2014-07-21 21:30:00': {'url': 'https://www.hackerrank.com/w7', 'rating': '1554.46', 'name': 'Weekly Challenges - Week 7', 'rank': 499}, '2015-10-30 21:30:00': {'url': 'https://www.hackerrank.com/codestorm', 'rating': '1276.05', 'name': 'CodeStorm 2015', 'rank': 3743}, '2015-08-02 21:30:00': {'url': 'https://www.hackerrank.com/countercode', 'rating': '1287.0', 'name': 'CounterCode 2015', 'rank': 3605}, '2014-08-11 21:30:00': {'url': 'https://www.hackerrank.com/w8', 'rating': '1276.88', 'name': 'Weekly Challenges - Week 8', 'rank': 1204}}, 'title': 'HackerRank - Algorithms'}], "HackerEarth": [{'data': {'2016-05-21 10:30:00': {'url': 'https://www.hackerearth.com/challenges/competitive/may-circuits/', 'rating': 1493, 'name': 'May Circuits', 'rank': 714}, '2017-10-21 10:30:00': {'url': 'https://www.hackerearth.com/challenges/competitive/october-circuits-17/', 'rating': 1491, 'name': "October Circuits '17", 'rank': 1225}, '2017-09-22 10:30:00': {'url': 'https://www.hackerearth.com/challenges/competitive/september-circuits-17/', 'rating': 1569, 'name': "September Circuits '17", 'rank': 291}, '2020-05-16 10:30:00': {'url': 'https://www.hackerearth.com/challenges/competitive/may-circuits-20/', 'rating': 1415, 'name': "May Circuits '20", 'rank': 647}, '2018-03-17 10:30:00': {'url': 'https://www.hackerearth.com/challenges/competitive/march-circuits-18/', 'rating': 1461, 'name': "March Circuits '18", 'rank': 523}, '2019-01-18 09:30:00': {'url': 'https://www.hackerearth.com/challenges/competitive/january-circuits-19/', 'rating': 1337, 'name': "January Circuits '19", 'rank': 3420}, '2017-07-28 10:30:00': {'url': 'https://www.hackerearth.com/challenges/competitive/july-circuits-17/', 'rating': 1462, 'name': "July Circuits '17", 'rank': 1326}}, 'title': 'HackerEarth'}], - "AtCoder": [{'data': {'2020-01-10 19:10:00': {'url': 'https://atcoder.jp/contests/abc150', 'rating': '-', 'ratingChange': '-', 'name': u'AtCoder Beginner Contest 150', 'rank': u'2640'}, '2020-03-14 19:10:00': {'url': 'https://atcoder.jp/contests/panasonic2020', 'rating': '33', 'ratingChange': '+31', 'name': u'Panasonic Programming Contest 2020', 'rank': u'3897'}, '2020-05-02 19:20:00': {'url': 'https://atcoder.jp/contests/abc165', 'rating': '192', 'ratingChange': '+51', 'name': u'AtCoder Beginner Contest 165', 'rank': u'6343'}, '2020-03-01 19:10:00': {'url': 'https://atcoder.jp/contests/abc157', 'rating': '2', 'ratingChange': '-', 'name': u'AtCoder Beginner Contest 157', 'rank': u'6327'}, '2020-04-26 19:10:00': {'url': 'https://atcoder.jp/contests/abc164', 'rating': '141', 'ratingChange': '+108', 'name': u'AtCoder Beginner Contest 164', 'rank': u'3184'}, '2020-04-19 19:10:00': {'url': 'https://atcoder.jp/contests/abc163', 'rating': '-', 'ratingChange': '-', 'name': u'AtCoder Beginner Contest 163', 'rank': u'4042'}}, 'title': 'AtCoder'}] + "AtCoder": [{'data': {'2020-01-10 19:10:00': {'url': 'https://atcoder.jp/contests/abc150', 'rating': '-', 'ratingChange': '-', 'name': 'AtCoder Beginner Contest 150', 'rank': '2640'}, '2020-03-14 19:10:00': {'url': 'https://atcoder.jp/contests/panasonic2020', 'rating': '33', 'ratingChange': '+31', 'name': 'Panasonic Programming Contest 2020', 'rank': '3897'}, '2020-05-02 19:20:00': {'url': 'https://atcoder.jp/contests/abc165', 'rating': '192', 'ratingChange': '+51', 'name': 'AtCoder Beginner Contest 165', 'rank': '6343'}, '2020-03-01 19:10:00': {'url': 'https://atcoder.jp/contests/abc157', 'rating': '2', 'ratingChange': '-', 'name': 'AtCoder Beginner Contest 157', 'rank': '6327'}, '2020-04-26 19:10:00': {'url': 'https://atcoder.jp/contests/abc164', 'rating': '141', 'ratingChange': '+108', 'name': 'AtCoder Beginner Contest 164', 'rank': '3184'}, '2020-04-19 19:10:00': {'url': 'https://atcoder.jp/contests/abc163', 'rating': '-', 'ratingChange': '-', 'name': 'AtCoder Beginner Contest 163', 'rank': '4042'}}, 'title': 'AtCoder'}] } result = {} @@ -295,14 +293,14 @@ def test_submissions(self): } expected_result = { - "CodeChef": [(u'2013-12-02 18:52:13', u'https://www.codechef.com/PRACTICE/problems/TEST', u'TEST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3017060'), (u'2013-12-02 19:02:07', u'https://www.codechef.com/PRACTICE/problems/TEST', u'TEST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3017069'), (u'2013-12-02 19:13:59', u'https://www.codechef.com/PRACTICE/problems/HS08TEST', u'HS08TEST', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3017092'), (u'2013-12-02 19:16:51', u'https://www.codechef.com/PRACTICE/problems/HS08TEST', u'HS08TEST', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3017097'), (u'2013-12-02 19:20:42', u'https://www.codechef.com/PRACTICE/problems/HS08TEST', u'HS08TEST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3017102'), (u'2013-12-02 19:31:26', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'INTEST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3017121'), (u'2013-12-03 01:15:08', u'https://www.codechef.com/PRACTICE/problems/FCTRL', u'FCTRL', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3017614'), (u'2013-12-03 01:15:44', u'https://www.codechef.com/PRACTICE/problems/FCTRL', u'FCTRL', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3017615'), (u'2013-12-03 01:18:21', u'https://www.codechef.com/PRACTICE/problems/FCTRL', u'FCTRL', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3017619'), (u'2013-12-03 01:23:05', u'https://www.codechef.com/PRACTICE/problems/FCTRL', u'FCTRL', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3017629'), (u'2013-12-03 01:33:10', u'https://www.codechef.com/PRACTICE/problems/FCTRL2', u'FCTRL2', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3017639'), (u'2013-12-06 13:51:02', u'https://www.codechef.com/PRACTICE/problems/PRPALIN', u'PRPALIN', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3023114'), (u'2013-12-06 13:59:27', u'https://www.codechef.com/PRACTICE/problems/PRPALIN', u'PRPALIN', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3023128'), (u'2013-12-06 14:26:23', u'https://www.codechef.com/PRACTICE/problems/NUMPATH', u'NUMPATH', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3023162'), (u'2013-12-06 14:34:44', u'https://www.codechef.com/PRACTICE/problems/PRPALIN', u'PRPALIN', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3023172'), (u'2013-12-06 14:40:45', u'https://www.codechef.com/PRACTICE/problems/PRPALIN', u'PRPALIN', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3023183'), (u'2013-12-06 14:58:49', u'https://www.codechef.com/PRACTICE/problems/PRPALIN', u'PRPALIN', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3023209'), (u'2013-12-06 15:22:57', u'https://www.codechef.com/PRACTICE/problems/HOLES', u'HOLES', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3023522'), (u'2013-12-12 15:04:32', u'https://www.codechef.com/PRACTICE/problems/NAME2', u'NAME2', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3076899'), (u'2013-12-12 15:22:56', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3077003'), (u'2013-12-12 15:24:57', u'https://www.codechef.com/PRACTICE/problems/MAXCOUNT', u'MAXCOUNT', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3077013'), (u'2013-12-12 17:41:44', u'https://www.codechef.com/PRACTICE/problems/DECSTR', u'DECSTR', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3077862'), (u'2013-12-12 18:04:39', u'https://www.codechef.com/PRACTICE/problems/DECSTR', u'DECSTR', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3078001'), (u'2013-12-12 18:53:41', u'https://www.codechef.com/PRACTICE/problems/DECSTR', u'DECSTR', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3078284'), (u'2013-12-12 19:26:47', u'https://www.codechef.com/PRACTICE/problems/DECSTR', u'DECSTR', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3078484'), (u'2013-12-12 19:39:23', u'https://www.codechef.com/PRACTICE/problems/NAME2', u'NAME2', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3078558'), (u'2013-12-13 15:04:16', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3083547'), (u'2013-12-13 15:09:42', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3083574'), (u'2013-12-13 15:13:40', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3083602'), (u'2013-12-13 19:30:02', u'https://www.codechef.com/PRACTICE/problems/NAME2', u'NAME2', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3085115'), (u'2013-12-14 13:37:45', u'https://www.codechef.com/PRACTICE/problems/SAD', u'SAD', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3089188'), (u'2013-12-14 13:40:39', u'https://www.codechef.com/PRACTICE/problems/SAD', u'SAD', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3089199'), (u'2013-12-14 13:45:29', u'https://www.codechef.com/PRACTICE/problems/SAD', u'SAD', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3089226'), (u'2013-12-14 19:29:31', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3091091'), (u'2013-12-18 00:17:52', u'https://www.codechef.com/PRACTICE/problems/ONP', u'ONP', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3108217'), (u'2013-12-18 00:29:10', u'https://www.codechef.com/PRACTICE/problems/ONP', u'ONP', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3108251'), (u'2013-12-18 00:58:37', u'https://www.codechef.com/PRACTICE/problems/ONP', u'ONP', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3108323'), (u'2013-12-18 01:04:19', u'https://www.codechef.com/PRACTICE/problems/ONP', u'ONP', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3108336'), (u'2013-12-18 01:46:49', u'https://www.codechef.com/PRACTICE/problems/SUMTRIAN', u'SUMTRIAN', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3108432'), (u'2013-12-18 02:02:45', u'https://www.codechef.com/PRACTICE/problems/COINS', u'COINS', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3108454'), (u'2013-12-18 02:09:53', u'https://www.codechef.com/PRACTICE/problems/COINS', u'COINS', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3108466'), (u'2013-12-18 02:19:38', u'https://www.codechef.com/PRACTICE/problems/COINS', u'COINS', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3108479'), (u'2013-12-18 02:36:47', u'https://www.codechef.com/PRACTICE/problems/COINS', u'COINS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3108489'), (u'2013-12-18 02:38:40', u'https://www.codechef.com/PRACTICE/problems/COINS', u'COINS', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3108491'), (u'2013-12-18 02:40:21', u'https://www.codechef.com/PRACTICE/problems/COINS', u'COINS', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3108493'), (u'2013-12-19 23:56:23', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/3113518'), (u'2013-12-19 23:58:35', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/3113525'), (u'2013-12-20 00:00:56', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3113535'), (u'2013-12-20 02:45:48', u'https://www.codechef.com/PRACTICE/problems/FCTRL2', u'FCTRL2', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/3113821'), (u'2013-12-20 02:48:52', u'https://www.codechef.com/PRACTICE/problems/FCTRL2', u'FCTRL2', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3113825'), (u'2013-12-20 03:10:47', u'https://www.codechef.com/PRACTICE/problems/MARBLES', u'MARBLES', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3113849'), (u'2013-12-20 03:27:48', u'https://www.codechef.com/PRACTICE/problems/MARBLES', u'MARBLES', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3113865'), (u'2013-12-20 03:43:53', u'https://www.codechef.com/PRACTICE/problems/MARBLES', u'MARBLES', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3113877'), (u'2013-12-20 15:47:52', u'https://www.codechef.com/PRACTICE/problems/SAD', u'SAD', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/3114663'), (u'2013-12-20 15:49:13', u'https://www.codechef.com/PRACTICE/problems/SAD', u'SAD', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/3114664'), (u'2013-12-20 15:52:15', u'https://www.codechef.com/PRACTICE/problems/SAD', u'SAD', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3114671'), (u'2013-12-20 15:58:50', u'https://www.codechef.com/PRACTICE/problems/SAD', u'SAD', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3114683'), (u'2014-01-01 22:25:19', u'https://www.codechef.com/PRACTICE/problems/MSTICK', u'MSTICK', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3148896'), (u'2014-01-02 22:42:07', u'https://www.codechef.com/PRACTICE/problems/RESIST', u'RESIST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3150795'), (u'2014-01-02 22:54:14', u'https://www.codechef.com/PRACTICE/problems/RESIST', u'RESIST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3150836'), (u'2014-01-02 22:56:42', u'https://www.codechef.com/PRACTICE/problems/RESIST', u'RESIST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3150842'), (u'2014-01-02 22:58:50', u'https://www.codechef.com/PRACTICE/problems/RESIST', u'RESIST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3150846'), (u'2014-01-02 23:18:24', u'https://www.codechef.com/PRACTICE/problems/MSTICK', u'MSTICK', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3150913'), (u'2014-01-05 16:58:47', u'https://www.codechef.com/PRACTICE/problems/TWTCLOSE', u'TWTCLOSE', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3188137'), (u'2014-01-06 21:24:27', u'https://www.codechef.com/PRACTICE/problems/SAD', u'SAD', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3200011'), (u'2014-01-06 21:29:23', u'https://www.codechef.com/PRACTICE/problems/SAD', u'SAD', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3200056'), (u'2014-01-06 21:58:37', u'https://www.codechef.com/PRACTICE/problems/FLIPCOIN', u'FLIPCOIN', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3200313'), (u'2014-01-06 22:50:32', u'https://www.codechef.com/PRACTICE/problems/FLIPCOIN', u'FLIPCOIN', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3200883'), (u'2014-01-07 15:19:35', u'https://www.codechef.com/PRACTICE/problems/LEVY', u'LEVY', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3205638'), (u'2014-01-07 15:23:13', u'https://www.codechef.com/PRACTICE/problems/LEVY', u'LEVY', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/3205664'), (u'2014-01-07 15:38:53', u'https://www.codechef.com/PRACTICE/problems/LEVY', u'LEVY', 'CE', u'0', u'C++ 4.3.2', 'https://www.codechef.com/viewsolution/3205784'), (u'2014-01-08 17:18:58', u'https://www.codechef.com/JAN14/problems/ERROR', u'ERROR', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3215076'), (u'2014-01-08 17:32:16', u'https://www.codechef.com/JAN14/problems/ERROR', u'ERROR', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3215197'), (u'2014-01-08 17:34:26', u'https://www.codechef.com/JAN14/problems/PLZLYKME', u'PLZLYKME', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3215217'), (u'2014-01-08 17:50:31', u'https://www.codechef.com/JAN14/problems/PLZLYKME', u'PLZLYKME', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3215325'), (u'2014-01-08 23:01:50', u'https://www.codechef.com/JAN14/problems/FGFS', u'FGFS', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3217930'), (u'2014-01-09 18:42:17', u'https://www.codechef.com/PRACTICE/problems/TSORT', u'TSORT', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3223261'), (u'2014-01-09 18:49:03', u'https://www.codechef.com/PRACTICE/problems/TSORT', u'TSORT', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3223313'), (u'2014-01-09 18:57:00', u'https://www.codechef.com/PRACTICE/problems/TSORT', u'TSORT', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3223384'), (u'2014-01-09 19:26:01', u'https://www.codechef.com/PRACTICE/problems/PERMUT2', u'PERMUT2', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3223635'), (u'2014-01-09 19:28:32', u'https://www.codechef.com/PRACTICE/problems/PERMUT2', u'PERMUT2', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3223652'), (u'2014-01-09 19:47:04', u'https://www.codechef.com/PRACTICE/problems/TLG', u'TLG', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3223799'), (u'2014-01-09 20:32:49', u'https://www.codechef.com/PRACTICE/problems/TLG', u'TLG', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3224190'), (u'2014-01-09 20:35:41', u'https://www.codechef.com/PRACTICE/problems/TLG', u'TLG', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3224222'), (u'2014-01-09 23:53:53', u'https://www.codechef.com/PRACTICE/problems/TLG', u'TLG', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3225832'), (u'2014-01-10 00:14:05', u'https://www.codechef.com/PRACTICE/problems/NUMGAME', u'NUMGAME', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3226019'), (u'2014-01-10 23:16:53', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'PRIMES2', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3231942'), (u'2014-01-10 23:25:05', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'PRIMES2', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3232000'), (u'2014-01-10 23:32:09', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'PRIMES2', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3232061'), (u'2014-01-10 23:37:08', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'PRIMES2', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3232115'), (u'2014-01-10 23:46:15', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'PRIMES2', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3232189'), (u'2014-01-12 16:08:22', u'https://www.codechef.com/PRACTICE/problems/D1', u'D1', u'TLE', u'0', u'PYTH', 'https://www.codechef.com/viewsolution/3242893'), (u'2014-01-12 16:41:33', u'https://www.codechef.com/PRACTICE/problems/ASTRGAME', u'ASTRGAME', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3243146'), (u'2014-01-12 16:43:25', u'https://www.codechef.com/PRACTICE/problems/ASTRGAME', u'ASTRGAME', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3243158'), (u'2014-01-12 19:38:52', u'https://www.codechef.com/PRACTICE/problems/KPRIME', u'KPRIME', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3244328'), (u'2014-01-12 20:04:49', u'https://www.codechef.com/PRACTICE/problems/KPRIME', u'KPRIME', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3244480'), (u'2014-01-13 10:34:13', u'https://www.codechef.com/PRACTICE/problems/BUY1GET1', u'BUY1GET1', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3248580'), (u'2014-01-13 10:41:26', u'https://www.codechef.com/PRACTICE/problems/BUY1GET1', u'BUY1GET1', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3248611'), (u'2014-01-13 10:52:51', u'https://www.codechef.com/PRACTICE/problems/BUY1GET1', u'BUY1GET1', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3248674'), (u'2014-01-13 11:53:09', u'https://www.codechef.com/PRACTICE/problems/HORSES', u'HORSES', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3249017'), (u'2014-01-13 12:01:58', u'https://www.codechef.com/PRACTICE/problems/HORSES', u'HORSES', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3249080'), (u'2014-01-13 12:13:20', u'https://www.codechef.com/PRACTICE/problems/NUMGAME', u'NUMGAME', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3249157'), (u'2014-01-13 12:30:50', u'https://www.codechef.com/PRACTICE/problems/BUY1GET1', u'BUY1GET1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3249302'), (u'2014-01-13 13:14:27', u'https://www.codechef.com/PRACTICE/problems/TWSTR', u'TWSTR', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3249663'), (u'2014-01-13 20:23:37', u'https://www.codechef.com/PRACTICE/problems/HELLO', u'HELLO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3251908'), (u'2014-01-13 21:07:57', u'https://www.codechef.com/PRACTICE/problems/DIGROT', u'DIGROT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3252038'), (u'2014-01-13 21:46:16', u'https://www.codechef.com/PRACTICE/problems/HELLO', u'HELLO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3252146'), (u'2014-01-13 22:06:21', u'https://www.codechef.com/PRACTICE/problems/HELLO', u'HELLO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3252214'), (u'2014-01-13 22:13:24', u'https://www.codechef.com/PRACTICE/problems/HELLO', u'HELLO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3252242'), (u'2014-01-13 22:15:40', u'https://www.codechef.com/PRACTICE/problems/HELLO', u'HELLO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3252253'), (u'2014-01-13 22:21:15', u'https://www.codechef.com/PRACTICE/problems/HELLO', u'HELLO', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3252279'), (u'2014-01-14 00:21:02', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3252851'), (u'2014-01-14 01:05:42', u'https://www.codechef.com/PRACTICE/problems/LAPIN', u'LAPIN', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3253032'), (u'2014-01-14 01:08:04', u'https://www.codechef.com/PRACTICE/problems/LAPIN', u'LAPIN', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3253049'), (u'2014-01-14 01:11:18', u'https://www.codechef.com/PRACTICE/problems/LAPIN', u'LAPIN', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3253069'), (u'2014-01-14 14:06:41', u'https://www.codechef.com/PRACTICE/problems/PPXOR', u'PPXOR', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3254264'), (u'2014-01-14 19:12:48', u'https://www.codechef.com/PRACTICE/problems/CHEFTEAM', u'CHEFTEAM', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3255054'), (u'2014-01-14 19:36:22', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'PRIMES2', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3255134'), (u'2014-01-14 21:11:50', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'PRIMES2', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3255392'), (u'2014-01-14 21:41:46', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'PRIMES2', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3255474'), (u'2014-01-16 18:39:17', u'https://www.codechef.com/PRACTICE/problems/TACHSTCK', u'TACHSTCK', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3260781'), (u'2014-01-16 19:08:18', u'https://www.codechef.com/PRACTICE/problems/TACHSTCK', u'TACHSTCK', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3260885'), (u'2014-01-16 19:36:52', u'https://www.codechef.com/PRACTICE/problems/PRIMES2', u'PRIMES2', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3261016'), (u'2014-01-18 18:40:00', u'https://www.codechef.com/PRACTICE/problems/RRMATRIX', u'RRMATRIX', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3266986'), (u'2014-01-18 19:16:39', u'https://www.codechef.com/PRACTICE/problems/GRANAMA', u'GRANAMA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3267092'), (u'2014-01-18 19:25:40', u'https://www.codechef.com/PRACTICE/problems/GRANAMA', u'GRANAMA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3267123'), (u'2014-01-18 20:29:27', u'https://www.codechef.com/PRACTICE/problems/GRANAMA', u'GRANAMA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3267298'), (u'2014-01-18 20:35:24', u'https://www.codechef.com/PRACTICE/problems/GRANAMA', u'GRANAMA', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3267306'), (u'2014-01-23 10:03:37', u'https://www.codechef.com/PRACTICE/problems/NUKES', u'NUKES', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3283319'), (u'2014-01-23 10:04:57', u'https://www.codechef.com/PRACTICE/problems/JOHNY', u'JOHNY', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3283321'), (u'2014-01-23 10:06:21', u'https://www.codechef.com/PRACTICE/problems/RIGHTRI', u'RIGHTRI', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3283322'), (u'2014-01-23 10:07:29', u'https://www.codechef.com/PRACTICE/problems/RIGHTRI', u'RIGHTRI', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3283325'), (u'2014-01-23 10:19:28', u'https://www.codechef.com/PRACTICE/problems/RIGHTRI', u'RIGHTRI', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3283340'), (u'2014-01-23 10:22:56', u'https://www.codechef.com/PRACTICE/problems/NUKES', u'NUKES', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3283347'), (u'2014-01-23 10:27:39', u'https://www.codechef.com/PRACTICE/problems/NUKES', u'NUKES', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3283353'), (u'2014-01-23 10:30:21', u'https://www.codechef.com/PRACTICE/problems/NUKES', u'NUKES', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3283357'), (u'2014-01-23 10:42:45', u'https://www.codechef.com/PRACTICE/problems/LAPIN', u'LAPIN', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3283378'), (u'2014-01-23 10:50:27', u'https://www.codechef.com/PRACTICE/problems/LAPIN', u'LAPIN', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3283389'), (u'2014-01-23 10:58:07', u'https://www.codechef.com/PRACTICE/problems/NUKES', u'NUKES', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3283393'), (u'2014-02-07 13:56:26', u'https://www.codechef.com/PRACTICE/problems/NUMGAME', u'NUMGAME', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3339806'), (u'2014-02-07 14:04:43', u'https://www.codechef.com/PRACTICE/problems/NUMGAME', u'NUMGAME', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3339834'), (u'2014-02-07 14:07:56', u'https://www.codechef.com/PRACTICE/problems/NUMGAME', u'NUMGAME', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3339845'), (u'2014-02-07 14:12:05', u'https://www.codechef.com/PRACTICE/problems/NUMGAME', u'NUMGAME', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3339853'), (u'2014-02-07 14:43:35', u'https://www.codechef.com/PRACTICE/problems/CIELRCPT', u'CIELRCPT', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3339922'), (u'2014-02-08 18:56:14', u'https://www.codechef.com/FEB14/problems/LCPESY', u'LCPESY', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3359518'), (u'2014-02-08 19:12:55', u'https://www.codechef.com/FEB14/problems/LCPESY', u'LCPESY', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3359744'), (u'2014-02-08 19:39:00', u'https://www.codechef.com/FEB14/problems/SUBMIN', u'SUBMIN', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3360100'), (u'2014-02-11 15:14:10', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'TWODOGS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3387212'), (u'2014-02-11 15:20:54', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'TWODOGS', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3387257'), (u'2014-02-11 15:30:00', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'TWODOGS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3387312'), (u'2014-02-11 16:35:28', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'TWODOGS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3387693'), (u'2014-02-11 16:51:49', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'TWODOGS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3387801'), (u'2014-02-11 16:55:47', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'TWODOGS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3387826'), (u'2014-02-13 15:27:31', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'TWODOGS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3401986'), (u'2014-02-13 16:24:34', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'TWODOGS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3402304'), (u'2014-02-13 16:52:47', u'https://www.codechef.com/FEB14/problems/TWODOGS', u'TWODOGS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3402476'), (u'2014-02-22 21:12:12', u'https://www.codechef.com/CDMT2014/problems/MIRRORS', u'MIRRORS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3455971'), (u'2014-02-22 21:14:12', u'https://www.codechef.com/CDMT2014/problems/MIRRORS', u'MIRRORS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3456012'), (u'2014-02-22 21:21:11', u'https://www.codechef.com/CDMT2014/problems/MIRRORS', u'MIRRORS', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3456160'), (u'2014-02-23 00:04:09', u'https://www.codechef.com/CDMT2014/problems/TILE', u'TILE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3460835'), (u'2014-02-23 00:07:15', u'https://www.codechef.com/CDMT2014/problems/TILE0', u'TILE0', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3460874'), (u'2014-02-23 00:23:39', u'https://www.codechef.com/CDNCTR14/problems/QUEST', u'QUEST', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/3461126'), (u'2014-02-23 00:35:48', u'https://www.codechef.com/CDNCTR14/problems/QUEST', u'QUEST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3461310'), (u'2014-02-23 01:13:51', u'https://www.codechef.com/CDNCTR14/problems/ARRAY', u'ARRAY', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3461817'), (u'2014-02-23 01:53:29', u'https://www.codechef.com/CDNCTR14/problems/GOT', u'GOT', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3462204'), (u'2014-02-23 02:37:48', u'https://www.codechef.com/CDNCTR14/problems/JADEJA', u'JADEJA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3462594'), (u'2014-02-23 02:42:04', u'https://www.codechef.com/CDNCTR14/problems/JADEJA', u'JADEJA', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/3462619'), (u'2014-02-26 23:33:32', u'https://www.codechef.com/PRACTICE/problems/WCOUNT', u'WCOUNT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3477325'), (u'2014-03-04 16:51:10', u'https://www.codechef.com/PRACTICE/problems/TPRODUCT', u'TPRODUCT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3497768'), (u'2014-03-04 17:08:05', u'https://www.codechef.com/PRACTICE/problems/TPRODUCT', u'TPRODUCT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3497791'), (u'2014-03-04 17:11:05', u'https://www.codechef.com/PRACTICE/problems/TPRODUCT', u'TPRODUCT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/3497796'), (u'2014-05-25 02:14:27', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'VOTERS', 'RE', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/3938402'), (u'2014-05-25 02:16:35', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'VOTERS', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3938403'), (u'2014-05-25 02:19:23', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'VOTERS', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3938407'), (u'2014-05-25 02:28:54', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'VOTERS', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/3938415'), (u'2014-06-08 15:50:16', u'https://www.codechef.com/JUNE14/problems/CHEFZOT', u'CHEFZOT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4019362'), (u'2014-06-08 15:52:51', u'https://www.codechef.com/JUNE14/problems/CHEFZOT', u'CHEFZOT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4019398'), (u'2014-06-08 15:57:49', u'https://www.codechef.com/JUNE14/problems/CHEFZOT', u'CHEFZOT', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4019468'), (u'2014-06-08 16:11:10', u'https://www.codechef.com/JUNE14/problems/GUESS', u'GUESS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4019668'), (u'2014-06-08 16:13:49', u'https://www.codechef.com/JUNE14/problems/GUESS', u'GUESS', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4019713'), (u'2014-06-08 17:28:24', u'https://www.codechef.com/JUNE14/problems/FORGETPW', u'FORGETPW', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4020749'), (u'2014-06-09 20:48:17', u'https://www.codechef.com/JUNE14/problems/FORGETPW', u'FORGETPW', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4036865'), (u'2014-06-09 20:51:39', u'https://www.codechef.com/JUNE14/problems/FORGETPW', u'FORGETPW', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4036902'), (u'2014-06-09 20:56:28', u'https://www.codechef.com/JUNE14/problems/FORGETPW', u'FORGETPW', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4036949'), (u'2014-06-11 07:33:23', u'https://www.codechef.com/JUNE14/problems/FORGETPW', u'FORGETPW', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4053523'), (u'2014-06-11 07:54:41', u'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', u'ALEXNUMB', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4053566'), (u'2014-06-11 07:57:12', u'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', u'ALEXNUMB', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4053571'), (u'2014-06-11 07:59:02', u'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', u'ALEXNUMB', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4053576'), (u'2014-06-11 08:04:58', u'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', u'ALEXNUMB', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4053599'), (u'2014-06-11 08:08:47', u'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', u'ALEXNUMB', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4053611'), (u'2014-06-11 08:20:27', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'VOTERS', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/4053646'), (u'2014-06-11 08:21:52', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'VOTERS', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/4053653'), (u'2014-06-11 08:22:42', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'VOTERS', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/4053659'), (u'2014-06-11 08:35:28', u'https://www.codechef.com/PRACTICE/problems/MAXDIFF', u'MAXDIFF', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4053715'), (u'2014-06-11 08:41:38', u'https://www.codechef.com/PRACTICE/problems/MAXDIFF', u'MAXDIFF', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4053747'), (u'2014-06-11 09:20:41', u'https://www.codechef.com/PRACTICE/problems/STONES', u'STONES', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4053906'), (u'2014-06-11 09:23:05', u'https://www.codechef.com/PRACTICE/problems/STONES', u'STONES', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4053914'), (u'2014-06-11 09:28:01', u'https://www.codechef.com/PRACTICE/problems/STONES', u'STONES', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4053935'), (u'2014-06-11 09:46:27', u'https://www.codechef.com/PRACTICE/problems/SPCANDY', u'SPCANDY', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/4054028'), (u'2014-06-11 09:49:08', u'https://www.codechef.com/PRACTICE/problems/SPCANDY', u'SPCANDY', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4054050'), (u'2014-06-11 09:50:14', u'https://www.codechef.com/PRACTICE/problems/SPCANDY', u'SPCANDY', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4054056'), (u'2014-06-11 10:13:17', u'https://www.codechef.com/PRACTICE/problems/DIVIDING', u'DIVIDING', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4054186'), (u'2014-06-11 10:17:20', u'https://www.codechef.com/PRACTICE/problems/DIVIDING', u'DIVIDING', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4054200'), (u'2014-06-11 10:21:20', u'https://www.codechef.com/PRACTICE/problems/DIVIDING', u'DIVIDING', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4054222'), (u'2014-06-11 10:46:57', u'https://www.codechef.com/PRACTICE/problems/APPROX', u'APPROX', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4054403'), (u'2014-06-11 11:11:10', u'https://www.codechef.com/PRACTICE/problems/COMPILER', u'COMPILER', 'CE', u'0', u'ADA', 'https://www.codechef.com/viewsolution/4054561'), (u'2014-06-11 11:11:59', u'https://www.codechef.com/PRACTICE/problems/COMPILER', u'COMPILER', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4054571'), (u'2014-06-11 16:59:23', u'https://www.codechef.com/PRACTICE/problems/AMSGAME1', u'AMSGAME1', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4057988'), (u'2014-06-11 17:05:35', u'https://www.codechef.com/PRACTICE/problems/AMSGAME1', u'AMSGAME1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4058067'), (u'2014-06-29 01:44:47', u'https://www.codechef.com/PRACTICE/problems/TREEROOT', u'TREEROOT', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4152751'), (u'2014-06-29 02:02:26', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'VOTERS', u'TLE', u'0', u'PYTH', 'https://www.codechef.com/viewsolution/4152798'), (u'2014-07-04 20:23:15', u'https://www.codechef.com/JULY14/problems/CSUB', u'CSUB', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4188769'), (u'2014-07-04 20:35:55', u'https://www.codechef.com/JULY14/problems/CSUB', u'CSUB', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4189092'), (u'2014-07-04 20:42:22', u'https://www.codechef.com/JULY14/problems/CSUB', u'CSUB', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4189260'), (u'2014-07-04 20:56:59', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4189643'), (u'2014-07-04 20:58:35', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4189684'), (u'2014-07-04 21:29:16', u'https://www.codechef.com/JULY14/problems/CSUB', u'CSUB', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4190477'), (u'2014-07-05 03:32:13', u'https://www.codechef.com/PRACTICE/problems/SPOTWO', u'SPOTWO', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4198760'), (u'2014-07-05 04:31:23', u'https://www.codechef.com/PRACTICE/problems/REMISS', u'REMISS', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4199244'), (u'2014-07-05 04:48:17', u'https://www.codechef.com/PRACTICE/problems/POTATOES', u'POTATOES', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4199368'), (u'2014-07-05 04:58:55', u'https://www.codechef.com/PRACTICE/problems/SDSQUARE', u'SDSQUARE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4199453'), (u'2014-07-05 05:05:28', u'https://www.codechef.com/PRACTICE/problems/SDSQUARE', u'SDSQUARE', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4199504'), (u'2014-07-05 05:14:54', u'https://www.codechef.com/PRACTICE/problems/SDSQUARE', u'SDSQUARE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4199569'), (u'2014-07-05 05:19:30', u'https://www.codechef.com/PRACTICE/problems/SDSQUARE', u'SDSQUARE', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4199592'), (u'2014-07-05 05:44:04', u'https://www.codechef.com/PRACTICE/problems/NOLOGIC', u'NOLOGIC', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4199717'), (u'2014-07-12 02:26:44', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4303371'), (u'2014-07-12 03:17:04', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4303603'), (u'2014-07-12 03:17:04', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4303608'), (u'2014-07-12 03:17:04', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4303611'), (u'2014-07-12 03:17:45', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4303624'), (u'2014-07-12 03:22:54', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4303651'), (u'2014-07-12 03:25:18', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4303661'), (u'2014-07-12 03:28:45', u'https://www.codechef.com/JULY14/problems/RETPO', u'RETPO', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4303679'), (u'2014-07-12 15:12:46', u'https://www.codechef.com/JULY14/problems/FROGV', u'FROGV', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/4307292'), (u'2014-07-13 01:07:50', u'https://www.codechef.com/JULY14/problems/FROGV', u'FROGV', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4312732'), (u'2014-07-17 02:00:29', u'https://www.codechef.com/PRACTICE/problems/BINTREE', u'BINTREE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4337506'), (u'2014-07-17 02:02:30', u'https://www.codechef.com/PRACTICE/problems/BINTREE', u'BINTREE', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4337509'), (u'2014-07-17 21:02:13', u'https://www.codechef.com/PRACTICE/problems/LUCKYSTR', u'LUCKYSTR', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/4339419'), (u'2014-07-17 21:03:35', u'https://www.codechef.com/PRACTICE/problems/LUCKYSTR', u'LUCKYSTR', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339420'), (u'2014-07-17 21:49:38', u'https://www.codechef.com/PRACTICE/problems/NOLOGIC', u'NOLOGIC', u'WA', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339533'), (u'2014-07-17 21:54:01', u'https://www.codechef.com/PRACTICE/problems/NOLOGIC', u'NOLOGIC', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339548'), (u'2014-07-17 21:55:43', u'https://www.codechef.com/PRACTICE/problems/NOLOGIC', u'NOLOGIC', u'TLE', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339554'), (u'2014-07-17 21:58:37', u'https://www.codechef.com/PRACTICE/problems/NOLOGIC', u'NOLOGIC', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/4339563'), (u'2014-07-17 21:59:31', u'https://www.codechef.com/PRACTICE/problems/NOLOGIC', u'NOLOGIC', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339567'), (u'2014-07-18 00:42:33', u'https://www.codechef.com/PRACTICE/problems/VOTERS', u'VOTERS', u'TLE', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340137'), (u'2014-07-18 01:15:31', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'WA', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340237'), (u'2014-07-18 01:17:19', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'WA', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340243'), (u'2014-07-18 01:21:53', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'WA', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340259'), (u'2014-07-18 01:24:29', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'WA', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340266'), (u'2014-07-18 01:38:21', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340317'), (u'2014-07-18 01:41:49', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340328'), (u'2014-07-18 02:11:22', u'https://www.codechef.com/PRACTICE/problems/COMPILER', u'COMPILER', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4340405'), (u'2014-07-18 02:13:00', u'https://www.codechef.com/PRACTICE/problems/COMPILER', u'COMPILER', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4340412'), (u'2014-07-18 02:15:57', u'https://www.codechef.com/PRACTICE/problems/COMPILER', u'COMPILER', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4340421'), (u'2014-07-18 03:08:59', u'https://www.codechef.com/PRACTICE/problems/WSTRING', u'WSTRING', u'WA', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340523'), (u'2014-07-18 03:18:59', u'https://www.codechef.com/PRACTICE/problems/WSTRING', u'WSTRING', u'WA', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340535'), (u'2014-07-18 04:45:18', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/4340638'), (u'2014-07-18 04:46:15', u'https://www.codechef.com/PRACTICE/problems/RRCODE', u'RRCODE', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340641'), (u'2014-07-18 04:50:29', u'https://www.codechef.com/PRACTICE/problems/BINTREE', u'BINTREE', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4340644'), (u'2014-07-18 04:55:56', u'https://www.codechef.com/PRACTICE/problems/RETPO', u'RETPO', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4340648'), (u'2014-07-18 04:58:27', u'https://www.codechef.com/PRACTICE/problems/BINTREE', u'BINTREE', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4340649'), (u'2014-07-18 05:04:58', u'https://www.codechef.com/PRACTICE/problems/RRMATRIX', u'RRMATRIX', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4340655'), (u'2014-07-18 05:05:52', u'https://www.codechef.com/PRACTICE/problems/RRMATRIX', u'RRMATRIX', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4340657'), (u'2014-07-21 18:05:27', u'https://www.codechef.com/PRACTICE/problems/RRCOPY', u'RRCOPY', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4362844'), (u'2014-07-21 18:24:11', u'https://www.codechef.com/PRACTICE/problems/RRCOPY', u'RRCOPY', u'WA', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4362928'), (u'2014-07-21 18:25:05', u'https://www.codechef.com/PRACTICE/problems/RRCOPY', u'RRCOPY', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4362933'), (u'2014-07-21 18:45:33', u'https://www.codechef.com/PRACTICE/problems/RRSUM', u'RRSUM', u'TLE', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4363040'), (u'2014-07-21 18:49:18', u'https://www.codechef.com/PRACTICE/problems/RRSUM', u'RRSUM', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4363058'), (u'2014-07-21 18:50:51', u'https://www.codechef.com/PRACTICE/problems/RRSUM', u'RRSUM', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4363066'), (u'2014-07-23 00:10:48', u'https://www.codechef.com/PRACTICE/problems/RECTQUER', u'RECTQUER', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4367826'), (u'2014-07-23 01:00:49', u'https://www.codechef.com/PRACTICE/problems/RECTQUER', u'RECTQUER', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4368006'), (u'2014-07-23 01:03:50', u'https://www.codechef.com/PRACTICE/problems/RECTQUER', u'RECTQUER', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4368015'), (u'2014-07-23 01:32:36', u'https://www.codechef.com/PRACTICE/problems/RECTQUER', u'RECTQUER', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4368102'), (u'2014-07-26 00:16:20', u'https://www.codechef.com/PRACTICE/problems/DOUBLE', u'DOUBLE', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4377912'), (u'2014-07-26 00:18:23', u'https://www.codechef.com/PRACTICE/problems/DOUBLE', u'DOUBLE', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4377917'), (u'2014-07-26 00:44:31', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4377999'), (u'2014-07-27 02:46:17', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'INTEST', u'TLE', u'0', u'PYTH', 'https://www.codechef.com/viewsolution/4382136'), (u'2014-07-27 02:52:14', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'INTEST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4382143'), (u'2014-07-27 02:55:35', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'INTEST', u'TLE', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382152'), (u'2014-07-27 02:56:53', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'INTEST', u'TLE', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382155'), (u'2014-07-27 02:58:43', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'INTEST', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382159'), (u'2014-07-27 02:59:30', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'INTEST', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382160'), (u'2014-07-27 03:01:22', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'INTEST', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382164'), (u'2014-07-27 03:13:49', u'https://www.codechef.com/PRACTICE/problems/INTEST', u'INTEST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4382175'), (u'2014-07-31 22:31:14', u'https://www.codechef.com/PRACTICE/problems/MARBLES', u'MARBLES', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4410407'), (u'2014-07-31 22:32:41', u'https://www.codechef.com/PRACTICE/problems/MARBLES', u'MARBLES', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4410421'), (u'2014-07-31 22:36:40', u'https://www.codechef.com/PRACTICE/problems/MARBLES', u'MARBLES', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4410455'), (u'2014-07-31 22:37:34', u'https://www.codechef.com/PRACTICE/problems/MARBLES', u'MARBLES', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4410461'), (u'2014-08-01 16:03:33', u'https://www.codechef.com/AUG14/problems/PRGIFT', u'PRGIFT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4418584'), (u'2014-08-01 16:10:06', u'https://www.codechef.com/AUG14/problems/PRGIFT', u'PRGIFT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4418854'), (u'2014-08-01 16:16:14', u'https://www.codechef.com/AUG14/problems/PRGIFT', u'PRGIFT', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4419068'), (u'2014-08-01 16:28:32', u'https://www.codechef.com/AUG14/problems/PRGIFT', u'PRGIFT', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4419429'), (u'2014-08-01 21:14:20', u'https://www.codechef.com/AUG14/problems/PRGIFT', u'PRGIFT', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4427549'), (u'2014-08-01 22:22:40', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/4428946'), (u'2014-08-01 22:24:47', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4428994'), (u'2014-08-01 22:25:57', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4429019'), (u'2014-08-01 22:26:55', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4429047'), (u'2014-08-02 21:41:49', u'https://www.codechef.com/AUG14/problems/CRAWA', u'CRAWA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4448115'), (u'2014-08-02 21:43:44', u'https://www.codechef.com/AUG14/problems/CRAWA', u'CRAWA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4448136'), (u'2014-08-02 21:51:09', u'https://www.codechef.com/AUG14/problems/CRAWA', u'CRAWA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4448237'), (u'2014-08-02 21:58:27', u'https://www.codechef.com/AUG14/problems/CRAWA', u'CRAWA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4448341'), (u'2014-08-02 23:04:07', u'https://www.codechef.com/AUG14/problems/CRAWA', u'CRAWA', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4449507'), (u'2014-08-06 14:47:12', u'https://www.codechef.com/AUG14/problems/CLETAB', u'CLETAB', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4494226'), (u'2014-08-07 22:22:52', u'https://www.codechef.com/AUG14/problems/CLETAB', u'CLETAB', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4508709'), (u'2014-08-07 22:57:57', u'https://www.codechef.com/AUG14/problems/CLETAB', u'CLETAB', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4509134'), (u'2014-08-07 23:22:17', u'https://www.codechef.com/AUG14/problems/CLETAB', u'CLETAB', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4509429'), (u'2014-08-07 23:31:23', u'https://www.codechef.com/AUG14/problems/CLETAB', u'CLETAB', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4509535'), (u'2014-08-10 02:57:09', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4530125'), (u'2014-08-10 03:03:19', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4530154'), (u'2014-08-10 03:14:11', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4530189'), (u'2014-08-10 03:17:14', u'https://www.codechef.com/PRACTICE/problems/PRIME1', u'PRIME1', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4530195'), (u'2014-08-10 14:56:08', u'https://www.codechef.com/AUG14/problems/REVERSE', u'REVERSE', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/4533200'), (u'2014-08-10 15:14:30', u'https://www.codechef.com/AUG14/problems/REVERSE', u'REVERSE', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4533367'), (u'2014-08-10 17:29:15', u'https://www.codechef.com/PRCNSR14/problems/GAME2048', u'GAME2048', 'RE', u'0', u'C', 'https://www.codechef.com/viewsolution/4535341'), (u'2014-08-10 17:30:22', u'https://www.codechef.com/PRCNSR14/problems/GAME2048', u'GAME2048', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4535393'), (u'2014-08-10 17:33:44', u'https://www.codechef.com/PRCNSR14/problems/GAME2048', u'GAME2048', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4535586'), (u'2014-08-10 17:34:51', u'https://www.codechef.com/PRCNSR14/problems/GAME2048', u'GAME2048', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4535650'), (u'2014-08-10 17:37:42', u'https://www.codechef.com/PRCNSR14/problems/GAME2048', u'GAME2048', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4535810'), (u'2014-08-10 17:39:14', u'https://www.codechef.com/PRCNSR14/problems/GAME2048', u'GAME2048', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4535898'), (u'2014-08-10 17:40:19', u'https://www.codechef.com/PRCNSR14/problems/GAME2048', u'GAME2048', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4535965'), (u'2014-08-10 17:47:23', u'https://www.codechef.com/PRCNSR14/problems/HLPSUG', u'HLPSUG', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4536336'), (u'2014-08-10 18:03:45', u'https://www.codechef.com/PRCNSR14/problems/HPYBDAY', u'HPYBDAY', u'TLE', u'0', u'C', 'https://www.codechef.com/viewsolution/4537126'), (u'2014-08-10 18:25:49', u'https://www.codechef.com/PRCNSR14/problems/HPYBDAY', u'HPYBDAY', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4538160'), (u'2014-08-10 18:27:37', u'https://www.codechef.com/PRCNSR14/problems/HPYBDAY', u'HPYBDAY', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4538244'), (u'2014-08-10 19:11:26', u'https://www.codechef.com/PRCNSR14/problems/PLTGRP', u'PLTGRP', u'TLE', u'0', u'C++11', 'https://www.codechef.com/viewsolution/4539947'), (u'2014-10-03 19:51:34', u'https://www.codechef.com/OCT14/problems/CHEFGR', u'CHEFGR', u'AC', u'0', u'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4962359'), (u'2014-10-03 19:55:30', u'https://www.codechef.com/OCT14/problems/CHEFGR', u'CHEFGR', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4962494'), (u'2014-10-04 01:01:28', u'https://www.codechef.com/OCT14/problems/PRLADDU', u'PRLADDU', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4970823'), (u'2014-10-04 02:02:38', u'https://www.codechef.com/OCT14/problems/PRLADDU', u'PRLADDU', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/4972114'), (u'2014-10-04 02:05:31', u'https://www.codechef.com/OCT14/problems/PRLADDU', u'PRLADDU', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4972172'), (u'2014-10-04 02:08:04', u'https://www.codechef.com/OCT14/problems/PRLADDU', u'PRLADDU', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4972219'), (u'2014-10-04 02:10:59', u'https://www.codechef.com/OCT14/problems/PRLADDU', u'PRLADDU', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/4972279'), (u'2014-10-05 19:11:22', u'https://www.codechef.com/OCT14/problems/FATCHEF', u'FATCHEF', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/5008560'), (u'2014-10-05 19:46:59', u'https://www.codechef.com/OCT14/problems/PRPOTION', u'PRPOTION', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5009210'), (u'2014-10-05 20:09:50', u'https://www.codechef.com/OCT14/problems/PRPOTION', u'PRPOTION', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/5009564'), (u'2014-10-08 01:48:44', u'https://www.codechef.com/OCT14/problems/CHEFSQUA', u'CHEFSQUA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5046189'), (u'2014-10-08 19:42:52', u'https://www.codechef.com/OCT14/problems/CHEFSQUA', u'CHEFSQUA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5056254'), (u'2014-10-08 20:45:51', u'https://www.codechef.com/OCT14/problems/CHEFSQUA', u'CHEFSQUA', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/5057583'), (u'2014-10-08 20:47:41', u'https://www.codechef.com/OCT14/problems/CHEFSQUA', u'CHEFSQUA', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5057620'), (u'2014-10-08 20:49:47', u'https://www.codechef.com/OCT14/problems/CHEFSQUA', u'CHEFSQUA', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/5057673'), (u'2014-11-07 22:42:18', u'https://www.codechef.com/NOV14/problems/DISCHAR', u'DISCHAR', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5286888'), (u'2014-11-08 15:04:37', u'https://www.codechef.com/NOV14/problems/PRPALN', u'PRPALN', 'PS', u'35', u'C', 'https://www.codechef.com/viewsolution/5300598'), (u'2014-11-08 16:15:45', u'https://www.codechef.com/NOV14/problems/PRPALN', u'PRPALN', 'PS', u'35', u'C', 'https://www.codechef.com/viewsolution/5302106'), (u'2014-11-08 16:24:02', u'https://www.codechef.com/NOV14/problems/PRPALN', u'PRPALN', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5302275'), (u'2014-11-08 16:28:35', u'https://www.codechef.com/NOV14/problems/PRPALN', u'PRPALN', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5302355'), (u'2014-11-08 17:36:31', u'https://www.codechef.com/NOV14/problems/CHEFSEG', u'CHEFSEG', 'PS', u'40', u'C', 'https://www.codechef.com/viewsolution/5303576'), (u'2014-11-08 17:49:57', u'https://www.codechef.com/NOV14/problems/CHEFSEG', u'CHEFSEG', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5303832'), (u'2014-11-08 23:45:46', u'https://www.codechef.com/NOV14/problems/RBTREE', u'RBTREE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5310161'), (u'2014-11-09 00:16:54', u'https://www.codechef.com/NOV14/problems/RBTREE', u'RBTREE', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5310716'), (u'2014-11-09 00:22:33', u'https://www.codechef.com/NOV14/problems/RBTREE', u'RBTREE', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5310827'), (u'2014-11-09 20:55:47', u'https://www.codechef.com/NOV14/problems/CHEFWORD', u'CHEFWORD', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5322719'), (u'2014-11-09 21:00:47', u'https://www.codechef.com/NOV14/problems/CHEFWORD', u'CHEFWORD', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5322778'), (u'2014-11-17 01:56:38', u'https://www.codechef.com/CDSM2014/problems/CHFMAX', u'CHFMAX', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/5414098'), (u'2014-11-17 02:10:10', u'https://www.codechef.com/CDSM2014/problems/CHEFTR', u'CHEFTR', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/5414268'), (u'2014-12-06 02:22:06', u'https://www.codechef.com/DEC14/problems/CAPPLE', u'CAPPLE', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5499111'), (u'2014-12-06 02:27:09', u'https://www.codechef.com/DEC14/problems/CAPPLE', u'CAPPLE', 'PS', u'52', u'C', 'https://www.codechef.com/viewsolution/5499146'), (u'2014-12-06 02:28:40', u'https://www.codechef.com/DEC14/problems/CAPPLE', u'CAPPLE', 'PS', u'52', u'C', 'https://www.codechef.com/viewsolution/5499158'), (u'2014-12-06 02:30:42', u'https://www.codechef.com/DEC14/problems/CAPPLE', u'CAPPLE', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5499166'), (u'2015-01-02 15:18:34', u'https://www.codechef.com/JAN15/problems/GCDQ', u'GCDQ', 'PS', u'40', u'C', 'https://www.codechef.com/viewsolution/5679296'), (u'2015-01-02 15:20:33', u'https://www.codechef.com/JAN15/problems/GCDQ', u'GCDQ', 'PS', u'40', u'C', 'https://www.codechef.com/viewsolution/5679371'), (u'2015-01-02 15:37:03', u'https://www.codechef.com/JAN15/problems/CHEFSTON', u'CHEFSTON', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5679960'), (u'2015-01-02 16:16:32', u'https://www.codechef.com/JAN15/problems/GCDQ', u'GCDQ', 'PS', u'40', u'C', 'https://www.codechef.com/viewsolution/5681465'), (u'2015-01-03 21:23:57', u'https://www.codechef.com/JAN15/problems/GCDQ', u'GCDQ', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5722527'), (u'2015-01-03 21:36:43', u'https://www.codechef.com/JAN15/problems/SEAVOTE', u'SEAVOTE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5722845'), (u'2015-01-03 21:50:45', u'https://www.codechef.com/JAN15/problems/SEAVOTE', u'SEAVOTE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5723185'), (u'2015-01-06 23:28:39', u'https://www.codechef.com/JAN15/problems/SEAVOTE', u'SEAVOTE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5788244'), (u'2015-01-06 23:44:15', u'https://www.codechef.com/JAN15/problems/SEAVOTE', u'SEAVOTE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5788578'), (u'2015-01-06 23:55:07', u'https://www.codechef.com/JAN15/problems/SEAVOTE', u'SEAVOTE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/5788839'), (u'2015-01-07 00:02:10', u'https://www.codechef.com/JAN15/problems/SEAVOTE', u'SEAVOTE', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/5788999'), (u'2015-03-07 03:45:05', u'https://www.codechef.com/MARCH15/problems/CNOTE', u'CNOTE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/6413565'), (u'2015-03-07 06:18:00', u'https://www.codechef.com/MARCH15/problems/CNOTE', u'CNOTE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/6414065'), (u'2015-03-09 22:29:34', u'https://www.codechef.com/MARCH15/problems/CNOTE', u'CNOTE', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/6447577'), (u'2015-03-09 22:36:29', u'https://www.codechef.com/MARCH15/problems/CNOTE', u'CNOTE', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/6447698'), (u'2015-03-09 22:38:36', u'https://www.codechef.com/MARCH15/problems/CNOTE', u'CNOTE', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/6447737'), (u'2015-05-12 02:41:11', u'https://www.codechef.com/MAY15/problems/CHEFRP', u'CHEFRP', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/6900569'), (u'2015-05-12 03:05:02', u'https://www.codechef.com/MAY15/problems/CHEFRP', u'CHEFRP', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/6900712'), (u'2015-05-13 15:59:16', u'https://www.codechef.com/MAY15/problems/CHAPD', u'CHAPD', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/6917484'), (u'2015-05-26 03:53:20', u'https://www.codechef.com/PRACTICE/problems/CFRTEST', u'CFRTEST', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/7024771'), (u'2015-05-26 04:46:33', u'https://www.codechef.com/PRACTICE/problems/REARRSTR', u'REARRSTR', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/7024793'), (u'2015-05-26 04:54:59', u'https://www.codechef.com/PRACTICE/problems/CHAPD', u'CHAPD', u'AC', u'100', u'C++ 4.3.2', 'https://www.codechef.com/viewsolution/7024795'), (u'2015-05-30 07:38:40', u'https://www.codechef.com/PRACTICE/problems/PINOCH1', u'PINOCH1', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/7043758'), (u'2015-05-30 07:47:02', u'https://www.codechef.com/PRACTICE/problems/PINOCH1', u'PINOCH1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/7044118'), (u'2015-05-30 07:49:48', u'https://www.codechef.com/PRACTICE/problems/PINOCH1', u'PINOCH1', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/7044235'), (u'2015-05-30 08:04:35', u'https://www.codechef.com/PRACTICE/problems/PINOCH2', u'PINOCH2', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/7044809'), (u'2015-05-30 08:09:02', u'https://www.codechef.com/PRACTICE/problems/PINOCH2', u'PINOCH2', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/7044972'), (u'2015-05-30 08:27:56', u'https://www.codechef.com/PRACTICE/problems/RACEWARS', u'RACEWARS', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/7045779'), (u'2015-05-30 08:28:38', u'https://www.codechef.com/PRACTICE/problems/RACEWARS', u'RACEWARS', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7045826'), (u'2015-05-30 08:31:07', u'https://www.codechef.com/PRACTICE/problems/MXZERO', u'MXZERO', u'AC', u'0', u'C', 'https://www.codechef.com/viewsolution/7045937'), (u'2015-05-30 09:22:29', u'https://www.codechef.com/PRACTICE/problems/RACEWARS', u'RACEWARS', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7046383'), (u'2015-05-30 09:34:19', u'https://www.codechef.com/PRACTICE/problems/HOBB', u'HOBB', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/7046431'), (u'2015-05-30 12:48:40', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'TICKETS5', u'WA', u'0', u'C', 'https://www.codechef.com/viewsolution/7047261'), (u'2015-05-30 12:50:41', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'TICKETS5', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/7047270'), (u'2015-06-08 22:03:40', u'https://www.codechef.com/JUNE15/problems/CBARG', u'CBARG', 'PS', u'30', u'C', 'https://www.codechef.com/viewsolution/7139999'), (u'2015-06-08 22:10:35', u'https://www.codechef.com/JUNE15/problems/CBARG', u'CBARG', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/7140098'), (u'2015-06-09 17:03:07', u'https://www.codechef.com/JUNE15/problems/CHPLGNS', u'CHPLGNS', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7150141'), (u'2015-06-09 22:09:57', u'https://www.codechef.com/JUNE15/problems/CHPLGNS', u'CHPLGNS', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/7153650'), (u'2015-06-09 22:11:02', u'https://www.codechef.com/JUNE15/problems/CHPLGNS', u'CHPLGNS', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7153663'), (u'2015-06-10 17:52:59', u'https://www.codechef.com/JUNE15/problems/CHPLGNS', u'CHPLGNS', 'PS', u'10', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7163596'), (u'2015-06-10 18:02:31', u'https://www.codechef.com/JUNE15/problems/CHPLGNS', u'CHPLGNS', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7163696'), (u'2015-06-10 23:15:58', u'https://www.codechef.com/JUNE15/problems/CHPLGNS', u'CHPLGNS', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7168947'), (u'2015-06-10 23:27:43', u'https://www.codechef.com/PRACTICE/problems/R303', u'R303', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7169121'), (u'2015-06-11 00:01:43', u'https://www.codechef.com/PRACTICE/problems/R303', u'R303', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7169540'), (u'2015-07-04 02:09:01', u'https://www.codechef.com/JULY15/problems/CHCUBE', u'CHCUBE', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7339812'), (u'2015-07-04 02:49:18', u'https://www.codechef.com/JULY15/problems/LCKYST', u'LCKYST', 'PS', u'8', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7340359'), (u'2015-07-04 02:55:39', u'https://www.codechef.com/JULY15/problems/LCKYST', u'LCKYST', 'PS', u'30', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7340422'), (u'2015-07-04 02:57:16', u'https://www.codechef.com/JULY15/problems/LCKYST', u'LCKYST', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7340447'), (u'2015-07-04 02:59:52', u'https://www.codechef.com/JULY15/problems/LCKYST', u'LCKYST', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7340475'), (u'2015-07-06 15:49:58', u'https://www.codechef.com/JULY15/problems/EGBOBRD', u'EGBOBRD', 'PS', u'15', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7381337'), (u'2015-07-06 15:57:35', u'https://www.codechef.com/JULY15/problems/EGBOBRD', u'EGBOBRD', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7381445'), (u'2015-07-07 20:01:02', u'https://www.codechef.com/JULY15/problems/EGBOBRD', u'EGBOBRD', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7399011'), (u'2015-07-07 20:05:22', u'https://www.codechef.com/JULY15/problems/EGBOBRD', u'EGBOBRD', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7399073'), (u'2015-07-08 00:31:24', u'https://www.codechef.com/JULY15/problems/ADDMUL', u'ADDMUL', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7402380'), (u'2015-07-08 00:33:00', u'https://www.codechef.com/JULY15/problems/ADDMUL', u'ADDMUL', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7402406'), (u'2015-07-12 10:52:20', u'https://www.codechef.com/JULY15/problems/ADDMUL', u'ADDMUL', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7456100'), (u'2015-08-07 17:28:06', u'https://www.codechef.com/AUG15/problems/COOKMACH', u'COOKMACH', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7640195'), (u'2015-08-10 17:08:30', u'https://www.codechef.com/AUG15/problems/GRGUY', u'GRGUY', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7720771'), (u'2015-08-10 19:18:54', u'https://www.codechef.com/AUG15/problems/ADMAG', u'ADMAG', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/7723401'), (u'2015-08-12 06:04:32', u'https://www.codechef.com/AUG15/problems/WOUT', u'WOUT', 'PS', u'25', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7751317'), (u'2015-08-12 06:10:36', u'https://www.codechef.com/AUG15/problems/WOUT', u'WOUT', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7751339'), (u'2015-08-12 06:14:26', u'https://www.codechef.com/AUG15/problems/WOUT', u'WOUT', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7751353'), (u'2015-08-16 00:04:50', u'https://www.codechef.com/PRACTICE/problems/RRATING', u'RRATING', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7817713'), (u'2015-08-16 00:27:10', u'https://www.codechef.com/PRACTICE/problems/RRATING', u'RRATING', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818066'), (u'2015-08-16 00:37:49', u'https://www.codechef.com/PRACTICE/problems/RRATING', u'RRATING', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818234'), (u'2015-08-16 00:46:49', u'https://www.codechef.com/PRACTICE/problems/RRATING', u'RRATING', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818371'), (u'2015-08-16 00:52:48', u'https://www.codechef.com/PRACTICE/problems/RRATING', u'RRATING', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818462'), (u'2015-08-16 01:06:50', u'https://www.codechef.com/PRACTICE/problems/RRATING', u'RRATING', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818659'), (u'2015-08-16 01:11:04', u'https://www.codechef.com/PRACTICE/problems/RRATING', u'RRATING', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818713'), (u'2015-08-16 01:27:22', u'https://www.codechef.com/PRACTICE/problems/RRATING', u'RRATING', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818980'), (u'2015-08-23 21:36:59', u'https://www.codechef.com/COOK61/problems/CARDLINE', u'CARDLINE', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7898648'), (u'2015-08-23 21:41:10', u'https://www.codechef.com/COOK61/problems/TWOSTR', u'TWOSTR', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7898953'), (u'2015-08-23 21:58:03', u'https://www.codechef.com/COOK61/problems/XORNUBER', u'XORNUBER', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7901142'), (u'2015-08-23 22:06:19', u'https://www.codechef.com/COOK61/problems/XORNUBER', u'XORNUBER', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7902094'), (u'2015-09-10 02:09:12', u'https://www.codechef.com/SEPT15/problems/MSTEP', u'MSTEP', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8102573'), (u'2015-09-10 02:51:18', u'https://www.codechef.com/SEPT15/problems/DONUTS', u'DONUTS', 'PS', u'30', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8102955'), (u'2015-09-10 20:48:37', u'https://www.codechef.com/SEPT15/problems/DONUTS', u'DONUTS', 'PS', u'10', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8112817'), (u'2015-09-10 21:39:10', u'https://www.codechef.com/SEPT15/problems/DONUTS', u'DONUTS', 'PS', u'40', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8113610'), (u'2015-09-12 08:08:58', u'https://www.codechef.com/SEPT15/problems/DONUTS', u'DONUTS', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8132761'), (u'2015-09-12 08:19:28', u'https://www.codechef.com/SEPT15/problems/DONUTS', u'DONUTS', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8132775'), (u'2015-09-12 22:15:45', u'https://www.codechef.com/SEPT15/problems/BANROB', u'BANROB', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142069'), (u'2015-09-12 22:23:17', u'https://www.codechef.com/SEPT15/problems/BANROB', u'BANROB', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142165'), (u'2015-09-12 22:31:16', u'https://www.codechef.com/SEPT15/problems/BANROB', u'BANROB', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142257'), (u'2015-09-12 22:35:11', u'https://www.codechef.com/SEPT15/problems/BANROB', u'BANROB', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142304'), (u'2015-09-12 22:52:32', u'https://www.codechef.com/SEPT15/problems/BANROB', u'BANROB', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142551'), (u'2015-09-12 22:58:28', u'https://www.codechef.com/SEPT15/problems/BANROB', u'BANROB', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142618'), (u'2015-09-12 23:03:31', u'https://www.codechef.com/SEPT15/problems/BANROB', u'BANROB', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142689'), (u'2015-09-12 23:06:41', u'https://www.codechef.com/SEPT15/problems/BANROB', u'BANROB', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/8142738'), (u'2015-09-12 23:09:39', u'https://www.codechef.com/SEPT15/problems/BANROB', u'BANROB', u'AC', u'100', u'C', 'https://www.codechef.com/viewsolution/8142768'), (u'2015-09-20 22:05:39', u'https://www.codechef.com/COOK62/problems/FRGTNLNG', u'FRGTNLNG', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8212884'), (u'2015-09-20 22:34:31', u'https://www.codechef.com/COOK62/problems/STACKS', u'STACKS', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8215005'), (u'2015-09-20 23:10:47', u'https://www.codechef.com/COOK62/problems/STACKS', u'STACKS', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8217486'), (u'2015-09-20 23:16:22', u'https://www.codechef.com/COOK62/problems/STACKS', u'STACKS', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8217838'), (u'2015-09-21 13:34:29', u'https://www.codechef.com/PRACTICE/problems/FRGTNLNG', u'FRGTNLNG', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8222436'), (u'2015-09-25 21:08:04', u'https://www.codechef.com/PRACTICE/problems/TPRODUCT', u'TPRODUCT', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8245383'), (u'2015-09-25 21:15:54', u'https://www.codechef.com/PRACTICE/problems/TPRODUCT', u'TPRODUCT', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8245418'), (u'2015-09-25 21:30:38', u'https://www.codechef.com/PRACTICE/problems/TPRODUCT', u'TPRODUCT', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8245472'), (u'2015-09-25 21:37:47', u'https://www.codechef.com/PRACTICE/problems/TPRODUCT', u'TPRODUCT', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8245498'), (u'2015-09-27 19:14:01', u'https://www.codechef.com/PRACTICE/problems/SPALNUM', u'SPALNUM', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8266897'), (u'2015-09-27 19:19:39', u'https://www.codechef.com/PRACTICE/problems/SPALNUM', u'SPALNUM', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8267017'), (u'2015-09-27 19:23:52', u'https://www.codechef.com/PRACTICE/problems/SPALNUM', u'SPALNUM', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8267096'), (u'2015-09-29 21:53:04', u'https://www.codechef.com/PRACTICE/problems/LUCKY', u'LUCKY', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8280451'), (u'2015-10-20 09:59:02', u'https://www.codechef.com/PRACTICE/problems/ASP', u'ASP', u'WA', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8594490'), (u'2015-10-20 10:00:30', u'https://www.codechef.com/PRACTICE/problems/ASP', u'ASP', u'AC', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8594496'), (u'2015-12-14 23:46:01', u'https://www.codechef.com/PRACTICE/problems/CHEFST', u'CHEFST', u'TLE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8959065'), (u'2015-12-14 23:47:46', u'https://www.codechef.com/PRACTICE/problems/CHEFST', u'CHEFST', 'PS', u'30', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8959080'), (u'2015-12-15 00:01:01', u'https://www.codechef.com/PRACTICE/problems/CHEFST', u'CHEFST', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8959153'), (u'2016-05-14 16:46:03', u'https://www.codechef.com/PRACTICE/problems/KOL1509', u'KOL1509', 'RE', u'0', u'C++14', 'https://www.codechef.com/viewsolution/10082758'), (u'2016-06-05 13:55:56', u'https://www.codechef.com/JUNE16/problems/DEVARRAY', u'DEVARRAY', 'CE', u'0', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/10333457'), (u'2016-06-05 13:59:32', u'https://www.codechef.com/JUNE16/problems/DEVARRAY', u'DEVARRAY', u'AC', u'100', u'C++ 4.9.2', 'https://www.codechef.com/viewsolution/10333552'), (u'2017-11-03 00:35:24', u'https://www.codechef.com/PRACTICE/problems/BLACKCOM', u'BLACKCOM', 'CE', u'0', u'C++ 6.3', 'https://www.codechef.com/viewsolution/16037895'), (u'2017-11-03 00:41:17', u'https://www.codechef.com/PRACTICE/problems/BLACKCOM', u'BLACKCOM', u'WA', u'0', u'PYTH', 'https://www.codechef.com/viewsolution/16037935'), (u'2017-12-03 19:26:28', u'https://www.codechef.com/PRACTICE/problems/WEICOM', u'WEICOM', u'WA', u'0', u'PYTH', 'https://www.codechef.com/viewsolution/16433447'), (u'2018-10-07 19:12:16', u'https://www.codechef.com/PRACTICE/problems/BLACKCOM', u'BLACKCOM', 'CE', u'0', u'C++14', 'https://www.codechef.com/viewsolution/20545692'), (u'2018-10-23 22:36:07', u'https://www.codechef.com/PRACTICE/problems/SURCHESS', u'SURCHESS', 'CE', u'0', u'C++14', 'https://www.codechef.com/viewsolution/21187090'), (u'2018-11-07 12:50:39', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'TICKETS5', 'CE', u'0', u'C', 'https://www.codechef.com/viewsolution/21518903'), (u'2018-11-07 12:51:53', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'TICKETS5', u'WA', u'0', u'C++14', 'https://www.codechef.com/viewsolution/21518924'), (u'2018-11-07 12:57:36', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'TICKETS5', u'WA', u'0', u'C++14', 'https://www.codechef.com/viewsolution/21519029'), (u'2018-11-07 12:58:22', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'TICKETS5', u'WA', u'0', u'C++14', 'https://www.codechef.com/viewsolution/21519043'), (u'2018-11-07 13:00:37', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'TICKETS5', u'WA', u'0', u'C++14', 'https://www.codechef.com/viewsolution/21519089'), (u'2018-11-07 13:02:45', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'TICKETS5', 'PS', u'50', u'C++14', 'https://www.codechef.com/viewsolution/21519127'), (u'2018-11-07 13:08:22', u'https://www.codechef.com/PRACTICE/problems/TICKETS5', u'TICKETS5', u'AC', u'100', u'C++14', 'https://www.codechef.com/viewsolution/21519248')], - "CodeForces": [('2014-06-20 14:16:29', u'http://www.codeforces.com/problemset/problem/443/A', u'Anton and Letters', 'CE', '0', u'GNU C', 'http://www.codeforces.com/contest/443/submission/6926377'), ('2014-06-20 14:17:29', u'http://www.codeforces.com/problemset/problem/443/A', u'Anton and Letters', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/443/submission/6926384'), ('2014-06-20 15:14:05', u'http://www.codeforces.com/problemset/problem/1/A', u'Theatre Square', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/1/submission/6926712'), ('2014-06-20 15:19:19', u'http://www.codeforces.com/problemset/problem/1/A', u'Theatre Square', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/1/submission/6926744'), ('2014-06-20 15:35:33', u'http://www.codeforces.com/problemset/problem/1/A', u'Theatre Square', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/1/submission/6926822'), ('2014-06-20 15:40:22', u'http://www.codeforces.com/problemset/problem/4/A', u'Watermelon', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/4/submission/6926854'), ('2014-06-20 15:42:27', u'http://www.codeforces.com/problemset/problem/4/A', u'Watermelon', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/4/submission/6926866'), ('2014-06-20 16:19:41', u'http://www.codeforces.com/problemset/problem/158/A', u'Next Round', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/6927039'), ('2014-06-20 16:21:59', u'http://www.codeforces.com/problemset/problem/158/A', u'Next Round', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/6927057'), ('2014-06-20 16:35:40', u'http://www.codeforces.com/problemset/problem/158/A', u'Next Round', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/6927122'), ('2014-06-20 23:33:02', u'http://www.codeforces.com/problemset/problem/158/B', u'Taxi', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/6930033'), ('2014-06-20 23:46:50', u'http://www.codeforces.com/problemset/problem/158/B', u'Taxi', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/6930628'), ('2014-06-21 00:23:15', u'http://www.codeforces.com/problemset/problem/131/A', u'cAPS lOCK', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6930791'), ('2014-06-21 00:26:44', u'http://www.codeforces.com/problemset/problem/131/A', u'cAPS lOCK', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6930810'), ('2014-06-21 00:28:48', u'http://www.codeforces.com/problemset/problem/131/A', u'cAPS lOCK', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6930817'), ('2014-06-21 00:31:03', u'http://www.codeforces.com/problemset/problem/131/A', u'cAPS lOCK', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6930830'), ('2014-06-21 01:21:34', u'http://www.codeforces.com/problemset/problem/160/A', u'Twins', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/160/submission/6931006'), ('2014-06-21 01:24:10', u'http://www.codeforces.com/problemset/problem/160/A', u'Twins', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/160/submission/6931013'), ('2014-06-21 01:28:28', u'http://www.codeforces.com/problemset/problem/160/A', u'Twins', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/160/submission/6931031'), ('2014-06-21 01:42:08', u'http://www.codeforces.com/problemset/problem/131/C', u'The World is a Theatre', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931087'), ('2014-06-21 01:55:26', u'http://www.codeforces.com/problemset/problem/131/C', u'The World is a Theatre', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931137'), ('2014-06-21 01:58:07', u'http://www.codeforces.com/problemset/problem/131/C', u'The World is a Theatre', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931156'), ('2014-06-21 01:59:17', u'http://www.codeforces.com/problemset/problem/131/C', u'The World is a Theatre', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931160'), ('2014-06-21 02:02:30', u'http://www.codeforces.com/problemset/problem/131/C', u'The World is a Theatre', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931170'), ('2014-06-21 02:04:53', u'http://www.codeforces.com/problemset/problem/131/C', u'The World is a Theatre', 'RE', '0', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931181'), ('2014-06-21 02:14:48', u'http://www.codeforces.com/problemset/problem/131/C', u'The World is a Theatre', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931213'), ('2014-06-21 20:42:21', u'http://www.codeforces.com/problemset/problem/160/A', u'Twins', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/160/submission/6938158'), ('2014-06-28 01:04:59', u'http://www.codeforces.com/problemset/problem/268/B', u'Buttons', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/268/submission/6971649'), ('2014-06-28 02:06:43', u'http://www.codeforces.com/problemset/problem/37/A', u'Towers', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/37/submission/6971879'), ('2014-07-17 00:31:42', u'http://www.codeforces.com/problemset/problem/71/A', u'Way Too Long Words', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/71/submission/7118436'), ('2014-07-17 00:46:44', u'http://www.codeforces.com/problemset/problem/43/B', u'Letter', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/43/submission/7118520'), ('2014-07-24 15:36:56', u'http://www.codeforces.com/problemset/problem/447/A', u'DZY Loves Hash', 'CE', '0', u'GNU C++', 'http://www.codeforces.com/contest/447/submission/7215463'), ('2014-07-24 15:39:56', u'http://www.codeforces.com/problemset/problem/447/A', u'DZY Loves Hash', 'CE', '0', u'GNU C', 'http://www.codeforces.com/contest/447/submission/7215478'), ('2014-07-24 15:42:59', u'http://www.codeforces.com/problemset/problem/447/A', u'DZY Loves Hash', 'AC', '100', u'GNU C', 'http://www.codeforces.com/contest/447/submission/7215497'), ('2014-08-08 17:12:35', u'http://www.codeforces.com/problemset/problem/454/A', u'Little Pony and Crystal Mine', 'AC', '100', u'GNU C', 'http://www.codeforces.com/contest/454/submission/7375767'), ('2014-08-08 22:25:32', u'http://www.codeforces.com/problemset/problem/456/A', u'Laptops', 'CE', '0', u'GNU C', 'http://www.codeforces.com/contest/456/submission/7391497'), ('2014-08-08 22:30:29', u'http://www.codeforces.com/problemset/problem/456/A', u'Laptops', 'TLE', '0', u'GNU C', 'http://www.codeforces.com/contest/456/submission/7392085'), ('2014-08-10 01:55:39', u'http://www.codeforces.com/problemset/problem/456/A', u'Laptops', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/456/submission/7408524'), ('2014-08-10 01:57:55', u'http://www.codeforces.com/problemset/problem/456/A', u'Laptops', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/456/submission/7408534'), ('2014-08-10 02:03:27', u'http://www.codeforces.com/problemset/problem/456/A', u'Laptops', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/456/submission/7408554'), ('2014-08-10 02:08:35', u'http://www.codeforces.com/problemset/problem/456/A', u'Laptops', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/456/submission/7408575'), ('2014-08-10 02:18:38', u'http://www.codeforces.com/problemset/problem/456/A', u'Laptops', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/456/submission/7408617'), ('2014-08-10 02:28:59', u'http://www.codeforces.com/problemset/problem/456/A', u'Laptops', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/456/submission/7408646'), ('2014-08-31 16:22:26', u'http://www.codeforces.com/problemset/problem/87/A', u'Trains', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/87/submission/7653363'), ('2014-09-28 22:07:52', u'http://www.codeforces.com/problemset/problem/472/A', u'Design Tutorial: Learn from Math', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/472/submission/8007179'), ('2014-09-28 22:11:15', u'http://www.codeforces.com/problemset/problem/472/A', u'Design Tutorial: Learn from Math', 'AC', '100', u'GNU C', 'http://www.codeforces.com/contest/472/submission/8007515'), ('2014-09-28 23:07:59', u'http://www.codeforces.com/problemset/problem/472/B', u'Design Tutorial: Learn from Life', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/472/submission/8012494'), ('2014-09-28 23:24:42', u'http://www.codeforces.com/problemset/problem/472/B', u'Design Tutorial: Learn from Life', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/472/submission/8013925'), ('2014-09-28 23:32:59', u'http://www.codeforces.com/problemset/problem/472/B', u'Design Tutorial: Learn from Life', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/472/submission/8014748'), ('2014-09-29 02:27:25', u'http://www.codeforces.com/problemset/problem/472/B', u'Design Tutorial: Learn from Life', 'AC', '100', u'GNU C', 'http://www.codeforces.com/contest/472/submission/8017466'), ('2014-09-29 02:30:15', u'http://www.codeforces.com/problemset/problem/472/B', u'Design Tutorial: Learn from Life', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/472/submission/8017497'), ('2014-10-06 21:28:24', u'http://www.codeforces.com/problemset/problem/474/A', u'Keyboard', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/474/submission/8112225'), ('2014-10-06 21:34:57', u'http://www.codeforces.com/problemset/problem/474/A', u'Keyboard', 'AC', '100', u'GNU C', 'http://www.codeforces.com/contest/474/submission/8113048'), ('2014-10-06 23:10:09', u'http://www.codeforces.com/problemset/problem/474/B', u'Worms', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/474/submission/8120096'), ('2014-10-07 02:58:44', u'http://www.codeforces.com/problemset/problem/474/B', u'Worms', 'AC', '100', u'GNU C', 'http://www.codeforces.com/contest/474/submission/8123462'), ('2014-10-07 03:55:46', u'http://www.codeforces.com/problemset/problem/474/D', u'Flowers', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/474/submission/8123773'), ('2014-10-07 04:02:21', u'http://www.codeforces.com/problemset/problem/474/D', u'Flowers', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/474/submission/8123802'), ('2015-07-13 19:46:13', u'http://www.codeforces.com/problemset/problem/550/A', u'Two Substrings', 'CE', '0', u'GNU C', 'http://www.codeforces.com/contest/550/submission/12030270'), ('2015-07-13 19:46:47', u'http://www.codeforces.com/problemset/problem/550/A', u'Two Substrings', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/550/submission/12030276'), ('2015-07-13 20:00:28', u'http://www.codeforces.com/problemset/problem/550/A', u'Two Substrings', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/550/submission/12030404'), ('2015-07-13 20:22:36', u'http://www.codeforces.com/problemset/problem/550/B', u'Preparing Olympiad', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/550/submission/12030587'), ('2015-07-13 20:55:12', u'http://www.codeforces.com/problemset/problem/538/A', u'Cutting Banner', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/538/submission/12030895'), ('2015-07-13 20:56:42', u'http://www.codeforces.com/problemset/problem/538/A', u'Cutting Banner', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/538/submission/12030903'), ('2015-07-13 21:17:47', u'http://www.codeforces.com/problemset/problem/538/B', u'Quasi Binary', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/538/submission/12031083'), ('2015-07-13 21:32:43', u'http://www.codeforces.com/problemset/problem/538/B', u'Quasi Binary', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/538/submission/12031229'), ('2015-07-13 23:04:36', u'http://www.codeforces.com/problemset/problem/409/H', u'A + B Strikes Back', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/409/submission/12031995'), ('2015-07-13 23:07:06', u'http://www.codeforces.com/problemset/problem/409/H', u'A + B Strikes Back', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/409/submission/12032008'), ('2015-07-13 23:08:06', u'http://www.codeforces.com/problemset/problem/409/H', u'A + B Strikes Back', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/409/submission/12032015'), ('2015-07-13 23:08:45', u'http://www.codeforces.com/problemset/problem/409/H', u'A + B Strikes Back', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/409/submission/12032021'), ('2015-07-13 23:09:16', u'http://www.codeforces.com/problemset/problem/409/H', u'A + B Strikes Back', 'WA', '0', u'GNU C', 'http://www.codeforces.com/contest/409/submission/12032027'), ('2015-07-13 23:10:05', u'http://www.codeforces.com/problemset/problem/409/H', u'A + B Strikes Back', 'AC', '100', u'GNU C', 'http://www.codeforces.com/contest/409/submission/12032034'), ('2015-08-22 22:26:26', u'http://www.codeforces.com/problemset/problem/572/A', u'Arrays', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/572/submission/12650084'), ('2015-08-22 22:54:57', u'http://www.codeforces.com/problemset/problem/572/B', u'Order Book', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/572/submission/12655042'), ('2015-08-22 23:20:25', u'http://www.codeforces.com/problemset/problem/572/B', u'Order Book', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/572/submission/12658463'), ('2015-08-29 22:25:27', u'http://www.codeforces.com/problemset/problem/574/A', u'Bear and Elections', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/12750171'), ('2015-08-29 22:28:28', u'http://www.codeforces.com/problemset/problem/574/A', u'Bear and Elections', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/12750679'), ('2015-08-29 22:52:25', u'http://www.codeforces.com/problemset/problem/574/C', u'Bear and Poker', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/12754477'), ('2015-08-30 00:49:08', u'http://www.codeforces.com/problemset/problem/574/C', u'Bear and Poker', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/12765492'), ('2015-08-30 00:52:15', u'http://www.codeforces.com/problemset/problem/574/C', u'Bear and Poker', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/12765623'), ('2015-09-02 20:37:01', u'http://www.codeforces.com/problemset/problem/560/A', u'Currency System in Geraldion', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/560/submission/12817055'), ('2015-09-02 20:52:50', u'http://www.codeforces.com/problemset/problem/560/B', u'Gerald is into Art', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/560/submission/12817234'), ('2015-09-02 21:19:30', u'http://www.codeforces.com/problemset/problem/560/B', u'Gerald is into Art', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/560/submission/12817559'), ('2015-09-02 21:23:37', u'http://www.codeforces.com/problemset/problem/560/B', u'Gerald is into Art', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/560/submission/12817612'), ('2015-09-10 22:08:56', u'http://www.codeforces.com/problemset/problem/577/A', u'Multiplication Table', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/577/submission/12928002'), ('2015-09-10 22:57:34', u'http://www.codeforces.com/problemset/problem/577/C', u"Vasya and Petya's Game", 'RE', '0', u'GNU C++', 'http://www.codeforces.com/contest/577/submission/12937380'), ('2015-09-10 23:24:19', u'http://www.codeforces.com/problemset/problem/577/C', u"Vasya and Petya's Game", 'RE', '0', u'GNU C++', 'http://www.codeforces.com/contest/577/submission/12941164'), ('2015-09-10 23:35:13', u'http://www.codeforces.com/problemset/problem/577/C', u"Vasya and Petya's Game", 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/577/submission/12942378'), ('2015-09-18 09:26:35', u'http://www.codeforces.com/problemset/problem/574/B', u'Bear and Three Musketeers', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080029'), ('2015-09-18 09:35:11', u'http://www.codeforces.com/problemset/problem/574/B', u'Bear and Three Musketeers', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080083'), ('2015-09-18 09:40:54', u'http://www.codeforces.com/problemset/problem/574/B', u'Bear and Three Musketeers', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080104'), ('2015-09-18 09:50:57', u'http://www.codeforces.com/problemset/problem/574/B', u'Bear and Three Musketeers', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080162'), ('2015-09-18 10:57:39', u'http://www.codeforces.com/problemset/problem/574/B', u'Bear and Three Musketeers', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080670'), ('2015-09-19 10:04:18', u'http://www.codeforces.com/problemset/problem/158/B', u'Taxi', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096185'), ('2015-09-19 10:06:16', u'http://www.codeforces.com/problemset/problem/158/B', u'Taxi', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096197'), ('2015-09-19 10:09:39', u'http://www.codeforces.com/problemset/problem/158/B', u'Taxi', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096220'), ('2015-09-19 10:13:38', u'http://www.codeforces.com/problemset/problem/158/B', u'Taxi', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096250'), ('2015-09-19 10:17:36', u'http://www.codeforces.com/problemset/problem/158/B', u'Taxi', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096280'), ('2015-09-19 16:27:37', u'http://www.codeforces.com/problemset/problem/160/A', u'Twins', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/160/submission/13100273'), ('2015-09-19 17:17:56', u'http://www.codeforces.com/problemset/problem/550/C', u'Divisibility by Eight', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/550/submission/13100937'), ('2015-09-19 20:29:07', u'http://www.codeforces.com/problemset/problem/519/B', u'A and B and Compilation Errors', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/519/submission/13103565'), ('2015-09-20 08:58:02', u'http://www.codeforces.com/problemset/problem/204/B', u'Little Elephant and Cards', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109387'), ('2015-09-20 09:05:26', u'http://www.codeforces.com/problemset/problem/204/B', u'Little Elephant and Cards', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109421'), ('2015-09-20 09:10:19', u'http://www.codeforces.com/problemset/problem/204/B', u'Little Elephant and Cards', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109436'), ('2015-09-20 09:15:40', u'http://www.codeforces.com/problemset/problem/204/B', u'Little Elephant and Cards', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109456'), ('2015-09-20 09:19:16', u'http://www.codeforces.com/problemset/problem/204/B', u'Little Elephant and Cards', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109467'), ('2015-09-22 22:07:10', u'http://www.codeforces.com/problemset/problem/580/A', u'Kefa and First Steps', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13145925'), ('2015-09-22 22:29:58', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13152519'), ('2015-09-22 23:18:24', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13162731'), ('2015-09-22 23:24:31', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13163770'), ('2015-09-22 23:25:35', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13163942'), ('2015-09-22 23:29:09', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13164502'), ('2015-09-23 00:49:34', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13171251'), ('2015-09-23 01:03:37', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13171838'), ('2015-09-23 01:38:14', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13172926'), ('2015-09-23 14:55:02', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13181387'), ('2015-09-23 18:14:51', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13185934'), ('2015-09-23 18:16:58', u'http://www.codeforces.com/problemset/problem/580/B', u'Kefa and Company', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13185991'), ('2015-09-23 19:08:23', u'http://www.codeforces.com/problemset/problem/580/C', u'Kefa and Park', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13187242'), ('2015-09-23 19:24:05', u'http://www.codeforces.com/problemset/problem/580/C', u'Kefa and Park', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13187823'), ('2015-09-23 19:30:09', u'http://www.codeforces.com/problemset/problem/580/C', u'Kefa and Park', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/13187946'), ('2015-09-27 19:40:44', u'http://www.codeforces.com/problemset/problem/4/C', u'Registration System', 'CE', '0', u'GNU C++', 'http://www.codeforces.com/contest/4/submission/13250390'), ('2015-09-27 19:41:55', u'http://www.codeforces.com/problemset/problem/4/C', u'Registration System', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/4/submission/13250410'), ('2015-09-27 21:19:48', u'http://www.codeforces.com/problemset/problem/159/C', u'String Manipulation 1.0', 'MLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/159/submission/13251760'), ('2015-09-28 14:34:58', u'http://www.codeforces.com/problemset/problem/581/A', u'Vasya the Hipster', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13260798'), ('2015-09-28 14:44:20', u'http://www.codeforces.com/problemset/problem/581/B', u'Luxurious Houses', 'RE', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13263305'), ('2015-09-28 14:56:03', u'http://www.codeforces.com/problemset/problem/581/C', u'Developing Skills', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13265626'), ('2015-09-28 15:17:41', u'http://www.codeforces.com/problemset/problem/581/C', u'Developing Skills', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13268882'), ('2015-09-29 12:10:51', u'http://www.codeforces.com/problemset/problem/581/B', u'Luxurious Houses', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292365'), ('2015-09-29 12:22:40', u'http://www.codeforces.com/problemset/problem/581/B', u'Luxurious Houses', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292509'), ('2015-09-29 12:34:16', u'http://www.codeforces.com/problemset/problem/581/C', u'Developing Skills', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292656'), ('2015-09-29 12:43:38', u'http://www.codeforces.com/problemset/problem/581/C', u'Developing Skills', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292768'), ('2015-09-29 12:47:20', u'http://www.codeforces.com/problemset/problem/581/B', u'Luxurious Houses', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292809'), ('2015-09-29 12:48:18', u'http://www.codeforces.com/problemset/problem/581/C', u'Developing Skills', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292817'), ('2015-09-29 13:10:59', u'http://www.codeforces.com/problemset/problem/581/C', u'Developing Skills', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13293101'), ('2015-09-29 13:32:07', u'http://www.codeforces.com/problemset/problem/581/C', u'Developing Skills', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13293354'), ('2015-09-29 17:43:48', u'http://www.codeforces.com/problemset/problem/581/C', u'Developing Skills', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/581/submission/13297010'), ('2015-09-29 20:59:18', u'http://www.codeforces.com/problemset/problem/263/A', u'Beautiful Matrix', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/263/submission/13300553'), ('2015-09-29 21:14:53', u'http://www.codeforces.com/problemset/problem/118/B', u'Present from Lena', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/118/submission/13300823'), ('2015-09-29 21:29:52', u'http://www.codeforces.com/problemset/problem/118/B', u'Present from Lena', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/118/submission/13301123'), ('2015-10-03 18:44:23', u'http://www.codeforces.com/problemset/problem/268/B', u'Buttons', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/268/submission/13359900'), ('2015-10-03 20:04:32', u'http://www.codeforces.com/problemset/problem/569/B', u'Inventory', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/569/submission/13360927'), ('2015-10-03 20:06:13', u'http://www.codeforces.com/problemset/problem/569/B', u'Inventory', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/569/submission/13360949'), ('2015-10-03 21:05:23', u'http://www.codeforces.com/problemset/problem/525/C', u'Ilya and Sticks', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/525/submission/13361790'), ('2015-10-03 21:06:58', u'http://www.codeforces.com/problemset/problem/525/C', u'Ilya and Sticks', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/525/submission/13361810'), ('2015-10-03 21:09:02', u'http://www.codeforces.com/problemset/problem/525/C', u'Ilya and Sticks', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/525/submission/13361836'), ('2015-10-03 22:25:41', u'http://www.codeforces.com/problemset/problem/583/A', u'Asphalting Roads', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/583/submission/13365272'), ('2015-10-03 23:30:49', u'http://www.codeforces.com/problemset/problem/583/B', u"Robot's Task", 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/583/submission/13378169'), ('2015-10-06 22:05:41', u'http://www.codeforces.com/problemset/problem/584/A', u'Olesya and Rodion', 'TLE', '0', u'Python 2', 'http://www.codeforces.com/contest/584/submission/13436363'), ('2015-10-06 22:17:59', u'http://www.codeforces.com/problemset/problem/584/A', u'Olesya and Rodion', 'WA', '0', u'Python 2', 'http://www.codeforces.com/contest/584/submission/13440624'), ('2015-10-06 22:24:51', u'http://www.codeforces.com/problemset/problem/584/A', u'Olesya and Rodion', 'CE', '0', u'GNU C++', 'http://www.codeforces.com/contest/584/submission/13442261'), ('2015-10-06 22:25:07', u'http://www.codeforces.com/problemset/problem/584/A', u'Olesya and Rodion', 'CE', '0', u'Python 2', 'http://www.codeforces.com/contest/584/submission/13442319'), ('2015-10-06 22:26:42', u'http://www.codeforces.com/problemset/problem/584/A', u'Olesya and Rodion', 'AC', '100', u'Python 2', 'http://www.codeforces.com/contest/584/submission/13442651'), ('2015-10-06 22:52:47', u'http://www.codeforces.com/problemset/problem/584/B', u'Kolya and Tanya ', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/584/submission/13447777'), ('2015-10-06 22:58:59', u'http://www.codeforces.com/problemset/problem/584/B', u'Kolya and Tanya ', 'AC', '100', u'Python 2', 'http://www.codeforces.com/contest/584/submission/13448876'), ('2015-10-06 23:14:57', u'http://www.codeforces.com/problemset/problem/584/C', u'Marina and Vasya', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/584/submission/13451585'), ('2015-10-06 23:35:46', u'http://www.codeforces.com/problemset/problem/584/C', u'Marina and Vasya', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/584/submission/13454813'), ('2015-10-06 23:44:55', u'http://www.codeforces.com/problemset/problem/584/C', u'Marina and Vasya', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/584/submission/13456081'), ('2015-10-07 01:04:27', u'http://www.codeforces.com/problemset/problem/584/B', u'Kolya and Tanya ', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/584/submission/13460503'), ('2015-10-07 18:02:31', u'http://www.codeforces.com/problemset/problem/584/A', u'Olesya and Rodion', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/584/submission/13473005'), ('2015-10-08 21:26:54', u'http://www.codeforces.com/problemset/problem/92/B', u'Binary Number', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/92/submission/13496730'), ('2015-10-09 01:22:57', u'http://www.codeforces.com/problemset/problem/456/A', u'Laptops', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/456/submission/13500243'), ('2015-10-09 01:35:03', u'http://www.codeforces.com/problemset/problem/52/A', u'123-sequence', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/52/submission/13500398'), ('2015-10-09 06:38:55', u'http://www.codeforces.com/problemset/problem/266/B', u'Queue at the School', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/266/submission/13502318'), ('2015-10-09 06:45:08', u'http://www.codeforces.com/problemset/problem/479/A', u'Expression', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/479/submission/13502351'), ('2015-10-09 06:46:35', u'http://www.codeforces.com/problemset/problem/479/A', u'Expression', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/479/submission/13502358'), ('2015-10-09 06:50:39', u'http://www.codeforces.com/problemset/problem/61/A', u'Ultra-Fast Mathematician', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/61/submission/13502387'), ('2015-10-09 07:03:29', u'http://www.codeforces.com/problemset/problem/462/B', u'Appleman and Card Game', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/462/submission/13502451'), ('2015-10-09 07:05:19', u'http://www.codeforces.com/problemset/problem/462/B', u'Appleman and Card Game', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/462/submission/13502463'), ('2015-10-09 07:06:54', u'http://www.codeforces.com/problemset/problem/462/B', u'Appleman and Card Game', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/462/submission/13502474'), ('2015-10-09 22:47:48', u'http://www.codeforces.com/problemset/problem/266/B', u'Queue at the School', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/266/submission/13514395'), ('2015-10-09 23:14:22', u'http://www.codeforces.com/problemset/problem/525/B', u'Pasha and String', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/525/submission/13514840'), ('2015-10-09 23:30:20', u'http://www.codeforces.com/problemset/problem/525/B', u'Pasha and String', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/525/submission/13515120'), ('2015-10-11 04:08:55', u'http://www.codeforces.com/problemset/problem/478/A', u'Initial Bet', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/478/submission/13538926'), ('2015-10-11 04:10:18', u'http://www.codeforces.com/problemset/problem/478/A', u'Initial Bet', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/478/submission/13538931'), ('2015-10-11 04:28:02', u'http://www.codeforces.com/problemset/problem/459/B', u'Pashmak and Flowers', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/459/submission/13538989'), ('2015-10-11 04:29:51', u'http://www.codeforces.com/problemset/problem/459/B', u'Pashmak and Flowers', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/459/submission/13538995'), ('2015-10-11 04:37:27', u'http://www.codeforces.com/problemset/problem/459/B', u'Pashmak and Flowers', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/459/submission/13539018'), ('2015-10-25 14:34:14', u'http://www.codeforces.com/problemset/problem/591/A', u"Wizards' Duel", 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/591/submission/13836193'), ('2015-10-25 14:50:25', u'http://www.codeforces.com/problemset/problem/591/B', u'Rebranding', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/591/submission/13839725'), ('2015-10-25 15:34:56', u'http://www.codeforces.com/problemset/problem/591/C', u'Median Smoothing', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/591/submission/13845641'), ('2015-10-25 15:38:20', u'http://www.codeforces.com/problemset/problem/591/C', u'Median Smoothing', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/591/submission/13846000'), ('2015-10-25 22:51:09', u'http://www.codeforces.com/problemset/problem/591/B', u'Rebranding', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/591/submission/13857177'), ('2015-10-25 23:23:19', u'http://www.codeforces.com/problemset/problem/591/B', u'Rebranding', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/591/submission/13857740'), ('2015-10-26 10:46:53', u'http://www.codeforces.com/problemset/problem/591/B', u'Rebranding', 'RE', '0', u'GNU C++', 'http://www.codeforces.com/contest/591/submission/13866457'), ('2015-10-26 10:53:43', u'http://www.codeforces.com/problemset/problem/591/B', u'Rebranding', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/591/submission/13866518'), ('2015-10-26 19:50:00', u'http://www.codeforces.com/problemset/problem/160/B', u'Unlucky Ticket', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/160/submission/13873974'), ('2015-10-27 02:45:23', u'http://www.codeforces.com/problemset/problem/99/A', u'Help Far Away Kingdom', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/99/submission/13881024'), ('2015-10-27 03:13:34', u'http://www.codeforces.com/problemset/problem/12/B', u'Correct Solution?', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/12/submission/13881211'), ('2015-10-28 06:05:19', u'http://www.codeforces.com/problemset/problem/405/C', u'Unusual Product', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/405/submission/13906955'), ('2015-10-28 08:04:56', u'http://www.codeforces.com/problemset/problem/270/B', u'Multithreading', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/270/submission/13907587'), ('2015-10-28 21:42:49', u'http://www.codeforces.com/problemset/problem/525/C', u'Ilya and Sticks', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/525/submission/13918621'), ('2015-10-28 23:48:03', u'http://www.codeforces.com/problemset/problem/285/C', u'Building Permutation', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/285/submission/13920882'), ('2015-10-28 23:49:59', u'http://www.codeforces.com/problemset/problem/285/C', u'Building Permutation', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/285/submission/13920913'), ('2015-10-30 10:34:56', u'http://www.codeforces.com/problemset/problem/245/A', u'System Administrator', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/245/submission/13946807'), ('2015-10-30 10:49:01', u'http://www.codeforces.com/problemset/problem/102/B', u'Sum of Digits', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/102/submission/13946899'), ('2015-10-30 10:53:35', u'http://www.codeforces.com/problemset/problem/102/B', u'Sum of Digits', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/102/submission/13946926'), ('2015-10-31 22:14:30', u'http://www.codeforces.com/problemset/problem/592/A', u'PawnChess', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/592/submission/13975670'), ('2015-10-31 22:29:27', u'http://www.codeforces.com/problemset/problem/592/B', u'The Monster and the Squirrel', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/592/submission/13978806'), ('2015-10-31 22:58:55', u'http://www.codeforces.com/problemset/problem/592/C', u'The Big Race', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/592/submission/13983585'), ('2015-10-31 23:11:05', u'http://www.codeforces.com/problemset/problem/592/C', u'The Big Race', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/592/submission/13985339'), ('2015-11-01 01:46:31', u'http://www.codeforces.com/problemset/problem/592/C', u'The Big Race', 'WA', '0', u'Python 2', 'http://www.codeforces.com/contest/592/submission/13993129'), ('2015-11-01 02:00:03', u'http://www.codeforces.com/problemset/problem/592/C', u'The Big Race', 'WA', '0', u'Python 2', 'http://www.codeforces.com/contest/592/submission/13993447'), ('2015-11-01 02:04:32', u'http://www.codeforces.com/problemset/problem/592/C', u'The Big Race', 'WA', '0', u'Python 2', 'http://www.codeforces.com/contest/592/submission/13993623'), ('2015-11-01 10:48:24', u'http://www.codeforces.com/problemset/problem/592/A', u'PawnChess', 'CE', '0', u'Python 2', 'http://www.codeforces.com/contest/592/submission/14000480'), ('2015-11-01 10:48:46', u'http://www.codeforces.com/problemset/problem/592/A', u'PawnChess', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/592/submission/14000483'), ('2015-11-03 02:17:02', u'http://www.codeforces.com/problemset/problem/592/C', u'The Big Race', 'AC', '100', u'Python 2', 'http://www.codeforces.com/contest/592/submission/14033816'), ('2015-11-03 02:30:31', u'http://www.codeforces.com/problemset/problem/592/C', u'The Big Race', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/592/submission/14033957'), ('2015-11-04 14:58:56', u'http://www.codeforces.com/problemset/problem/339/B', u'Xenia and Ringroad', 'RE', '0', u'GNU C++', 'http://www.codeforces.com/contest/339/submission/14054303'), ('2015-11-04 15:00:05', u'http://www.codeforces.com/problemset/problem/339/B', u'Xenia and Ringroad', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/339/submission/14054317'), ('2015-11-04 15:29:08', u'http://www.codeforces.com/problemset/problem/11/A', u'Increasing Sequence', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/11/submission/14054735'), ('2015-11-04 16:30:38', u'http://www.codeforces.com/problemset/problem/567/A', u'Lineland Mail', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/567/submission/14055720'), ('2015-11-05 10:34:36', u'http://www.codeforces.com/problemset/problem/593/A', u'2Char', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/593/submission/14082176'), ('2015-11-06 21:20:07', u'http://www.codeforces.com/problemset/problem/159/C', u'String Manipulation 1.0', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/159/submission/14109516'), ('2015-11-06 21:47:19', u'http://www.codeforces.com/problemset/problem/159/C', u'String Manipulation 1.0', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/159/submission/14109921'), ('2015-11-08 22:05:35', u'http://www.codeforces.com/problemset/problem/595/A', u'Vitaly and Night', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/595/submission/14145703'), ('2015-11-08 22:44:17', u'http://www.codeforces.com/problemset/problem/595/B', u'Pasha and Phone', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/595/submission/14150515'), ('2015-11-08 23:28:37', u'http://www.codeforces.com/problemset/problem/595/B', u'Pasha and Phone', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/595/submission/14155293'), ('2015-11-16 01:07:14', u'http://www.codeforces.com/problemset/problem/596/A', u'Wilbur and Swimming Pool', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/596/submission/14288508'), ('2015-11-16 01:09:02', u'http://www.codeforces.com/problemset/problem/596/B', u'Wilbur and Array', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/596/submission/14288537'), ('2015-11-16 01:16:40', u'http://www.codeforces.com/problemset/problem/596/A', u'Wilbur and Swimming Pool', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/596/submission/14288651'), ('2015-11-16 01:17:38', u'http://www.codeforces.com/problemset/problem/596/A', u'Wilbur and Swimming Pool', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/596/submission/14288673'), ('2015-12-01 21:15:25', u'http://www.codeforces.com/problemset/problem/604/A', u'Uncowed Forces', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/604/submission/14587410'), ('2015-12-01 21:21:57', u'http://www.codeforces.com/problemset/problem/604/A', u'Uncowed Forces', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/604/submission/14588907'), ('2015-12-01 21:25:25', u'http://www.codeforces.com/problemset/problem/604/A', u'Uncowed Forces', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/604/submission/14589670'), ('2015-12-01 21:50:29', u'http://www.codeforces.com/problemset/problem/604/B', u'More Cowbell', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/604/submission/14593977'), ('2015-12-09 21:53:15', u'http://www.codeforces.com/problemset/problem/606/C', u'Sorting Railway Cars', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/606/submission/14718869'), ('2015-12-09 22:14:26', u'http://www.codeforces.com/problemset/problem/606/C', u'Sorting Railway Cars', 'HCK', '-50', u'GNU C++', 'http://www.codeforces.com/contest/606/submission/14722405'), ('2015-12-09 22:44:59', u'http://www.codeforces.com/problemset/problem/606/A', u'Magic Spheres', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/606/submission/14726450'), ('2015-12-09 22:55:27', u'http://www.codeforces.com/problemset/problem/606/A', u'Magic Spheres', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/606/submission/14727619'), ('2015-12-09 22:58:11', u'http://www.codeforces.com/problemset/problem/606/A', u'Magic Spheres', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/606/submission/14727938'), ('2015-12-09 23:00:38', u'http://www.codeforces.com/problemset/problem/606/A', u'Magic Spheres', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/606/submission/14728208'), ('2015-12-15 21:36:55', u'http://www.codeforces.com/problemset/problem/580/A', u'Kefa and First Steps', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/580/submission/14817821'), ('2015-12-17 18:01:21', u'http://www.codeforces.com/problemset/problem/598/B', u'Queries on a String', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/598/submission/14845709'), ('2015-12-17 18:09:23', u'http://www.codeforces.com/problemset/problem/598/B', u'Queries on a String', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/598/submission/14845795'), ('2015-12-17 18:55:21', u'http://www.codeforces.com/problemset/problem/597/A', u'Divisibility', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/597/submission/14846361'), ('2015-12-17 18:56:54', u'http://www.codeforces.com/problemset/problem/597/A', u'Divisibility', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/597/submission/14846374'), ('2015-12-17 19:02:03', u'http://www.codeforces.com/problemset/problem/597/A', u'Divisibility', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/597/submission/14846436'), ('2015-12-17 19:05:46', u'http://www.codeforces.com/problemset/problem/597/A', u'Divisibility', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/597/submission/14846492'), ('2015-12-22 22:54:31', u'http://www.codeforces.com/problemset/problem/609/B', u'\u041a\u043d\u0438\u0433\u0430 - \u043b\u0443\u0447\u0448\u0438\u0439 \u043f\u043e\u0434\u0430\u0440\u043e\u043a', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/609/submission/14928518'), ('2015-12-23 01:45:32', u'http://www.codeforces.com/problemset/problem/609/C', u'Load Balancing', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/609/submission/14930319'), ('2015-12-23 01:48:44', u'http://www.codeforces.com/problemset/problem/609/C', u'Load Balancing', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/609/submission/14930347'), ('2015-12-23 02:12:32', u'http://www.codeforces.com/problemset/problem/609/C', u'Load Balancing', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/609/submission/14930527'), ('2015-12-23 02:14:12', u'http://www.codeforces.com/problemset/problem/609/C', u'Load Balancing', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/609/submission/14930545'), ('2015-12-24 03:46:52', u'http://www.codeforces.com/problemset/problem/608/A', u'Saitama Destroys Hotel', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/608/submission/14961192'), ('2015-12-24 03:56:12', u'http://www.codeforces.com/problemset/problem/600/B', u'Queries about less or equal elements', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/600/submission/14961257'), ('2015-12-24 04:11:24', u'http://www.codeforces.com/problemset/problem/600/A', u'Extract Numbers', 'AC', '100', u'PyPy 2', 'http://www.codeforces.com/contest/600/submission/14961343'), ('2015-12-26 00:19:54', u'http://www.codeforces.com/problemset/problem/600/B', u'Queries about less or equal elements', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/600/submission/15021384'), ('2015-12-31 02:06:51', u'http://www.codeforces.com/problemset/problem/611/A', u'New Year and Days', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/611/submission/15129041'), ('2015-12-31 02:07:53', u'http://www.codeforces.com/problemset/problem/611/A', u'New Year and Days', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/611/submission/15129051'), ('2015-12-31 02:39:02', u'http://www.codeforces.com/problemset/problem/611/B', u'New Year and Old Property', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/611/submission/15129360'), ('2016-01-01 00:08:10', u'http://www.codeforces.com/problemset/problem/611/B', u'New Year and Old Property', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/611/submission/15140290'), ('2016-01-02 01:17:28', u'http://www.codeforces.com/problemset/problem/610/A', u'Pasha and Stick', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/610/submission/15152467'), ('2016-01-02 02:05:01', u'http://www.codeforces.com/problemset/problem/610/B', u'Vika and Squares', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/610/submission/15152883'), ('2016-01-05 11:52:15', u'http://www.codeforces.com/problemset/problem/189/A', u'Cut Ribbon', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/189/submission/15187913'), ('2016-01-05 12:26:38', u'http://www.codeforces.com/problemset/problem/489/C', u'Given Length and Sum of Digits...', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/489/submission/15188193'), ('2016-01-06 20:03:28', u'http://www.codeforces.com/problemset/problem/570/C', u'Replacement', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/570/submission/15208011'), ('2016-01-06 20:09:17', u'http://www.codeforces.com/problemset/problem/570/C', u'Replacement', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/570/submission/15208096'), ('2016-01-09 14:53:09', u'http://www.codeforces.com/problemset/problem/615/A', u'Bulbs', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/615/submission/15266906'), ('2016-01-14 22:12:10', u'http://www.codeforces.com/problemset/problem/614/A', u'Link/Cut Tree', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/614/submission/15348242'), ('2016-01-14 22:19:51', u'http://www.codeforces.com/problemset/problem/614/A', u'Link/Cut Tree', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/614/submission/15350653'), ('2016-01-14 22:26:04', u'http://www.codeforces.com/problemset/problem/614/A', u'Link/Cut Tree', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/614/submission/15352533'), ('2016-01-14 22:45:52', u'http://www.codeforces.com/problemset/problem/614/B', u"Gena's Code", 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/614/submission/15357739'), ('2016-01-14 22:49:49', u'http://www.codeforces.com/problemset/problem/614/B', u"Gena's Code", 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/614/submission/15358770'), ('2016-01-14 23:13:26', u'http://www.codeforces.com/problemset/problem/614/B', u"Gena's Code", 'TLE', '0', u'PyPy 2', 'http://www.codeforces.com/contest/614/submission/15364083'), ('2016-01-14 23:17:00', u'http://www.codeforces.com/problemset/problem/614/A', u'Link/Cut Tree', 'HCK', '-50', u'GNU C++', 'http://www.codeforces.com/contest/614/submission/15364825'), ('2016-01-15 01:46:02', u'http://www.codeforces.com/problemset/problem/614/A', u'Link/Cut Tree', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/614/submission/15376622'), ('2016-01-15 01:50:32', u'http://www.codeforces.com/problemset/problem/614/A', u'Link/Cut Tree', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/614/submission/15376775'), ('2016-01-15 02:04:58', u'http://www.codeforces.com/problemset/problem/614/B', u"Gena's Code", 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/614/submission/15377119'), ('2016-01-31 01:01:03', u'http://www.codeforces.com/problemset/problem/618/A', u'Slime Combining', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/618/submission/15684756'), ('2016-01-31 01:44:18', u'http://www.codeforces.com/problemset/problem/618/B', u'Guess the Permutation', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/618/submission/15685235'), ('2016-02-01 07:17:18', u'http://www.codeforces.com/problemset/problem/621/A', u'Wet Shark and Odd and Even', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/621/submission/15722644'), ('2016-02-01 07:40:26', u'http://www.codeforces.com/problemset/problem/621/B', u'Wet Shark and Bishops', 'CE', '0', u'GNU C++', 'http://www.codeforces.com/contest/621/submission/15722848'), ('2016-02-01 07:40:45', u'http://www.codeforces.com/problemset/problem/621/B', u'Wet Shark and Bishops', 'RE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15722852'), ('2016-02-01 07:59:16', u'http://www.codeforces.com/problemset/problem/621/B', u'Wet Shark and Bishops', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15723041'), ('2016-02-01 08:01:58', u'http://www.codeforces.com/problemset/problem/621/B', u'Wet Shark and Bishops', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15723074'), ('2016-02-01 08:05:42', u'http://www.codeforces.com/problemset/problem/621/B', u'Wet Shark and Bishops', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15723107'), ('2016-02-01 08:07:51', u'http://www.codeforces.com/problemset/problem/621/B', u'Wet Shark and Bishops', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15723123'), ('2016-02-22 00:05:38', u'http://www.codeforces.com/problemset/problem/629/A', u'Far Relative\u2019s Birthday Cake', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/629/submission/16265987'), ('2016-02-28 19:19:12', u'http://www.codeforces.com/problemset/problem/629/B', u'Far Relative\u2019s Problem', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/629/submission/16404240'), ('2016-02-28 20:35:59', u'http://www.codeforces.com/problemset/problem/630/C', u'Lucky Numbers', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/630/submission/16405407'), ('2016-02-28 20:37:18', u'http://www.codeforces.com/problemset/problem/630/C', u'Lucky Numbers', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/630/submission/16405419'), ('2016-02-28 20:41:06', u'http://www.codeforces.com/problemset/problem/630/C', u'Lucky Numbers', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/630/submission/16405456'), ('2016-07-31 00:44:37', u'http://www.codeforces.com/problemset/problem/699/B', u'One Bomb', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19524584'), ('2016-07-31 00:49:29', u'http://www.codeforces.com/problemset/problem/699/B', u'One Bomb', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19524679'), ('2016-07-31 00:58:14', u'http://www.codeforces.com/problemset/problem/699/B', u'One Bomb', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19524873'), ('2016-07-31 18:30:30', u'http://www.codeforces.com/problemset/problem/699/B', u'One Bomb', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19538526'), ('2016-07-31 18:49:30', u'http://www.codeforces.com/problemset/problem/699/B', u'One Bomb', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19538834'), ('2016-07-31 19:01:53', u'http://www.codeforces.com/problemset/problem/699/A', u'Launch of Collider', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19539062'), ('2016-07-31 20:11:24', u'http://www.codeforces.com/problemset/problem/701/A', u'Cards', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/701/submission/19540208'), ('2016-07-31 20:35:26', u'http://www.codeforces.com/problemset/problem/701/B', u'Cells Not Under Attack', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/701/submission/19540595'), ('2016-07-31 20:39:11', u'http://www.codeforces.com/problemset/problem/701/B', u'Cells Not Under Attack', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/701/submission/19540660'), ('2016-08-02 03:12:36', u'http://www.codeforces.com/problemset/problem/702/A', u'Maximum Increase', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568636'), ('2016-08-02 03:15:28', u'http://www.codeforces.com/problemset/problem/702/A', u'Maximum Increase', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568664'), ('2016-08-02 03:16:08', u'http://www.codeforces.com/problemset/problem/702/A', u'Maximum Increase', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568668'), ('2016-08-02 03:23:31', u'http://www.codeforces.com/problemset/problem/702/B', u'Powers of Two', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568738'), ('2016-08-02 03:25:16', u'http://www.codeforces.com/problemset/problem/702/B', u'Powers of Two', 'TLE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568745'), ('2016-08-04 20:47:23', u'http://www.codeforces.com/problemset/problem/703/A', u'Mishka and Game', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19617826'), ('2016-08-04 20:49:28', u'http://www.codeforces.com/problemset/problem/703/A', u'Mishka and Game', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19619139'), ('2016-08-04 21:22:13', u'http://www.codeforces.com/problemset/problem/703/B', u'Mishka and trip', 'SK', '0', u'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19624817'), ('2016-08-04 22:36:40', u'http://www.codeforces.com/problemset/problem/703/B', u'Mishka and trip', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19633551'), ('2016-08-05 01:11:14', u'http://www.codeforces.com/problemset/problem/703/B', u'Mishka and trip', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19638245'), ('2016-08-08 15:49:19', u'http://www.codeforces.com/problemset/problem/705/A', u'Hulk', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/705/submission/19725753'), ('2016-08-08 18:25:13', u'http://www.codeforces.com/problemset/problem/705/B', u'Spider Man', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/705/submission/19728563'), ('2016-08-11 22:10:00', u'http://www.codeforces.com/problemset/problem/706/A', u'Beru-taxi', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19788500'), ('2016-08-11 22:19:02', u'http://www.codeforces.com/problemset/problem/706/B', u'Interesting drink', 'RE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19792085'), ('2016-08-11 22:29:00', u'http://www.codeforces.com/problemset/problem/706/B', u'Interesting drink', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19794671'), ('2016-08-11 22:41:28', u'http://www.codeforces.com/problemset/problem/706/B', u'Interesting drink', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19797228'), ('2016-08-12 01:49:03', u'http://www.codeforces.com/problemset/problem/706/A', u'Beru-taxi', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19812426'), ('2016-08-12 02:19:20', u'http://www.codeforces.com/problemset/problem/706/A', u'Beru-taxi', 'CE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19813299'), ('2016-08-12 02:22:25', u'http://www.codeforces.com/problemset/problem/706/A', u'Beru-taxi', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/706/submission/19813362'), ('2016-08-14 19:27:06', u'http://www.codeforces.com/problemset/problem/702/B', u'Powers of Two', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/702/submission/19869883'), ('2016-08-14 20:27:13', u'http://www.codeforces.com/problemset/problem/706/C', u'Hard problem', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/706/submission/19870767'), ('2016-08-15 04:49:12', u'http://www.codeforces.com/problemset/problem/706/D', u"Vasiliy's Multiset", 'RE', '0', u'GNU C++', 'http://www.codeforces.com/contest/706/submission/19877506'), ('2016-08-15 04:55:02', u'http://www.codeforces.com/problemset/problem/706/D', u"Vasiliy's Multiset", 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/706/submission/19877543'), ('2016-08-15 06:38:23', u'http://www.codeforces.com/problemset/problem/706/D', u"Vasiliy's Multiset", 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/706/submission/19878193'), ('2016-08-17 22:37:54', u'http://www.codeforces.com/problemset/problem/706/D', u"Vasiliy's Multiset", 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/706/submission/19932138'), ('2016-08-20 15:22:16', u'http://www.codeforces.com/problemset/problem/29/C', u'Mail Stamps', 'CE', '0', u'GNU C++', 'http://www.codeforces.com/contest/29/submission/19979318'), ('2016-08-20 15:22:44', u'http://www.codeforces.com/problemset/problem/29/C', u'Mail Stamps', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/29/submission/19979332'), ('2016-08-20 16:20:32', u'http://www.codeforces.com/problemset/problem/637/B', u'Chat Order', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/637/submission/19980245'), ('2016-08-20 16:22:06', u'http://www.codeforces.com/problemset/problem/637/B', u'Chat Order', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/637/submission/19980267'), ('2016-08-20 16:25:04', u'http://www.codeforces.com/problemset/problem/637/B', u'Chat Order', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/637/submission/19980309'), ('2016-08-20 17:25:07', u'http://www.codeforces.com/problemset/problem/622/C', u'Not Equal on a Segment', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/622/submission/19981265'), ('2016-08-20 17:30:50', u'http://www.codeforces.com/problemset/problem/622/C', u'Not Equal on a Segment', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/622/submission/19981354'), ('2016-08-20 18:39:54', u'http://www.codeforces.com/problemset/problem/707/A', u"Brain's Photos", 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/707/submission/19983584'), ('2016-08-20 19:05:41', u'http://www.codeforces.com/problemset/problem/707/B', u'Bakery', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/707/submission/19990875'), ('2016-08-21 02:49:44', u'http://www.codeforces.com/problemset/problem/707/C', u'Pythagorean Triples', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/707/submission/20013751'), ('2016-08-24 06:34:33', u'http://www.codeforces.com/problemset/problem/710/B', u'Optimal Point on a Line', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096202'), ('2016-08-24 06:44:27', u'http://www.codeforces.com/problemset/problem/710/B', u'Optimal Point on a Line', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096285'), ('2016-08-24 06:49:56', u'http://www.codeforces.com/problemset/problem/710/A', u'King Moves', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096337'), ('2016-08-24 06:58:51', u'http://www.codeforces.com/problemset/problem/710/C', u'Magic Odd Square', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096421'), ('2016-08-24 07:05:26', u'http://www.codeforces.com/problemset/problem/710/C', u'Magic Odd Square', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096477'), ('2016-08-24 07:07:46', u'http://www.codeforces.com/problemset/problem/710/C', u'Magic Odd Square', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096494'), ('2016-08-25 05:52:47', u'http://www.codeforces.com/problemset/problem/709/A', u'Juicer', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/709/submission/20140096'), ('2016-08-25 06:01:00', u'http://www.codeforces.com/problemset/problem/709/C', u'Letters Cyclic Shift', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/709/submission/20140181'), ('2016-08-25 06:04:24', u'http://www.codeforces.com/problemset/problem/709/C', u'Letters Cyclic Shift', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/709/submission/20140220'), ('2016-08-25 06:05:03', u'http://www.codeforces.com/problemset/problem/709/C', u'Letters Cyclic Shift', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/709/submission/20140228'), ('2016-08-25 15:38:47', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'TLE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20150798'), ('2016-08-25 17:26:47', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'RE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20152979'), ('2016-08-25 17:28:05', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'RE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153009'), ('2016-08-25 17:29:43', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'RE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153046'), ('2016-08-25 17:33:09', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'RE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153146'), ('2016-08-25 17:35:27', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'RE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153204'), ('2016-08-25 17:40:33', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'RE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153304'), ('2016-08-25 17:41:24', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'RE', '0', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153316'), ('2016-08-25 17:47:30', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153471'), ('2016-08-25 17:50:56', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153564'), ('2016-08-25 17:52:06', u'http://www.codeforces.com/problemset/problem/704/A', u'Thor', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/704/submission/20153599'), ('2016-08-25 17:53:50', u'http://www.codeforces.com/problemset/problem/704/A', u'Thor', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/704/submission/20153653'), ('2016-08-25 17:59:43', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153767'), ('2016-08-25 18:03:16', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153836'), ('2016-08-25 18:05:03', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153878'), ('2016-08-25 18:09:01', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153955'), ('2016-08-25 18:10:53', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154001'), ('2016-08-25 18:13:15', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154058'), ('2016-08-25 18:15:21', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154102'), ('2016-08-25 18:16:40', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154129'), ('2016-08-25 18:23:26', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154295'), ('2016-08-25 18:24:26', u'http://www.codeforces.com/problemset/problem/705/C', u'Thor', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154322'), ('2016-08-29 10:50:32', u'http://www.codeforces.com/problemset/problem/710/C', u'Magic Odd Square', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/710/submission/20222968'), ('2016-08-29 17:43:28', u'http://www.codeforces.com/problemset/problem/711/A', u'Bus to Udayland', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/711/submission/20230874'), ('2016-08-29 17:48:47', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/711/submission/20232719'), ('2016-08-29 17:55:00', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20234607'), ('2016-08-29 18:08:37', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20238630'), ('2016-08-29 18:11:38', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20239424'), ('2016-08-29 18:21:50', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20241874'), ('2016-08-29 18:36:36', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20245231'), ('2016-08-29 18:50:27', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'CE', '0', u'GNU C++', 'http://www.codeforces.com/contest/711/submission/20247880'), ('2016-08-29 18:50:49', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20247939'), ('2016-08-29 21:34:54', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20256999'), ('2016-08-29 22:47:30', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20260046'), ('2016-08-29 22:49:03', u'http://www.codeforces.com/problemset/problem/711/B', u'Chris and Magic Square', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20260094'), ('2016-09-03 21:04:35', u'http://www.codeforces.com/problemset/problem/510/B', u'Fox And Two Dots', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/510/submission/20365149'), ('2016-09-03 22:14:53', u'http://www.codeforces.com/problemset/problem/129/B', u'Students and Shoelaces', 'RE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/129/submission/20366343'), ('2016-09-03 22:19:35', u'http://www.codeforces.com/problemset/problem/129/B', u'Students and Shoelaces', 'RE', '0', u'GNU C++', 'http://www.codeforces.com/contest/129/submission/20366460'), ('2016-09-03 23:04:55', u'http://www.codeforces.com/problemset/problem/129/B', u'Students and Shoelaces', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/129/submission/20367405'), ('2016-09-03 23:09:28', u'http://www.codeforces.com/problemset/problem/129/B', u'Students and Shoelaces', 'TLE', '0', u'GNU C++', 'http://www.codeforces.com/contest/129/submission/20367491'), ('2016-09-03 23:44:56', u'http://www.codeforces.com/problemset/problem/129/B', u'Students and Shoelaces', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/129/submission/20368170'), ('2016-09-03 23:54:28', u'http://www.codeforces.com/problemset/problem/129/B', u'Students and Shoelaces', 'WA', '0', u'GNU C++', 'http://www.codeforces.com/contest/129/submission/20368355'), ('2016-09-03 23:58:44', u'http://www.codeforces.com/problemset/problem/129/B', u'Students and Shoelaces', 'AC', '100', u'GNU C++', 'http://www.codeforces.com/contest/129/submission/20368443'), ('2016-09-04 00:00:06', u'http://www.codeforces.com/problemset/problem/300/B', u'Coach', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/300/submission/20368473'), ('2016-09-04 00:00:23', u'http://www.codeforces.com/problemset/problem/129/B', u'Students and Shoelaces', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/129/submission/20368478'), ('2016-09-04 00:57:23', u'http://www.codeforces.com/problemset/problem/300/B', u'Coach', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/300/submission/20369438'), ('2016-09-04 01:05:04', u'http://www.codeforces.com/problemset/problem/300/B', u'Coach', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/300/submission/20369545'), ('2016-09-04 01:14:44', u'http://www.codeforces.com/problemset/problem/300/B', u'Coach', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/300/submission/20369700'), ('2016-09-05 05:28:45', u'http://www.codeforces.com/problemset/problem/602/C', u'The Two Routes', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/602/submission/20391156'), ('2016-09-12 19:52:06', u'http://www.codeforces.com/problemset/problem/712/A', u'Memory and Crow', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/712/submission/20550755'), ('2016-09-12 20:01:01', u'http://www.codeforces.com/problemset/problem/712/B', u'Memory and Trident', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/712/submission/20550916'), ('2016-09-12 20:50:03', u'http://www.codeforces.com/problemset/problem/712/C', u'Memory and De-Evolution', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/712/submission/20551627'), ('2016-09-12 21:16:55', u'http://www.codeforces.com/problemset/problem/712/C', u'Memory and De-Evolution', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/712/submission/20552025'), ('2016-09-17 22:47:03', u'http://www.codeforces.com/problemset/problem/716/A', u'Crazy Computer', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/716/submission/20714780'), ('2016-09-17 23:47:10', u'http://www.codeforces.com/problemset/problem/716/B', u'Complete the Word', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/716/submission/20716899'), ('2016-09-17 23:48:25', u'http://www.codeforces.com/problemset/problem/716/B', u'Complete the Word', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/716/submission/20716935'), ('2016-09-21 18:03:35', u'http://www.codeforces.com/problemset/problem/716/B', u'Complete the Word', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/716/submission/20794436'), ('2016-09-23 18:38:43', u'http://www.codeforces.com/problemset/problem/719/A', u'Vitya in the Countryside', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20837817'), ('2016-09-23 18:40:43', u'http://www.codeforces.com/problemset/problem/719/A', u'Vitya in the Countryside', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20838364'), ('2016-09-23 18:42:38', u'http://www.codeforces.com/problemset/problem/719/A', u'Vitya in the Countryside', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20839135'), ('2016-09-23 18:44:24', u'http://www.codeforces.com/problemset/problem/719/A', u'Vitya in the Countryside', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20840020'), ('2016-09-23 18:45:54', u'http://www.codeforces.com/problemset/problem/719/A', u'Vitya in the Countryside', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20840715'), ('2016-09-23 18:56:54', u'http://www.codeforces.com/problemset/problem/719/B', u'Anatoly and Cockroaches', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20845155'), ('2016-09-23 19:24:28', u'http://www.codeforces.com/problemset/problem/719/C', u'Efim and Strange Grade', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20852944'), ('2016-09-23 19:30:10', u'http://www.codeforces.com/problemset/problem/719/C', u'Efim and Strange Grade', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20854218'), ('2016-09-23 19:46:36', u'http://www.codeforces.com/problemset/problem/719/C', u'Efim and Strange Grade', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20857522'), ('2016-09-23 19:49:31', u'http://www.codeforces.com/problemset/problem/719/C', u'Efim and Strange Grade', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20858071'), ('2016-09-23 20:02:28', u'http://www.codeforces.com/problemset/problem/719/C', u'Efim and Strange Grade', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20860429'), ('2016-10-02 00:45:43', u'http://www.codeforces.com/problemset/problem/721/A', u'One-dimensional Japanese Crossword', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/721/submission/21096198'), ('2016-10-02 00:56:47', u'http://www.codeforces.com/problemset/problem/721/B', u'Passwords', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/721/submission/21096352'), ('2016-10-02 01:22:26', u'http://www.codeforces.com/problemset/problem/721/B', u'Passwords', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/721/submission/21096748'), ('2016-10-02 16:21:19', u'http://www.codeforces.com/problemset/problem/722/A', u'Broken Clock', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/722/submission/21112277'), ('2016-10-02 16:23:01', u'http://www.codeforces.com/problemset/problem/722/A', u'Broken Clock', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/722/submission/21112319'), ('2016-10-02 16:54:23', u'http://www.codeforces.com/problemset/problem/722/B', u'Verse Pattern', 'WA', '0', u'GNU C++11', 'http://www.codeforces.com/contest/722/submission/21113003'), ('2016-10-02 16:56:42', u'http://www.codeforces.com/problemset/problem/722/B', u'Verse Pattern', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/722/submission/21113067'), ('2016-10-05 02:06:14', u'http://www.codeforces.com/problemset/problem/723/A', u'The New Year: Meeting Friends', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/723/submission/21196305'), ('2016-10-05 02:24:17', u'http://www.codeforces.com/problemset/problem/723/B', u'Text Document Analysis', 'AC', '100', u'Python 2', 'http://www.codeforces.com/contest/723/submission/21196529'), ('2017-03-06 05:02:38', u'http://www.codeforces.com/problemset/problem/723/B', u'Text Document Analysis', 'AC', '100', u'Python 2', 'http://www.codeforces.com/contest/723/submission/25275840'), ('2017-03-06 05:03:10', u'http://www.codeforces.com/problemset/problem/723/B', u'Text Document Analysis', 'WA', '0', u'Python 2', 'http://www.codeforces.com/contest/723/submission/25275845'), ('2017-03-06 05:07:21', u'http://www.codeforces.com/problemset/problem/429/B', u'Working out', 'TLE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/429/submission/25275894'), ('2017-03-06 05:08:26', u'http://www.codeforces.com/problemset/problem/429/B', u'Working out', 'AC', '100', u'GNU C++11', 'http://www.codeforces.com/contest/429/submission/25275906'), ('2017-03-06 05:15:08', u'http://www.codeforces.com/problemset/problem/429/B', u'Working out', 'CE', '0', u'GNU C++11', 'http://www.codeforces.com/contest/429/submission/25275955'), ('2018-03-01 04:19:28', u'http://www.codeforces.com/problemset/problem/577/A', u'Multiplication Table', 'RE', '0', u'Python 2', 'http://www.codeforces.com/contest/577/submission/35797975'), ('2018-03-01 04:19:47', u'http://www.codeforces.com/problemset/problem/577/A', u'Multiplication Table', 'AC', '100', u'Python 3', 'http://www.codeforces.com/contest/577/submission/35797984'), ('2019-01-05 01:07:35', u'http://www.codeforces.com/problemsets/acmsguru/problem/99999/345', u'Revolution', 'WA', '0', u'Python 2', '')], - "Spoj": [('2013-08-09 16:13:01', 'https://www.spoj.com/problems/TEST/', u'Life, the Universe, and Everything', 'CE', '0', u'ADA95', ''), ('2013-08-09 16:13:19', 'https://www.spoj.com/problems/TEST/', u'Life, the Universe, and Everything', 'RE', '0', u'C', ''), ('2013-08-09 16:13:50', 'https://www.spoj.com/problems/TEST/', u'Life, the Universe, and Everything', 'RE', '0', u'C', ''), ('2013-08-09 16:15:24', 'https://www.spoj.com/problems/TEST/', u'Life, the Universe, and Everything', 'RE', '0', u'C', ''), ('2013-08-12 10:48:56', 'https://www.spoj.com/problems/TEST/', u'Life, the Universe, and Everything', 'CE', '0', u'ADA95', ''), ('2013-08-12 10:50:14', 'https://www.spoj.com/problems/TEST/', u'Life, the Universe, and Everything', 'CE', '0', u'ADA95', ''), ('2013-08-13 19:11:24', 'https://www.spoj.com/problems/TEST/', u'Life, the Universe, and Everything', 'WA', '0', u'C', ''), ('2013-08-13 19:11:50', 'https://www.spoj.com/problems/TEST/', u'Life, the Universe, and Everything', 'WA', '0', u'C', ''), ('2015-03-24 05:08:29', 'https://www.spoj.com/problems/TEST/', u'Life, the Universe, and Everything', 'AC', '100', u'C', ''), ('2015-03-28 00:47:43', 'https://www.spoj.com/problems/NSTEPS/', u'Number Steps', 'AC', '100', u'C++', ''), ('2015-06-30 03:38:17', 'https://www.spoj.com/problems/FCTRL/', u'Factorial', 'AC', '100', u'CPP', ''), ('2015-06-30 03:41:12', 'https://www.spoj.com/problems/FCTRL/', u'Factorial', 'AC', '100', u'CPP', ''), ('2015-06-30 03:42:49', 'https://www.spoj.com/problems/FCTRL/', u'Factorial', 'AC', '100', u'CPP', ''), ('2015-06-30 04:00:12', 'https://www.spoj.com/problems/FCTRL2/', u'Small factorials', 'AC', '100', u'C', ''), ('2015-06-30 04:16:14', 'https://www.spoj.com/problems/SAMER08F/', u'Feynman', 'AC', '100', u'CPP', ''), ('2015-06-30 04:58:12', 'https://www.spoj.com/problems/LASTDIG/', u'The last digit', 'AC', '100', u'CPP', ''), ('2015-07-25 17:08:08', 'https://www.spoj.com/problems/FARIDA/', u'Princess Farida', 'WA', '0', u'CPP', ''), ('2015-07-25 17:11:03', 'https://www.spoj.com/problems/FARIDA/', u'Princess Farida', 'WA', '0', u'CPP', ''), ('2015-07-25 17:15:01', 'https://www.spoj.com/problems/FARIDA/', u'Princess Farida', 'AC', '100', u'CPP', ''), ('2015-09-26 21:01:26', 'https://www.spoj.com/problems/MUL/', u'Fast Multiplication', 'TLE', '0', u'C++', ''), ('2015-09-26 21:04:40', 'https://www.spoj.com/problems/MUL/', u'Fast Multiplication', 'AC', '100', u'PYTHON', ''), ('2015-12-05 08:37:26', 'https://www.spoj.com/problems/PRIME1/', u'Prime Generator', 'WA', '0', u'C', ''), ('2017-05-15 17:07:43', 'https://www.spoj.com/problems/PRIME1/', u'Prime Generator', 'WA', '0', u'C', ''), ('2018-10-02 23:41:30', 'https://www.spoj.com/problems/ONP/', u'Transform the Expression', 'WA', '0', u'CPP', ''), ('2019-05-26 22:58:02', 'https://www.spoj.com/problems/BACTERIA/', u'SPOJ Custom Test', 'OTH', '0', u'PYTHON3', '')], - "HackerEarth": [('2014-06-17 15:50:52', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', u'Mind Palaces', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/333758'), ('2014-06-17 15:55:06', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', u'Mind Palaces', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/333766'), ('2014-06-17 15:56:59', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', u'Mind Palaces', 'PS', '0', u'C', 'https://www.hackerearth.com/submission/333770'), ('2014-06-17 16:38:24', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', u'Mind Palaces', 'PS', '0', u'C', 'https://www.hackerearth.com/submission/333824'), ('2014-06-17 16:53:23', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', u'Mind Palaces', 'PS', '0', u'C', 'https://www.hackerearth.com/submission/333833'), ('2014-06-17 17:08:55', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/palindromic-numbers-7/', u'Palindromic Numbers', 'AC', '100', u'Python', 'https://www.hackerearth.com/submission/333846'), ('2014-10-02 05:57:34', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', u"Bajirao's Rescue Operation", 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/789146'), ('2014-10-02 06:00:56', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', u"Bajirao's Rescue Operation", 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/789152'), ('2014-10-02 06:20:08', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', u"Bajirao's Rescue Operation", 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/789161'), ('2014-10-02 06:40:22', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', u"Bajirao's Rescue Operation", 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/789173'), ('2014-10-02 06:40:23', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', u"Bajirao's Rescue Operation", 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/789174'), ('2014-10-02 06:40:23', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', u"Bajirao's Rescue Operation", 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/789174'), ('2014-10-02 06:43:40', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', u"Bajirao's Rescue Operation", 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/789180'), ('2014-10-02 06:43:40', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', u"Bajirao's Rescue Operation", 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/789181'), ('2014-10-02 06:51:40', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/complete-string-4/', u'Complete String', 'TLE', '0', u'C++', 'https://www.hackerearth.com/submission/789184'), ('2014-10-02 07:01:47', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/complete-string-4/', u'Complete String', 'TLE', '0', u'C++', 'https://www.hackerearth.com/submission/789187'), ('2014-10-02 07:07:25', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/complete-string-4/', u'Complete String', 'AC', '100', u'C', 'https://www.hackerearth.com/submission/789191'), ('2015-05-30 22:46:15', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/recursive-sums/', u'Recursive Sums', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1866870'), ('2015-05-30 22:47:45', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/recursive-sums/', u'Recursive Sums', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1866905'), ('2015-05-30 22:52:07', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/recursive-sums/', u'Recursive Sums', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1867017'), ('2015-05-30 22:58:10', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/recursive-sums/', u'Recursive Sums', 'AC', '100', u'Python', 'https://www.hackerearth.com/submission/1867183'), ('2015-06-01 22:51:41', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/very-cool-numbers/', u'Very Cool Numbers', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1876428'), ('2015-06-01 23:07:31', 'https://www.hackerearth.com/problem/algorithm/children-love-candies/', u'Children Love Candies', 'PS', '0', u'C', 'https://www.hackerearth.com/submission/1877240'), ('2015-06-01 23:09:05', 'https://www.hackerearth.com/problem/algorithm/children-love-candies/', u'Children Love Candies', 'AC', '100', u'C', 'https://www.hackerearth.com/submission/1877330'), ('2015-06-01 23:18:48', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/very-cool-numbers/', u'Very Cool Numbers', 'PS', '0', u'Python', 'https://www.hackerearth.com/submission/1877835'), ('2015-06-01 23:23:44', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/very-cool-numbers/', u'Very Cool Numbers', 'AC', '100', u'Python', 'https://www.hackerearth.com/submission/1878092'), ('2015-06-01 23:33:08', 'https://www.hackerearth.com/problem/algorithm/andrew-and-max/', u'Andrew and Max', 'AC', '100', u'C', 'https://www.hackerearth.com/submission/1878567'), ('2015-06-01 23:55:56', 'https://www.hackerearth.com/problem/algorithm/zeroshark/', u'ZeroShark', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1879759'), ('2015-06-02 00:11:57', 'https://www.hackerearth.com/problem/algorithm/zeroshark/', u'ZeroShark', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1880558'), ('2015-06-02 00:17:34', 'https://www.hackerearth.com/problem/algorithm/zeroshark/', u'ZeroShark', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1880825'), ('2015-06-04 22:02:21', 'https://www.hackerearth.com/practice/algorithms/string-algorithm/basics-of-string-manipulation/practice-problems/algorithm/terrible-chandu/', u'Terrible Chandu', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/1894925'), ('2015-06-04 22:06:29', 'https://www.hackerearth.com/practice/algorithms/greedy/basics-of-greedy-algorithms/practice-problems/algorithm/chandu-and-consecutive-letters/', u'Chandu and Consecutive Letters', 'AC', '100', u'C', 'https://www.hackerearth.com/submission/1895133'), ('2015-06-04 22:06:29', 'https://www.hackerearth.com/practice/algorithms/greedy/basics-of-greedy-algorithms/practice-problems/algorithm/chandu-and-consecutive-letters/', u'Chandu and Consecutive Letters', 'AC', '100', u'C', 'https://www.hackerearth.com/submission/1895133'), ('2015-06-04 22:10:59', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/prateek-and-his-friends/', u'Prateek and his Friends', 'AC', '100', u'C', 'https://www.hackerearth.com/submission/1895359'), ('2015-06-09 22:03:35', 'https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/algorithm/chandu-and-his-girlfriend/', u'Chandu and his Girlfriend', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/1919932'), ('2015-06-09 22:07:37', 'https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/algorithm/chandu-and-his-girlfriend-returns/', u'Chandu and his Girlfriend Returns', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1920040'), ('2015-06-09 22:12:29', 'https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/algorithm/chandu-and-his-girlfriend-returns/', u'Chandu and his Girlfriend Returns', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1920191'), ('2015-06-09 22:18:14', 'https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/algorithm/chandu-and-his-girlfriend-returns/', u'Chandu and his Girlfriend Returns', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/1920367'), ('2015-06-11 22:05:52', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/discover-the-monk/', u'Discover the Monk', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1930370'), ('2015-06-11 22:09:45', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/discover-the-monk/', u'Discover the Monk', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1930499'), ('2015-06-11 22:15:07', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/discover-the-monk/', u'Discover the Monk', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/1930694'), ('2015-06-11 22:28:20', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', u"Monk's Encounter with Polynomial", 'WA', '0', u'C', 'https://www.hackerearth.com/submission/1931189'), ('2015-06-11 22:28:38', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', u"Monk's Encounter with Polynomial", 'PS', '0', u'C', 'https://www.hackerearth.com/submission/1931196'), ('2015-06-11 22:29:06', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', u"Monk's Encounter with Polynomial", 'PS', '0', u'C', 'https://www.hackerearth.com/submission/1931215'), ('2015-06-11 22:30:47', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', u"Monk's Encounter with Polynomial", 'PS', '0', u'C', 'https://www.hackerearth.com/submission/1931281'), ('2015-06-11 22:32:24', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', u"Monk's Encounter with Polynomial", 'PS', '0', u'C', 'https://www.hackerearth.com/submission/1931332'), ('2015-06-11 22:34:35', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', u"Monk's Encounter with Polynomial", 'PS', '0', u'C', 'https://www.hackerearth.com/submission/1931416'), ('2015-07-01 22:36:39', 'https://www.hackerearth.com/practice/algorithms/graphs/flood-fill-algorithm/practice-problems/algorithm/the-rise-of-the-weird-things-1/', u'The rise of the weird... things [1]', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2037234'), ('2015-07-01 22:39:00', 'https://www.hackerearth.com/practice/algorithms/graphs/flood-fill-algorithm/practice-problems/algorithm/the-rise-of-the-weird-things-1/', u'The rise of the weird... things [1]', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2037359'), ('2015-07-01 23:06:20', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/the-savior-3/', u'The savior? [3]', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2038727'), ('2015-07-01 23:14:10', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/the-savior-3/', u'The savior? [3]', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2039043'), ('2015-07-02 00:06:28', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/supernatural-squad-2/', u'Supernatural Squad [2]', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2040873'), ('2015-07-02 00:08:23', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/supernatural-squad-2/', u'Supernatural Squad [2]', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2040928'), ('2015-07-02 00:08:23', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/supernatural-squad-2/', u'Supernatural Squad [2]', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2040928'), ('2015-07-02 00:10:56', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/supernatural-squad-2/', u'Supernatural Squad [2]', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2041005'), ('2015-07-03 19:28:59', 'https://www.hackerearth.com/problem/algorithm/valentine-shopping-4/', u'Valentine Shopping', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2053959'), ('2015-07-03 19:48:11', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', u'Marut and Girls', 'PS', '0', u'Python', 'https://www.hackerearth.com/submission/2054041'), ('2015-07-03 19:48:11', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', u'Marut and Girls', 'PS', '0', u'Python', 'https://www.hackerearth.com/submission/2054042'), ('2015-07-03 19:51:55', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', u'Marut and Girls', 'PS', '0', u'Python', 'https://www.hackerearth.com/submission/2054062'), ('2015-07-03 19:57:12', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', u'Marut and Girls', 'AC', '100', u'Python', 'https://www.hackerearth.com/submission/2054105'), ('2015-07-03 19:57:12', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', u'Marut and Girls', 'AC', '100', u'Python', 'https://www.hackerearth.com/submission/2054106'), ('2015-07-03 22:37:13', 'https://www.hackerearth.com/problem/algorithm/beta-testing/', u'Beta Testing', 'WA', '0', u'Python', 'https://www.hackerearth.com/submission/2055210'), ('2015-07-03 23:22:51', 'https://www.hackerearth.com/problem/algorithm/beta-testing/', u'Beta Testing', 'AC', '100', u'Python', 'https://www.hackerearth.com/submission/2055901'), ('2015-07-04 13:55:07', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-in-the-real-estate/', u'Monk in the real estate', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2059508'), ('2015-07-06 23:30:59', 'https://www.hackerearth.com/problem/algorithm/beta-testing/', u'Beta Testing', 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/2071774'), ('2015-07-06 23:48:05', 'https://www.hackerearth.com/problem/algorithm/beta-testing/', u'Beta Testing', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2071820'), ('2015-07-07 00:04:59', 'https://www.hackerearth.com/problem/algorithm/to-be-changed-choosing-a-project/', u'Side Projects', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2071872'), ('2015-07-07 00:30:34', 'https://www.hackerearth.com/problem/algorithm/to-be-changed-compile-time-fun/', u"It's Compiling!", 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2071940'), ('2015-07-09 00:20:31', 'https://www.hackerearth.com/problem/algorithm/monk-and-the-collision/', u'Monk and the Collision', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2082091'), ('2015-07-09 00:21:06', 'https://www.hackerearth.com/problem/algorithm/monk-and-the-collision/', u'Monk and the Collision', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2082114'), ('2015-07-09 00:36:27', 'https://www.hackerearth.com/problem/algorithm/monk-in-the-land-of-pokemons/', u'Monk in the land of Pokemons!', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2082452'), ('2015-07-09 00:38:45', 'https://www.hackerearth.com/problem/algorithm/monk-in-the-land-of-pokemons/', u'Monk in the land of Pokemons!', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2082465'), ('2015-07-09 00:50:39', 'https://www.hackerearth.com/problem/algorithm/monk-in-the-land-of-pokemons/', u'Monk in the land of Pokemons!', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2082564'), ('2015-07-18 08:29:31', 'https://www.hackerearth.com/problem/algorithm/will-you-be-my-friend-pledge-easy/', u'Will you be my friend?', 'CE', '0', u'Java', 'https://www.hackerearth.com/submission/2144171'), ('2015-07-18 08:29:31', 'https://www.hackerearth.com/problem/algorithm/will-you-be-my-friend-pledge-easy/', u'Will you be my friend?', 'CE', '0', u'Java', 'https://www.hackerearth.com/submission/2144171'), ('2015-07-18 08:54:12', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/intelligent-girl-1/', u'Intelligent Girl ', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2144180'), ('2015-07-23 13:47:19', 'https://www.hackerearth.com/practice/data-structures/trees/heapspriority-queues/practice-problems/algorithm/monk-and-multiplication/', u'Monk and Multiplication', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2181397'), ('2015-07-23 13:48:32', 'https://www.hackerearth.com/practice/data-structures/trees/heapspriority-queues/practice-problems/algorithm/monk-and-multiplication/', u'Monk and Multiplication', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2181405'), ('2015-07-23 14:45:20', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', u'Monk And Some Queries', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2181589'), ('2015-07-23 14:52:48', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', u'Monk And Some Queries', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2181611'), ('2015-07-23 15:01:15', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', u'Monk And Some Queries', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2181643'), ('2015-07-23 15:08:45', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', u'Monk And Some Queries', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2181659'), ('2015-07-23 15:12:17', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', u'Monk And Some Queries', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2181670'), ('2015-07-23 15:16:03', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', u'Monk And Some Queries', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2181686'), ('2015-07-23 15:17:49', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', u'Monk And Some Queries', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2181696'), ('2015-08-15 20:54:58', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-in-the-real-estate/', u'Monk in the real estate', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2326114'), ('2015-08-15 21:05:30', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-at-the-graph-factory/', u'Monk at the Graph Factory', 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/2326217'), ('2015-08-15 21:07:06', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-at-the-graph-factory/', u'Monk at the Graph Factory', 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/2326232'), ('2015-08-15 21:17:21', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-at-the-graph-factory/', u'Monk at the Graph Factory', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2326300'), ('2015-08-15 21:57:56', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', u'Kingdom Of Monkeys', 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/2326601'), ('2015-08-15 22:10:36', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', u'Kingdom Of Monkeys', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2326699'), ('2015-08-15 22:13:03', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', u'Kingdom Of Monkeys', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2326714'), ('2015-08-15 22:15:52', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', u'Kingdom Of Monkeys', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2326727'), ('2015-08-15 22:20:43', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', u'Kingdom Of Monkeys', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2326762'), ('2015-08-15 22:27:49', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', u'Kingdom Of Monkeys', 'RE', '0', u'C++', 'https://www.hackerearth.com/submission/2326799'), ('2015-08-15 22:27:49', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', u'Kingdom Of Monkeys', 'RE', '0', u'C++', 'https://www.hackerearth.com/submission/2326799'), ('2015-08-15 22:28:47', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', u'Kingdom Of Monkeys', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2326811'), ('2015-08-15 22:42:24', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', u'Kingdom Of Monkeys', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2326907'), ('2015-08-28 02:03:17', 'https://www.hackerearth.com/practice/data-structures/disjoint-data-strutures/basics-of-disjoint-data-structures/practice-problems/algorithm/city-and-flood-1/', u'City and Flood', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/2400169'), ('2015-09-03 20:34:56', 'https://www.hackerearth.com/problem/algorithm/guess-the-triangle/', u'Guess the triangle', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/2449157'), ('2015-12-18 13:28:32', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', u'Prime Probablity', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/3031761'), ('2015-12-18 13:33:00', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', u'Prime Probablity', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/3031774'), ('2015-12-18 13:46:11', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', u'Prime Probablity', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/3031821'), ('2015-12-18 13:54:19', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', u'Prime Probablity', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/3031840'), ('2015-12-18 23:25:48', 'https://www.hackerearth.com/problem/algorithm/special-subarray-1/', u'Special Subarray', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/3035335'), ('2015-12-18 23:31:43', 'https://www.hackerearth.com/problem/algorithm/special-subarray-1/', u'Special Subarray', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/3035367'), ('2015-12-20 11:59:00', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', u'Prime Probablity', 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/3050348'), ('2016-01-07 00:37:02', 'https://www.hackerearth.com/problem/algorithm/digital-numbers/', u'Digital Numbers', 'WA', '0', u'C', 'https://www.hackerearth.com/submission/3120602'), ('2016-09-14 23:25:52', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/xsquare-and-two-arrays/', u'Xsquare And Two Arrays', 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/5167117'), ('2016-09-14 23:26:45', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/xsquare-and-two-arrays/', u'Xsquare And Two Arrays', 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/5167122'), ('2016-09-14 23:46:04', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/xsquare-and-two-arrays/', u'Xsquare And Two Arrays', 'WA', '0', u'C++', 'https://www.hackerearth.com/submission/5167266'), ('2016-09-14 23:50:24', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/xsquare-and-two-arrays/', u'Xsquare And Two Arrays', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/5167320'), ('2016-09-29 22:25:56', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/choosing-the-judges-7/', u'Choosing the Judges', 'AC', '100', u'C++', 'https://www.hackerearth.com/submission/5421843'), ('2016-09-29 23:05:06', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/rhezo-and-prime-problems/', u'Rhezo and Prime Problems', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/5422329'), ('2016-09-29 23:16:01', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/rhezo-and-prime-problems/', u'Rhezo and Prime Problems', 'PS', '0', u'C++', 'https://www.hackerearth.com/submission/5422459'), ('2020-09-12 13:11:17', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/array-sum-2-725368ac/', u'Array Sum', 'AC', '100', u'C++14', 'https://www.hackerearth.com/submission/47234522')], - "HackerRank": [('2014-06-09 22:53:13', u'https://www.hackerrank.com/challenges/solve-me-first', u'Solve Me First', 'AC', '100', '-', ''), ('2014-06-09 23:03:21', u'https://www.hackerrank.com/challenges/find-point', u'Find the Point', 'AC', '100', '-', ''), ('2014-06-09 23:40:25', u'https://www.hackerrank.com/challenges/lonely-integer', u'Lonely Integer', 'AC', '100', '-', ''), ('2014-06-10 00:08:01', u'https://www.hackerrank.com/challenges/the-love-letter-mystery', u'The Love-Letter Mystery', 'AC', '100', '-', ''), ('2014-07-17 02:38:05', u'https://www.hackerrank.com/challenges/utopian-tree', u'Utopian Tree', 'AC', '100', '-', ''), ('2014-07-17 03:11:48', u'https://www.hackerrank.com/contests/w7/challenges/die-hard-3', u'Die Hard 3', 'AC', '100', '-', ''), ('2014-07-17 03:24:54', u'https://www.hackerrank.com/challenges/runningtime', u'Running Time of Algorithms', 'AC', '100', '-', ''), ('2014-07-17 03:49:56', u'https://www.hackerrank.com/contests/w7/challenges/string-function-calculation', u'String Function Calculation', 'AC', '100', '-', ''), ('2014-07-22 01:29:21', u'https://www.hackerrank.com/challenges/gem-stones', u'Gemstones', 'AC', '100', '-', ''), ('2014-08-08 17:24:20', u'https://www.hackerrank.com/contests/w8/challenges/counter-game', u'Counter game', 'AC', '100', '-', ''), ('2014-09-24 01:29:10', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler052', u'Project Euler #52: Permuted multiples', 'AC', '100', '-', ''), ('2014-09-27 20:48:27', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler001', u'Project Euler #1: Multiples of 3 and 5', 'AC', '100', '-', ''), ('2014-09-27 22:39:27', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler002', u'Project Euler #2: Even Fibonacci numbers', 'AC', '100', '-', ''), ('2014-09-28 00:53:48', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler016', u'Project Euler #16: Power digit sum', 'AC', '100', '-', ''), ('2014-09-28 03:59:31', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler034', u'Project Euler #34: Digit factorials', 'AC', '100', '-', ''), ('2014-10-01 19:47:25', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler042', u'Project Euler #42: Coded triangle numbers', 'AC', '100', '-', ''), ('2014-10-01 20:06:36', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler030', u'Project Euler #30: Digit Nth powers', 'AC', '100', '-', ''), ('2014-10-02 22:39:43', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler048', u'Project Euler #48: Self powers', 'AC', '100', '-', ''), ('2014-10-02 22:55:27', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler020', u'Project Euler #20: Factorial digit sum', 'AC', '100', '-', ''), ('2014-10-04 00:35:02', u'https://www.hackerrank.com/challenges/bigger-is-greater', u'Bigger is Greater', 'AC', '100', '-', ''), ('2014-10-04 05:36:38', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler005', u'Project Euler #5: Smallest multiple', 'AC', '100', '-', ''), ('2014-10-04 05:45:06', u'https://www.hackerrank.com/contests/projecteuler/challenges/euler007', u'Project Euler #7: 10001st prime', 'AC', '100', '-', ''), ('2014-12-08 06:00:42', u'https://www.hackerrank.com/challenges/find-hackerrank', u'Find HackerRank', 'AC', '100', '-', ''), ('2014-12-08 06:08:01', u'https://www.hackerrank.com/challenges/valid-pan-format', u'Valid PAN format', 'AC', '100', '-', ''), ('2014-12-08 06:17:05', u'https://www.hackerrank.com/challenges/hackerrank-tweets', u'HackerRank Tweets', 'AC', '100', '-', ''), ('2014-12-08 06:31:09', u'https://www.hackerrank.com/challenges/split-number', u'Split the Phone Numbers', 'AC', '100', '-', ''), ('2015-05-29 07:50:36', u'https://www.hackerrank.com/challenges/select-all-sql', u'Select All', 'AC', '100', '-', ''), ('2015-05-29 07:52:08', u'https://www.hackerrank.com/challenges/select-by-id', u'Select By ID', 'AC', '100', '-', ''), ('2015-05-29 07:53:21', u'https://www.hackerrank.com/challenges/japanese-cities-attributes', u"Japanese Cities' Attributes", 'AC', '100', '-', ''), ('2015-05-29 07:54:43', u'https://www.hackerrank.com/challenges/japanese-cities-name', u"Japanese Cities' Names", 'AC', '100', '-', ''), ('2015-05-29 07:57:45', u'https://www.hackerrank.com/challenges/average-population', u'Average Population', 'AC', '100', '-', ''), ('2015-05-29 07:59:00', u'https://www.hackerrank.com/challenges/japan-population', u'Japan Population', 'AC', '100', '-', ''), ('2015-05-30 09:47:34', u'https://www.hackerrank.com/challenges/py-hello-world', u'Say "Hello, World!" With Python', 'AC', '100', '-', ''), ('2015-05-30 09:48:41', u'https://www.hackerrank.com/challenges/python-raw-input', u'Reading Raw Input', 'AC', '100', '-', ''), ('2015-05-30 09:50:03', u'https://www.hackerrank.com/challenges/python-arithmetic-operators', u'Arithmetic Operators', 'AC', '100', '-', ''), ('2015-05-30 09:53:02', u'https://www.hackerrank.com/challenges/python-division', u'Python: Division', 'AC', '100', '-', ''), ('2015-05-30 09:55:01', u'https://www.hackerrank.com/challenges/python-mod-divmod', u'Mod Divmod', 'AC', '100', '-', ''), ('2015-05-30 22:23:33', u'https://www.hackerrank.com/contests/code-cpp-may-2015/challenges/redundant-or-not', u'Redundant or Not?', 'AC', '100', '-', ''), ('2015-05-30 22:31:57', u'https://www.hackerrank.com/contests/code-cpp-may-2015/challenges/string-transformations', u'String Transformations', 'AC', '100', '-', ''), ('2015-05-31 08:52:13', u'https://www.hackerrank.com/contests/code-cpp-may-2015/challenges/linked-list-to-binary', u'Linked List to Binary', 'AC', '100', '-', ''), ('2015-05-31 09:20:17', u'https://www.hackerrank.com/contests/code-cpp-may-2015/challenges/polygon-inheritance', u'Polygon Inheritance', 'AC', '100', '-', ''), ('2015-06-01 06:19:47', u'https://www.hackerrank.com/challenges/print-the-elements-of-a-linked-list', u'Print the Elements of a Linked List', 'AC', '100', '-', ''), ('2015-06-01 06:22:43', u'https://www.hackerrank.com/challenges/insert-a-node-at-the-tail-of-a-linked-list', u'Insert a Node at the Tail of a Linked List', 'AC', '100', '-', ''), ('2015-06-01 06:24:34', u'https://www.hackerrank.com/challenges/insert-a-node-at-the-head-of-a-linked-list', u'Insert a node at the head of a linked list', 'AC', '100', '-', ''), ('2015-06-01 06:45:45', u'https://www.hackerrank.com/challenges/insert-a-node-at-a-specific-position-in-a-linked-list', u'Insert a node at a specific position in a linked list', 'AC', '100', '-', ''), ('2015-06-01 06:49:29', u'https://www.hackerrank.com/challenges/delete-a-node-from-a-linked-list', u'Delete a Node', 'AC', '100', '-', ''), ('2015-06-01 06:51:09', u'https://www.hackerrank.com/challenges/print-the-elements-of-a-linked-list-in-reverse', u'Print in Reverse', 'AC', '100', '-', ''), ('2015-06-01 06:56:24', u'https://www.hackerrank.com/challenges/reverse-a-linked-list', u'Reverse a linked list', 'AC', '100', '-', ''), ('2015-06-01 06:59:39', u'https://www.hackerrank.com/challenges/compare-two-linked-lists', u'Compare two linked lists', 'AC', '100', '-', ''), ('2015-06-01 07:07:07', u'https://www.hackerrank.com/challenges/merge-two-sorted-linked-lists', u'Merge two sorted linked lists', 'AC', '100', '-', ''), ('2015-06-01 07:12:02', u'https://www.hackerrank.com/challenges/get-the-value-of-the-node-at-a-specific-position-from-the-tail', u'Get Node Value', 'AC', '100', '-', ''), ('2015-06-01 07:18:57', u'https://www.hackerrank.com/challenges/delete-duplicate-value-nodes-from-a-sorted-linked-list', u'Delete duplicate-value nodes from a sorted linked list', 'AC', '100', '-', ''), ('2015-06-01 07:25:20', u'https://www.hackerrank.com/challenges/detect-whether-a-linked-list-contains-a-cycle', u'Cycle Detection', 'AC', '100', '-', ''), ('2015-06-01 07:39:03', u'https://www.hackerrank.com/challenges/find-the-merge-point-of-two-joined-linked-lists', u'Find Merge Point of Two Lists', 'AC', '100', '-', ''), ('2015-06-01 07:55:58', u'https://www.hackerrank.com/challenges/insert-a-node-into-a-sorted-doubly-linked-list', u'Inserting a Node Into a Sorted Doubly Linked List', 'AC', '100', '-', ''), ('2015-06-01 08:05:55', u'https://www.hackerrank.com/challenges/reverse-a-doubly-linked-list', u'Reverse a doubly linked list', 'AC', '100', '-', ''), ('2015-06-01 08:07:24', u'https://www.hackerrank.com/challenges/tree-preorder-traversal', u'Tree: Preorder Traversal', 'AC', '100', '-', ''), ('2015-06-01 08:09:21', u'https://www.hackerrank.com/challenges/tree-postorder-traversal', u'Tree: Postorder Traversal', 'AC', '100', '-', ''), ('2015-06-01 08:10:09', u'https://www.hackerrank.com/challenges/tree-inorder-traversal', u'Tree: Inorder Traversal', 'AC', '100', '-', ''), ('2015-06-03 03:08:32', u'https://www.hackerrank.com/challenges/connecting-towns', u'Connecting Towns', 'AC', '100', '-', ''), ('2015-06-03 03:13:31', u'https://www.hackerrank.com/challenges/handshake', u'Handshake', 'AC', '100', '-', ''), ('2015-06-03 03:17:17', u'https://www.hackerrank.com/challenges/correctness-invariant', u'Correctness and the Loop Invariant', 'AC', '100', '-', ''), ('2015-06-03 03:22:14', u'https://www.hackerrank.com/challenges/tutorial-intro', u'Intro to Tutorial Challenges', 'AC', '100', '-', ''), ('2015-06-10 11:27:13', u'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/text-processing-in-linux-the-grep-command-4', u"'Grep' - A", 'AC', '100', '-', ''), ('2015-06-10 11:32:34', u'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/paste-1', u'Paste - 1', 'AC', '100', '-', ''), ('2015-06-10 11:52:57', u'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/awk-1', u"'Awk' - 1", 'AC', '100', '-', ''), ('2015-06-10 11:56:28', u'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/awk-2', u"'Awk' - 2", 'AC', '100', '-', ''), ('2015-06-10 12:10:10', u'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/text-processing-in-linux-the-grep-command-5', u"'Grep' - B", 'AC', '100', '-', ''), ('2015-06-27 21:35:13', u'https://www.hackerrank.com/contests/segfault/challenges/three-loops', u'Three Loops', 'AC', '100', '-', ''), ('2015-06-27 22:25:24', u'https://www.hackerrank.com/contests/segfault/challenges/count-the-divisors', u'Count the Divisors', 'AC', '100', '-', ''), ('2015-08-01 21:58:15', u'https://www.hackerrank.com/contests/countercode/challenges/imba', u'Imba', 'AC', '100', '-', ''), ('2015-08-01 22:46:04', u'https://www.hackerrank.com/contests/countercode/challenges/campers', u'Campers', 'AC', '100', '-', ''), ('2015-10-30 02:51:27', u'https://www.hackerrank.com/contests/codestorm/challenges/emmas-notebook', u"Emma's Notebook", 'AC', '100', '-', ''), ('2016-08-06 21:37:21', u'https://www.hackerrank.com/contests/morgan-stanley-2016/challenges/jesse-and-profit', u'Jesse and Profit', 'AC', '100', '-', ''), ('2016-08-24 06:14:46', u'https://www.hackerrank.com/challenges/30-hello-world', u'Day 0: Hello, World.', 'AC', '100', '-', ''), ('2017-11-03 00:51:08', u'https://www.hackerrank.com/challenges/30-data-types', u'Day 1: Data Types', 'AC', '100', '-', '')], + "CodeChef": [('2013-12-02 18:52:13', 'https://www.codechef.com/PRACTICE/problems/TEST', 'TEST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3017060'), ('2013-12-02 19:02:07', 'https://www.codechef.com/PRACTICE/problems/TEST', 'TEST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3017069'), ('2013-12-02 19:13:59', 'https://www.codechef.com/PRACTICE/problems/HS08TEST', 'HS08TEST', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3017092'), ('2013-12-02 19:16:51', 'https://www.codechef.com/PRACTICE/problems/HS08TEST', 'HS08TEST', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3017097'), ('2013-12-02 19:20:42', 'https://www.codechef.com/PRACTICE/problems/HS08TEST', 'HS08TEST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3017102'), ('2013-12-02 19:31:26', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'INTEST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3017121'), ('2013-12-03 01:15:08', 'https://www.codechef.com/PRACTICE/problems/FCTRL', 'FCTRL', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3017614'), ('2013-12-03 01:15:44', 'https://www.codechef.com/PRACTICE/problems/FCTRL', 'FCTRL', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3017615'), ('2013-12-03 01:18:21', 'https://www.codechef.com/PRACTICE/problems/FCTRL', 'FCTRL', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3017619'), ('2013-12-03 01:23:05', 'https://www.codechef.com/PRACTICE/problems/FCTRL', 'FCTRL', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3017629'), ('2013-12-03 01:33:10', 'https://www.codechef.com/PRACTICE/problems/FCTRL2', 'FCTRL2', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3017639'), ('2013-12-06 13:51:02', 'https://www.codechef.com/PRACTICE/problems/PRPALIN', 'PRPALIN', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3023114'), ('2013-12-06 13:59:27', 'https://www.codechef.com/PRACTICE/problems/PRPALIN', 'PRPALIN', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3023128'), ('2013-12-06 14:26:23', 'https://www.codechef.com/PRACTICE/problems/NUMPATH', 'NUMPATH', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3023162'), ('2013-12-06 14:34:44', 'https://www.codechef.com/PRACTICE/problems/PRPALIN', 'PRPALIN', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3023172'), ('2013-12-06 14:40:45', 'https://www.codechef.com/PRACTICE/problems/PRPALIN', 'PRPALIN', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3023183'), ('2013-12-06 14:58:49', 'https://www.codechef.com/PRACTICE/problems/PRPALIN', 'PRPALIN', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3023209'), ('2013-12-06 15:22:57', 'https://www.codechef.com/PRACTICE/problems/HOLES', 'HOLES', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3023522'), ('2013-12-12 15:04:32', 'https://www.codechef.com/PRACTICE/problems/NAME2', 'NAME2', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3076899'), ('2013-12-12 15:22:56', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3077003'), ('2013-12-12 15:24:57', 'https://www.codechef.com/PRACTICE/problems/MAXCOUNT', 'MAXCOUNT', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3077013'), ('2013-12-12 17:41:44', 'https://www.codechef.com/PRACTICE/problems/DECSTR', 'DECSTR', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3077862'), ('2013-12-12 18:04:39', 'https://www.codechef.com/PRACTICE/problems/DECSTR', 'DECSTR', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3078001'), ('2013-12-12 18:53:41', 'https://www.codechef.com/PRACTICE/problems/DECSTR', 'DECSTR', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3078284'), ('2013-12-12 19:26:47', 'https://www.codechef.com/PRACTICE/problems/DECSTR', 'DECSTR', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3078484'), ('2013-12-12 19:39:23', 'https://www.codechef.com/PRACTICE/problems/NAME2', 'NAME2', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3078558'), ('2013-12-13 15:04:16', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3083547'), ('2013-12-13 15:09:42', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3083574'), ('2013-12-13 15:13:40', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3083602'), ('2013-12-13 19:30:02', 'https://www.codechef.com/PRACTICE/problems/NAME2', 'NAME2', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3085115'), ('2013-12-14 13:37:45', 'https://www.codechef.com/PRACTICE/problems/SAD', 'SAD', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3089188'), ('2013-12-14 13:40:39', 'https://www.codechef.com/PRACTICE/problems/SAD', 'SAD', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3089199'), ('2013-12-14 13:45:29', 'https://www.codechef.com/PRACTICE/problems/SAD', 'SAD', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3089226'), ('2013-12-14 19:29:31', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3091091'), ('2013-12-18 00:17:52', 'https://www.codechef.com/PRACTICE/problems/ONP', 'ONP', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3108217'), ('2013-12-18 00:29:10', 'https://www.codechef.com/PRACTICE/problems/ONP', 'ONP', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3108251'), ('2013-12-18 00:58:37', 'https://www.codechef.com/PRACTICE/problems/ONP', 'ONP', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3108323'), ('2013-12-18 01:04:19', 'https://www.codechef.com/PRACTICE/problems/ONP', 'ONP', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3108336'), ('2013-12-18 01:46:49', 'https://www.codechef.com/PRACTICE/problems/SUMTRIAN', 'SUMTRIAN', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3108432'), ('2013-12-18 02:02:45', 'https://www.codechef.com/PRACTICE/problems/COINS', 'COINS', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3108454'), ('2013-12-18 02:09:53', 'https://www.codechef.com/PRACTICE/problems/COINS', 'COINS', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3108466'), ('2013-12-18 02:19:38', 'https://www.codechef.com/PRACTICE/problems/COINS', 'COINS', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3108479'), ('2013-12-18 02:36:47', 'https://www.codechef.com/PRACTICE/problems/COINS', 'COINS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3108489'), ('2013-12-18 02:38:40', 'https://www.codechef.com/PRACTICE/problems/COINS', 'COINS', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3108491'), ('2013-12-18 02:40:21', 'https://www.codechef.com/PRACTICE/problems/COINS', 'COINS', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3108493'), ('2013-12-19 23:56:23', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/3113518'), ('2013-12-19 23:58:35', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/3113525'), ('2013-12-20 00:00:56', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3113535'), ('2013-12-20 02:45:48', 'https://www.codechef.com/PRACTICE/problems/FCTRL2', 'FCTRL2', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/3113821'), ('2013-12-20 02:48:52', 'https://www.codechef.com/PRACTICE/problems/FCTRL2', 'FCTRL2', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3113825'), ('2013-12-20 03:10:47', 'https://www.codechef.com/PRACTICE/problems/MARBLES', 'MARBLES', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3113849'), ('2013-12-20 03:27:48', 'https://www.codechef.com/PRACTICE/problems/MARBLES', 'MARBLES', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3113865'), ('2013-12-20 03:43:53', 'https://www.codechef.com/PRACTICE/problems/MARBLES', 'MARBLES', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3113877'), ('2013-12-20 15:47:52', 'https://www.codechef.com/PRACTICE/problems/SAD', 'SAD', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/3114663'), ('2013-12-20 15:49:13', 'https://www.codechef.com/PRACTICE/problems/SAD', 'SAD', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/3114664'), ('2013-12-20 15:52:15', 'https://www.codechef.com/PRACTICE/problems/SAD', 'SAD', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3114671'), ('2013-12-20 15:58:50', 'https://www.codechef.com/PRACTICE/problems/SAD', 'SAD', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3114683'), ('2014-01-01 22:25:19', 'https://www.codechef.com/PRACTICE/problems/MSTICK', 'MSTICK', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3148896'), ('2014-01-02 22:42:07', 'https://www.codechef.com/PRACTICE/problems/RESIST', 'RESIST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3150795'), ('2014-01-02 22:54:14', 'https://www.codechef.com/PRACTICE/problems/RESIST', 'RESIST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3150836'), ('2014-01-02 22:56:42', 'https://www.codechef.com/PRACTICE/problems/RESIST', 'RESIST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3150842'), ('2014-01-02 22:58:50', 'https://www.codechef.com/PRACTICE/problems/RESIST', 'RESIST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3150846'), ('2014-01-02 23:18:24', 'https://www.codechef.com/PRACTICE/problems/MSTICK', 'MSTICK', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3150913'), ('2014-01-05 16:58:47', 'https://www.codechef.com/PRACTICE/problems/TWTCLOSE', 'TWTCLOSE', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3188137'), ('2014-01-06 21:24:27', 'https://www.codechef.com/PRACTICE/problems/SAD', 'SAD', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3200011'), ('2014-01-06 21:29:23', 'https://www.codechef.com/PRACTICE/problems/SAD', 'SAD', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3200056'), ('2014-01-06 21:58:37', 'https://www.codechef.com/PRACTICE/problems/FLIPCOIN', 'FLIPCOIN', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3200313'), ('2014-01-06 22:50:32', 'https://www.codechef.com/PRACTICE/problems/FLIPCOIN', 'FLIPCOIN', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3200883'), ('2014-01-07 15:19:35', 'https://www.codechef.com/PRACTICE/problems/LEVY', 'LEVY', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3205638'), ('2014-01-07 15:23:13', 'https://www.codechef.com/PRACTICE/problems/LEVY', 'LEVY', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/3205664'), ('2014-01-07 15:38:53', 'https://www.codechef.com/PRACTICE/problems/LEVY', 'LEVY', 'CE', '0', 'C++ 4.3.2', 'https://www.codechef.com/viewsolution/3205784'), ('2014-01-08 17:18:58', 'https://www.codechef.com/JAN14/problems/ERROR', 'ERROR', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3215076'), ('2014-01-08 17:32:16', 'https://www.codechef.com/JAN14/problems/ERROR', 'ERROR', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3215197'), ('2014-01-08 17:34:26', 'https://www.codechef.com/JAN14/problems/PLZLYKME', 'PLZLYKME', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3215217'), ('2014-01-08 17:50:31', 'https://www.codechef.com/JAN14/problems/PLZLYKME', 'PLZLYKME', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3215325'), ('2014-01-08 23:01:50', 'https://www.codechef.com/JAN14/problems/FGFS', 'FGFS', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3217930'), ('2014-01-09 18:42:17', 'https://www.codechef.com/PRACTICE/problems/TSORT', 'TSORT', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3223261'), ('2014-01-09 18:49:03', 'https://www.codechef.com/PRACTICE/problems/TSORT', 'TSORT', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3223313'), ('2014-01-09 18:57:00', 'https://www.codechef.com/PRACTICE/problems/TSORT', 'TSORT', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3223384'), ('2014-01-09 19:26:01', 'https://www.codechef.com/PRACTICE/problems/PERMUT2', 'PERMUT2', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3223635'), ('2014-01-09 19:28:32', 'https://www.codechef.com/PRACTICE/problems/PERMUT2', 'PERMUT2', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3223652'), ('2014-01-09 19:47:04', 'https://www.codechef.com/PRACTICE/problems/TLG', 'TLG', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3223799'), ('2014-01-09 20:32:49', 'https://www.codechef.com/PRACTICE/problems/TLG', 'TLG', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3224190'), ('2014-01-09 20:35:41', 'https://www.codechef.com/PRACTICE/problems/TLG', 'TLG', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3224222'), ('2014-01-09 23:53:53', 'https://www.codechef.com/PRACTICE/problems/TLG', 'TLG', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3225832'), ('2014-01-10 00:14:05', 'https://www.codechef.com/PRACTICE/problems/NUMGAME', 'NUMGAME', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3226019'), ('2014-01-10 23:16:53', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'PRIMES2', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3231942'), ('2014-01-10 23:25:05', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'PRIMES2', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3232000'), ('2014-01-10 23:32:09', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'PRIMES2', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3232061'), ('2014-01-10 23:37:08', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'PRIMES2', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3232115'), ('2014-01-10 23:46:15', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'PRIMES2', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3232189'), ('2014-01-12 16:08:22', 'https://www.codechef.com/PRACTICE/problems/D1', 'D1', 'TLE', '0', 'PYTH', 'https://www.codechef.com/viewsolution/3242893'), ('2014-01-12 16:41:33', 'https://www.codechef.com/PRACTICE/problems/ASTRGAME', 'ASTRGAME', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3243146'), ('2014-01-12 16:43:25', 'https://www.codechef.com/PRACTICE/problems/ASTRGAME', 'ASTRGAME', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3243158'), ('2014-01-12 19:38:52', 'https://www.codechef.com/PRACTICE/problems/KPRIME', 'KPRIME', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3244328'), ('2014-01-12 20:04:49', 'https://www.codechef.com/PRACTICE/problems/KPRIME', 'KPRIME', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3244480'), ('2014-01-13 10:34:13', 'https://www.codechef.com/PRACTICE/problems/BUY1GET1', 'BUY1GET1', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3248580'), ('2014-01-13 10:41:26', 'https://www.codechef.com/PRACTICE/problems/BUY1GET1', 'BUY1GET1', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3248611'), ('2014-01-13 10:52:51', 'https://www.codechef.com/PRACTICE/problems/BUY1GET1', 'BUY1GET1', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3248674'), ('2014-01-13 11:53:09', 'https://www.codechef.com/PRACTICE/problems/HORSES', 'HORSES', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3249017'), ('2014-01-13 12:01:58', 'https://www.codechef.com/PRACTICE/problems/HORSES', 'HORSES', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3249080'), ('2014-01-13 12:13:20', 'https://www.codechef.com/PRACTICE/problems/NUMGAME', 'NUMGAME', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3249157'), ('2014-01-13 12:30:50', 'https://www.codechef.com/PRACTICE/problems/BUY1GET1', 'BUY1GET1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3249302'), ('2014-01-13 13:14:27', 'https://www.codechef.com/PRACTICE/problems/TWSTR', 'TWSTR', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3249663'), ('2014-01-13 20:23:37', 'https://www.codechef.com/PRACTICE/problems/HELLO', 'HELLO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3251908'), ('2014-01-13 21:07:57', 'https://www.codechef.com/PRACTICE/problems/DIGROT', 'DIGROT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3252038'), ('2014-01-13 21:46:16', 'https://www.codechef.com/PRACTICE/problems/HELLO', 'HELLO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3252146'), ('2014-01-13 22:06:21', 'https://www.codechef.com/PRACTICE/problems/HELLO', 'HELLO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3252214'), ('2014-01-13 22:13:24', 'https://www.codechef.com/PRACTICE/problems/HELLO', 'HELLO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3252242'), ('2014-01-13 22:15:40', 'https://www.codechef.com/PRACTICE/problems/HELLO', 'HELLO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3252253'), ('2014-01-13 22:21:15', 'https://www.codechef.com/PRACTICE/problems/HELLO', 'HELLO', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3252279'), ('2014-01-14 00:21:02', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3252851'), ('2014-01-14 01:05:42', 'https://www.codechef.com/PRACTICE/problems/LAPIN', 'LAPIN', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3253032'), ('2014-01-14 01:08:04', 'https://www.codechef.com/PRACTICE/problems/LAPIN', 'LAPIN', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3253049'), ('2014-01-14 01:11:18', 'https://www.codechef.com/PRACTICE/problems/LAPIN', 'LAPIN', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3253069'), ('2014-01-14 14:06:41', 'https://www.codechef.com/PRACTICE/problems/PPXOR', 'PPXOR', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3254264'), ('2014-01-14 19:12:48', 'https://www.codechef.com/PRACTICE/problems/CHEFTEAM', 'CHEFTEAM', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3255054'), ('2014-01-14 19:36:22', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'PRIMES2', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3255134'), ('2014-01-14 21:11:50', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'PRIMES2', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3255392'), ('2014-01-14 21:41:46', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'PRIMES2', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3255474'), ('2014-01-16 18:39:17', 'https://www.codechef.com/PRACTICE/problems/TACHSTCK', 'TACHSTCK', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3260781'), ('2014-01-16 19:08:18', 'https://www.codechef.com/PRACTICE/problems/TACHSTCK', 'TACHSTCK', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3260885'), ('2014-01-16 19:36:52', 'https://www.codechef.com/PRACTICE/problems/PRIMES2', 'PRIMES2', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3261016'), ('2014-01-18 18:40:00', 'https://www.codechef.com/PRACTICE/problems/RRMATRIX', 'RRMATRIX', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3266986'), ('2014-01-18 19:16:39', 'https://www.codechef.com/PRACTICE/problems/GRANAMA', 'GRANAMA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3267092'), ('2014-01-18 19:25:40', 'https://www.codechef.com/PRACTICE/problems/GRANAMA', 'GRANAMA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3267123'), ('2014-01-18 20:29:27', 'https://www.codechef.com/PRACTICE/problems/GRANAMA', 'GRANAMA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3267298'), ('2014-01-18 20:35:24', 'https://www.codechef.com/PRACTICE/problems/GRANAMA', 'GRANAMA', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3267306'), ('2014-01-23 10:03:37', 'https://www.codechef.com/PRACTICE/problems/NUKES', 'NUKES', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3283319'), ('2014-01-23 10:04:57', 'https://www.codechef.com/PRACTICE/problems/JOHNY', 'JOHNY', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3283321'), ('2014-01-23 10:06:21', 'https://www.codechef.com/PRACTICE/problems/RIGHTRI', 'RIGHTRI', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3283322'), ('2014-01-23 10:07:29', 'https://www.codechef.com/PRACTICE/problems/RIGHTRI', 'RIGHTRI', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3283325'), ('2014-01-23 10:19:28', 'https://www.codechef.com/PRACTICE/problems/RIGHTRI', 'RIGHTRI', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3283340'), ('2014-01-23 10:22:56', 'https://www.codechef.com/PRACTICE/problems/NUKES', 'NUKES', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3283347'), ('2014-01-23 10:27:39', 'https://www.codechef.com/PRACTICE/problems/NUKES', 'NUKES', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3283353'), ('2014-01-23 10:30:21', 'https://www.codechef.com/PRACTICE/problems/NUKES', 'NUKES', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3283357'), ('2014-01-23 10:42:45', 'https://www.codechef.com/PRACTICE/problems/LAPIN', 'LAPIN', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3283378'), ('2014-01-23 10:50:27', 'https://www.codechef.com/PRACTICE/problems/LAPIN', 'LAPIN', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3283389'), ('2014-01-23 10:58:07', 'https://www.codechef.com/PRACTICE/problems/NUKES', 'NUKES', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3283393'), ('2014-02-07 13:56:26', 'https://www.codechef.com/PRACTICE/problems/NUMGAME', 'NUMGAME', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3339806'), ('2014-02-07 14:04:43', 'https://www.codechef.com/PRACTICE/problems/NUMGAME', 'NUMGAME', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3339834'), ('2014-02-07 14:07:56', 'https://www.codechef.com/PRACTICE/problems/NUMGAME', 'NUMGAME', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3339845'), ('2014-02-07 14:12:05', 'https://www.codechef.com/PRACTICE/problems/NUMGAME', 'NUMGAME', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3339853'), ('2014-02-07 14:43:35', 'https://www.codechef.com/PRACTICE/problems/CIELRCPT', 'CIELRCPT', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3339922'), ('2014-02-08 18:56:14', 'https://www.codechef.com/FEB14/problems/LCPESY', 'LCPESY', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3359518'), ('2014-02-08 19:12:55', 'https://www.codechef.com/FEB14/problems/LCPESY', 'LCPESY', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3359744'), ('2014-02-08 19:39:00', 'https://www.codechef.com/FEB14/problems/SUBMIN', 'SUBMIN', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3360100'), ('2014-02-11 15:14:10', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'TWODOGS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3387212'), ('2014-02-11 15:20:54', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'TWODOGS', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3387257'), ('2014-02-11 15:30:00', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'TWODOGS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3387312'), ('2014-02-11 16:35:28', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'TWODOGS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3387693'), ('2014-02-11 16:51:49', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'TWODOGS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3387801'), ('2014-02-11 16:55:47', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'TWODOGS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3387826'), ('2014-02-13 15:27:31', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'TWODOGS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3401986'), ('2014-02-13 16:24:34', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'TWODOGS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3402304'), ('2014-02-13 16:52:47', 'https://www.codechef.com/FEB14/problems/TWODOGS', 'TWODOGS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3402476'), ('2014-02-22 21:12:12', 'https://www.codechef.com/CDMT2014/problems/MIRRORS', 'MIRRORS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3455971'), ('2014-02-22 21:14:12', 'https://www.codechef.com/CDMT2014/problems/MIRRORS', 'MIRRORS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3456012'), ('2014-02-22 21:21:11', 'https://www.codechef.com/CDMT2014/problems/MIRRORS', 'MIRRORS', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3456160'), ('2014-02-23 00:04:09', 'https://www.codechef.com/CDMT2014/problems/TILE', 'TILE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3460835'), ('2014-02-23 00:07:15', 'https://www.codechef.com/CDMT2014/problems/TILE0', 'TILE0', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3460874'), ('2014-02-23 00:23:39', 'https://www.codechef.com/CDNCTR14/problems/QUEST', 'QUEST', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/3461126'), ('2014-02-23 00:35:48', 'https://www.codechef.com/CDNCTR14/problems/QUEST', 'QUEST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3461310'), ('2014-02-23 01:13:51', 'https://www.codechef.com/CDNCTR14/problems/ARRAY', 'ARRAY', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3461817'), ('2014-02-23 01:53:29', 'https://www.codechef.com/CDNCTR14/problems/GOT', 'GOT', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3462204'), ('2014-02-23 02:37:48', 'https://www.codechef.com/CDNCTR14/problems/JADEJA', 'JADEJA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3462594'), ('2014-02-23 02:42:04', 'https://www.codechef.com/CDNCTR14/problems/JADEJA', 'JADEJA', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/3462619'), ('2014-02-26 23:33:32', 'https://www.codechef.com/PRACTICE/problems/WCOUNT', 'WCOUNT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3477325'), ('2014-03-04 16:51:10', 'https://www.codechef.com/PRACTICE/problems/TPRODUCT', 'TPRODUCT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3497768'), ('2014-03-04 17:08:05', 'https://www.codechef.com/PRACTICE/problems/TPRODUCT', 'TPRODUCT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3497791'), ('2014-03-04 17:11:05', 'https://www.codechef.com/PRACTICE/problems/TPRODUCT', 'TPRODUCT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/3497796'), ('2014-05-25 02:14:27', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'VOTERS', 'RE', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/3938402'), ('2014-05-25 02:16:35', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'VOTERS', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3938403'), ('2014-05-25 02:19:23', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'VOTERS', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3938407'), ('2014-05-25 02:28:54', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'VOTERS', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/3938415'), ('2014-06-08 15:50:16', 'https://www.codechef.com/JUNE14/problems/CHEFZOT', 'CHEFZOT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4019362'), ('2014-06-08 15:52:51', 'https://www.codechef.com/JUNE14/problems/CHEFZOT', 'CHEFZOT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4019398'), ('2014-06-08 15:57:49', 'https://www.codechef.com/JUNE14/problems/CHEFZOT', 'CHEFZOT', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4019468'), ('2014-06-08 16:11:10', 'https://www.codechef.com/JUNE14/problems/GUESS', 'GUESS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4019668'), ('2014-06-08 16:13:49', 'https://www.codechef.com/JUNE14/problems/GUESS', 'GUESS', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4019713'), ('2014-06-08 17:28:24', 'https://www.codechef.com/JUNE14/problems/FORGETPW', 'FORGETPW', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4020749'), ('2014-06-09 20:48:17', 'https://www.codechef.com/JUNE14/problems/FORGETPW', 'FORGETPW', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4036865'), ('2014-06-09 20:51:39', 'https://www.codechef.com/JUNE14/problems/FORGETPW', 'FORGETPW', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4036902'), ('2014-06-09 20:56:28', 'https://www.codechef.com/JUNE14/problems/FORGETPW', 'FORGETPW', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4036949'), ('2014-06-11 07:33:23', 'https://www.codechef.com/JUNE14/problems/FORGETPW', 'FORGETPW', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4053523'), ('2014-06-11 07:54:41', 'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', 'ALEXNUMB', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4053566'), ('2014-06-11 07:57:12', 'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', 'ALEXNUMB', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4053571'), ('2014-06-11 07:59:02', 'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', 'ALEXNUMB', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4053576'), ('2014-06-11 08:04:58', 'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', 'ALEXNUMB', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4053599'), ('2014-06-11 08:08:47', 'https://www.codechef.com/PRACTICE/problems/ALEXNUMB', 'ALEXNUMB', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4053611'), ('2014-06-11 08:20:27', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'VOTERS', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/4053646'), ('2014-06-11 08:21:52', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'VOTERS', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/4053653'), ('2014-06-11 08:22:42', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'VOTERS', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/4053659'), ('2014-06-11 08:35:28', 'https://www.codechef.com/PRACTICE/problems/MAXDIFF', 'MAXDIFF', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4053715'), ('2014-06-11 08:41:38', 'https://www.codechef.com/PRACTICE/problems/MAXDIFF', 'MAXDIFF', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4053747'), ('2014-06-11 09:20:41', 'https://www.codechef.com/PRACTICE/problems/STONES', 'STONES', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4053906'), ('2014-06-11 09:23:05', 'https://www.codechef.com/PRACTICE/problems/STONES', 'STONES', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4053914'), ('2014-06-11 09:28:01', 'https://www.codechef.com/PRACTICE/problems/STONES', 'STONES', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4053935'), ('2014-06-11 09:46:27', 'https://www.codechef.com/PRACTICE/problems/SPCANDY', 'SPCANDY', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/4054028'), ('2014-06-11 09:49:08', 'https://www.codechef.com/PRACTICE/problems/SPCANDY', 'SPCANDY', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4054050'), ('2014-06-11 09:50:14', 'https://www.codechef.com/PRACTICE/problems/SPCANDY', 'SPCANDY', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4054056'), ('2014-06-11 10:13:17', 'https://www.codechef.com/PRACTICE/problems/DIVIDING', 'DIVIDING', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4054186'), ('2014-06-11 10:17:20', 'https://www.codechef.com/PRACTICE/problems/DIVIDING', 'DIVIDING', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4054200'), ('2014-06-11 10:21:20', 'https://www.codechef.com/PRACTICE/problems/DIVIDING', 'DIVIDING', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4054222'), ('2014-06-11 10:46:57', 'https://www.codechef.com/PRACTICE/problems/APPROX', 'APPROX', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4054403'), ('2014-06-11 11:11:10', 'https://www.codechef.com/PRACTICE/problems/COMPILER', 'COMPILER', 'CE', '0', 'ADA', 'https://www.codechef.com/viewsolution/4054561'), ('2014-06-11 11:11:59', 'https://www.codechef.com/PRACTICE/problems/COMPILER', 'COMPILER', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4054571'), ('2014-06-11 16:59:23', 'https://www.codechef.com/PRACTICE/problems/AMSGAME1', 'AMSGAME1', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4057988'), ('2014-06-11 17:05:35', 'https://www.codechef.com/PRACTICE/problems/AMSGAME1', 'AMSGAME1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4058067'), ('2014-06-29 01:44:47', 'https://www.codechef.com/PRACTICE/problems/TREEROOT', 'TREEROOT', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4152751'), ('2014-06-29 02:02:26', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'VOTERS', 'TLE', '0', 'PYTH', 'https://www.codechef.com/viewsolution/4152798'), ('2014-07-04 20:23:15', 'https://www.codechef.com/JULY14/problems/CSUB', 'CSUB', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4188769'), ('2014-07-04 20:35:55', 'https://www.codechef.com/JULY14/problems/CSUB', 'CSUB', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4189092'), ('2014-07-04 20:42:22', 'https://www.codechef.com/JULY14/problems/CSUB', 'CSUB', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4189260'), ('2014-07-04 20:56:59', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4189643'), ('2014-07-04 20:58:35', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4189684'), ('2014-07-04 21:29:16', 'https://www.codechef.com/JULY14/problems/CSUB', 'CSUB', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4190477'), ('2014-07-05 03:32:13', 'https://www.codechef.com/PRACTICE/problems/SPOTWO', 'SPOTWO', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4198760'), ('2014-07-05 04:31:23', 'https://www.codechef.com/PRACTICE/problems/REMISS', 'REMISS', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4199244'), ('2014-07-05 04:48:17', 'https://www.codechef.com/PRACTICE/problems/POTATOES', 'POTATOES', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4199368'), ('2014-07-05 04:58:55', 'https://www.codechef.com/PRACTICE/problems/SDSQUARE', 'SDSQUARE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4199453'), ('2014-07-05 05:05:28', 'https://www.codechef.com/PRACTICE/problems/SDSQUARE', 'SDSQUARE', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4199504'), ('2014-07-05 05:14:54', 'https://www.codechef.com/PRACTICE/problems/SDSQUARE', 'SDSQUARE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4199569'), ('2014-07-05 05:19:30', 'https://www.codechef.com/PRACTICE/problems/SDSQUARE', 'SDSQUARE', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4199592'), ('2014-07-05 05:44:04', 'https://www.codechef.com/PRACTICE/problems/NOLOGIC', 'NOLOGIC', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4199717'), ('2014-07-12 02:26:44', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4303371'), ('2014-07-12 03:17:04', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4303603'), ('2014-07-12 03:17:04', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4303608'), ('2014-07-12 03:17:04', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4303611'), ('2014-07-12 03:17:45', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4303624'), ('2014-07-12 03:22:54', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4303651'), ('2014-07-12 03:25:18', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4303661'), ('2014-07-12 03:28:45', 'https://www.codechef.com/JULY14/problems/RETPO', 'RETPO', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4303679'), ('2014-07-12 15:12:46', 'https://www.codechef.com/JULY14/problems/FROGV', 'FROGV', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/4307292'), ('2014-07-13 01:07:50', 'https://www.codechef.com/JULY14/problems/FROGV', 'FROGV', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4312732'), ('2014-07-17 02:00:29', 'https://www.codechef.com/PRACTICE/problems/BINTREE', 'BINTREE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4337506'), ('2014-07-17 02:02:30', 'https://www.codechef.com/PRACTICE/problems/BINTREE', 'BINTREE', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4337509'), ('2014-07-17 21:02:13', 'https://www.codechef.com/PRACTICE/problems/LUCKYSTR', 'LUCKYSTR', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/4339419'), ('2014-07-17 21:03:35', 'https://www.codechef.com/PRACTICE/problems/LUCKYSTR', 'LUCKYSTR', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339420'), ('2014-07-17 21:49:38', 'https://www.codechef.com/PRACTICE/problems/NOLOGIC', 'NOLOGIC', 'WA', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339533'), ('2014-07-17 21:54:01', 'https://www.codechef.com/PRACTICE/problems/NOLOGIC', 'NOLOGIC', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339548'), ('2014-07-17 21:55:43', 'https://www.codechef.com/PRACTICE/problems/NOLOGIC', 'NOLOGIC', 'TLE', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339554'), ('2014-07-17 21:58:37', 'https://www.codechef.com/PRACTICE/problems/NOLOGIC', 'NOLOGIC', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/4339563'), ('2014-07-17 21:59:31', 'https://www.codechef.com/PRACTICE/problems/NOLOGIC', 'NOLOGIC', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4339567'), ('2014-07-18 00:42:33', 'https://www.codechef.com/PRACTICE/problems/VOTERS', 'VOTERS', 'TLE', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340137'), ('2014-07-18 01:15:31', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'WA', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340237'), ('2014-07-18 01:17:19', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'WA', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340243'), ('2014-07-18 01:21:53', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'WA', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340259'), ('2014-07-18 01:24:29', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'WA', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340266'), ('2014-07-18 01:38:21', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340317'), ('2014-07-18 01:41:49', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340328'), ('2014-07-18 02:11:22', 'https://www.codechef.com/PRACTICE/problems/COMPILER', 'COMPILER', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4340405'), ('2014-07-18 02:13:00', 'https://www.codechef.com/PRACTICE/problems/COMPILER', 'COMPILER', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4340412'), ('2014-07-18 02:15:57', 'https://www.codechef.com/PRACTICE/problems/COMPILER', 'COMPILER', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4340421'), ('2014-07-18 03:08:59', 'https://www.codechef.com/PRACTICE/problems/WSTRING', 'WSTRING', 'WA', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340523'), ('2014-07-18 03:18:59', 'https://www.codechef.com/PRACTICE/problems/WSTRING', 'WSTRING', 'WA', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340535'), ('2014-07-18 04:45:18', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/4340638'), ('2014-07-18 04:46:15', 'https://www.codechef.com/PRACTICE/problems/RRCODE', 'RRCODE', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4340641'), ('2014-07-18 04:50:29', 'https://www.codechef.com/PRACTICE/problems/BINTREE', 'BINTREE', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4340644'), ('2014-07-18 04:55:56', 'https://www.codechef.com/PRACTICE/problems/RETPO', 'RETPO', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4340648'), ('2014-07-18 04:58:27', 'https://www.codechef.com/PRACTICE/problems/BINTREE', 'BINTREE', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4340649'), ('2014-07-18 05:04:58', 'https://www.codechef.com/PRACTICE/problems/RRMATRIX', 'RRMATRIX', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4340655'), ('2014-07-18 05:05:52', 'https://www.codechef.com/PRACTICE/problems/RRMATRIX', 'RRMATRIX', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4340657'), ('2014-07-21 18:05:27', 'https://www.codechef.com/PRACTICE/problems/RRCOPY', 'RRCOPY', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4362844'), ('2014-07-21 18:24:11', 'https://www.codechef.com/PRACTICE/problems/RRCOPY', 'RRCOPY', 'WA', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4362928'), ('2014-07-21 18:25:05', 'https://www.codechef.com/PRACTICE/problems/RRCOPY', 'RRCOPY', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4362933'), ('2014-07-21 18:45:33', 'https://www.codechef.com/PRACTICE/problems/RRSUM', 'RRSUM', 'TLE', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4363040'), ('2014-07-21 18:49:18', 'https://www.codechef.com/PRACTICE/problems/RRSUM', 'RRSUM', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4363058'), ('2014-07-21 18:50:51', 'https://www.codechef.com/PRACTICE/problems/RRSUM', 'RRSUM', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4363066'), ('2014-07-23 00:10:48', 'https://www.codechef.com/PRACTICE/problems/RECTQUER', 'RECTQUER', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4367826'), ('2014-07-23 01:00:49', 'https://www.codechef.com/PRACTICE/problems/RECTQUER', 'RECTQUER', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4368006'), ('2014-07-23 01:03:50', 'https://www.codechef.com/PRACTICE/problems/RECTQUER', 'RECTQUER', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4368015'), ('2014-07-23 01:32:36', 'https://www.codechef.com/PRACTICE/problems/RECTQUER', 'RECTQUER', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4368102'), ('2014-07-26 00:16:20', 'https://www.codechef.com/PRACTICE/problems/DOUBLE', 'DOUBLE', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4377912'), ('2014-07-26 00:18:23', 'https://www.codechef.com/PRACTICE/problems/DOUBLE', 'DOUBLE', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4377917'), ('2014-07-26 00:44:31', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4377999'), ('2014-07-27 02:46:17', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'INTEST', 'TLE', '0', 'PYTH', 'https://www.codechef.com/viewsolution/4382136'), ('2014-07-27 02:52:14', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'INTEST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4382143'), ('2014-07-27 02:55:35', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'INTEST', 'TLE', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382152'), ('2014-07-27 02:56:53', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'INTEST', 'TLE', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382155'), ('2014-07-27 02:58:43', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'INTEST', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382159'), ('2014-07-27 02:59:30', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'INTEST', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382160'), ('2014-07-27 03:01:22', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'INTEST', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4382164'), ('2014-07-27 03:13:49', 'https://www.codechef.com/PRACTICE/problems/INTEST', 'INTEST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4382175'), ('2014-07-31 22:31:14', 'https://www.codechef.com/PRACTICE/problems/MARBLES', 'MARBLES', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4410407'), ('2014-07-31 22:32:41', 'https://www.codechef.com/PRACTICE/problems/MARBLES', 'MARBLES', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4410421'), ('2014-07-31 22:36:40', 'https://www.codechef.com/PRACTICE/problems/MARBLES', 'MARBLES', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4410455'), ('2014-07-31 22:37:34', 'https://www.codechef.com/PRACTICE/problems/MARBLES', 'MARBLES', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4410461'), ('2014-08-01 16:03:33', 'https://www.codechef.com/AUG14/problems/PRGIFT', 'PRGIFT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4418584'), ('2014-08-01 16:10:06', 'https://www.codechef.com/AUG14/problems/PRGIFT', 'PRGIFT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4418854'), ('2014-08-01 16:16:14', 'https://www.codechef.com/AUG14/problems/PRGIFT', 'PRGIFT', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4419068'), ('2014-08-01 16:28:32', 'https://www.codechef.com/AUG14/problems/PRGIFT', 'PRGIFT', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4419429'), ('2014-08-01 21:14:20', 'https://www.codechef.com/AUG14/problems/PRGIFT', 'PRGIFT', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4427549'), ('2014-08-01 22:22:40', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/4428946'), ('2014-08-01 22:24:47', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4428994'), ('2014-08-01 22:25:57', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4429019'), ('2014-08-01 22:26:55', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4429047'), ('2014-08-02 21:41:49', 'https://www.codechef.com/AUG14/problems/CRAWA', 'CRAWA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4448115'), ('2014-08-02 21:43:44', 'https://www.codechef.com/AUG14/problems/CRAWA', 'CRAWA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4448136'), ('2014-08-02 21:51:09', 'https://www.codechef.com/AUG14/problems/CRAWA', 'CRAWA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4448237'), ('2014-08-02 21:58:27', 'https://www.codechef.com/AUG14/problems/CRAWA', 'CRAWA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4448341'), ('2014-08-02 23:04:07', 'https://www.codechef.com/AUG14/problems/CRAWA', 'CRAWA', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4449507'), ('2014-08-06 14:47:12', 'https://www.codechef.com/AUG14/problems/CLETAB', 'CLETAB', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4494226'), ('2014-08-07 22:22:52', 'https://www.codechef.com/AUG14/problems/CLETAB', 'CLETAB', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4508709'), ('2014-08-07 22:57:57', 'https://www.codechef.com/AUG14/problems/CLETAB', 'CLETAB', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4509134'), ('2014-08-07 23:22:17', 'https://www.codechef.com/AUG14/problems/CLETAB', 'CLETAB', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4509429'), ('2014-08-07 23:31:23', 'https://www.codechef.com/AUG14/problems/CLETAB', 'CLETAB', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4509535'), ('2014-08-10 02:57:09', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4530125'), ('2014-08-10 03:03:19', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4530154'), ('2014-08-10 03:14:11', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4530189'), ('2014-08-10 03:17:14', 'https://www.codechef.com/PRACTICE/problems/PRIME1', 'PRIME1', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4530195'), ('2014-08-10 14:56:08', 'https://www.codechef.com/AUG14/problems/REVERSE', 'REVERSE', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/4533200'), ('2014-08-10 15:14:30', 'https://www.codechef.com/AUG14/problems/REVERSE', 'REVERSE', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4533367'), ('2014-08-10 17:29:15', 'https://www.codechef.com/PRCNSR14/problems/GAME2048', 'GAME2048', 'RE', '0', 'C', 'https://www.codechef.com/viewsolution/4535341'), ('2014-08-10 17:30:22', 'https://www.codechef.com/PRCNSR14/problems/GAME2048', 'GAME2048', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4535393'), ('2014-08-10 17:33:44', 'https://www.codechef.com/PRCNSR14/problems/GAME2048', 'GAME2048', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4535586'), ('2014-08-10 17:34:51', 'https://www.codechef.com/PRCNSR14/problems/GAME2048', 'GAME2048', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4535650'), ('2014-08-10 17:37:42', 'https://www.codechef.com/PRCNSR14/problems/GAME2048', 'GAME2048', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4535810'), ('2014-08-10 17:39:14', 'https://www.codechef.com/PRCNSR14/problems/GAME2048', 'GAME2048', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4535898'), ('2014-08-10 17:40:19', 'https://www.codechef.com/PRCNSR14/problems/GAME2048', 'GAME2048', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4535965'), ('2014-08-10 17:47:23', 'https://www.codechef.com/PRCNSR14/problems/HLPSUG', 'HLPSUG', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4536336'), ('2014-08-10 18:03:45', 'https://www.codechef.com/PRCNSR14/problems/HPYBDAY', 'HPYBDAY', 'TLE', '0', 'C', 'https://www.codechef.com/viewsolution/4537126'), ('2014-08-10 18:25:49', 'https://www.codechef.com/PRCNSR14/problems/HPYBDAY', 'HPYBDAY', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4538160'), ('2014-08-10 18:27:37', 'https://www.codechef.com/PRCNSR14/problems/HPYBDAY', 'HPYBDAY', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4538244'), ('2014-08-10 19:11:26', 'https://www.codechef.com/PRCNSR14/problems/PLTGRP', 'PLTGRP', 'TLE', '0', 'C++11', 'https://www.codechef.com/viewsolution/4539947'), ('2014-10-03 19:51:34', 'https://www.codechef.com/OCT14/problems/CHEFGR', 'CHEFGR', 'AC', '0', 'C++ 4.8.1', 'https://www.codechef.com/viewsolution/4962359'), ('2014-10-03 19:55:30', 'https://www.codechef.com/OCT14/problems/CHEFGR', 'CHEFGR', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4962494'), ('2014-10-04 01:01:28', 'https://www.codechef.com/OCT14/problems/PRLADDU', 'PRLADDU', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4970823'), ('2014-10-04 02:02:38', 'https://www.codechef.com/OCT14/problems/PRLADDU', 'PRLADDU', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/4972114'), ('2014-10-04 02:05:31', 'https://www.codechef.com/OCT14/problems/PRLADDU', 'PRLADDU', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4972172'), ('2014-10-04 02:08:04', 'https://www.codechef.com/OCT14/problems/PRLADDU', 'PRLADDU', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4972219'), ('2014-10-04 02:10:59', 'https://www.codechef.com/OCT14/problems/PRLADDU', 'PRLADDU', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/4972279'), ('2014-10-05 19:11:22', 'https://www.codechef.com/OCT14/problems/FATCHEF', 'FATCHEF', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/5008560'), ('2014-10-05 19:46:59', 'https://www.codechef.com/OCT14/problems/PRPOTION', 'PRPOTION', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5009210'), ('2014-10-05 20:09:50', 'https://www.codechef.com/OCT14/problems/PRPOTION', 'PRPOTION', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/5009564'), ('2014-10-08 01:48:44', 'https://www.codechef.com/OCT14/problems/CHEFSQUA', 'CHEFSQUA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5046189'), ('2014-10-08 19:42:52', 'https://www.codechef.com/OCT14/problems/CHEFSQUA', 'CHEFSQUA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5056254'), ('2014-10-08 20:45:51', 'https://www.codechef.com/OCT14/problems/CHEFSQUA', 'CHEFSQUA', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/5057583'), ('2014-10-08 20:47:41', 'https://www.codechef.com/OCT14/problems/CHEFSQUA', 'CHEFSQUA', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5057620'), ('2014-10-08 20:49:47', 'https://www.codechef.com/OCT14/problems/CHEFSQUA', 'CHEFSQUA', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/5057673'), ('2014-11-07 22:42:18', 'https://www.codechef.com/NOV14/problems/DISCHAR', 'DISCHAR', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5286888'), ('2014-11-08 15:04:37', 'https://www.codechef.com/NOV14/problems/PRPALN', 'PRPALN', 'PS', '35', 'C', 'https://www.codechef.com/viewsolution/5300598'), ('2014-11-08 16:15:45', 'https://www.codechef.com/NOV14/problems/PRPALN', 'PRPALN', 'PS', '35', 'C', 'https://www.codechef.com/viewsolution/5302106'), ('2014-11-08 16:24:02', 'https://www.codechef.com/NOV14/problems/PRPALN', 'PRPALN', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5302275'), ('2014-11-08 16:28:35', 'https://www.codechef.com/NOV14/problems/PRPALN', 'PRPALN', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5302355'), ('2014-11-08 17:36:31', 'https://www.codechef.com/NOV14/problems/CHEFSEG', 'CHEFSEG', 'PS', '40', 'C', 'https://www.codechef.com/viewsolution/5303576'), ('2014-11-08 17:49:57', 'https://www.codechef.com/NOV14/problems/CHEFSEG', 'CHEFSEG', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5303832'), ('2014-11-08 23:45:46', 'https://www.codechef.com/NOV14/problems/RBTREE', 'RBTREE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5310161'), ('2014-11-09 00:16:54', 'https://www.codechef.com/NOV14/problems/RBTREE', 'RBTREE', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5310716'), ('2014-11-09 00:22:33', 'https://www.codechef.com/NOV14/problems/RBTREE', 'RBTREE', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5310827'), ('2014-11-09 20:55:47', 'https://www.codechef.com/NOV14/problems/CHEFWORD', 'CHEFWORD', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5322719'), ('2014-11-09 21:00:47', 'https://www.codechef.com/NOV14/problems/CHEFWORD', 'CHEFWORD', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5322778'), ('2014-11-17 01:56:38', 'https://www.codechef.com/CDSM2014/problems/CHFMAX', 'CHFMAX', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/5414098'), ('2014-11-17 02:10:10', 'https://www.codechef.com/CDSM2014/problems/CHEFTR', 'CHEFTR', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/5414268'), ('2014-12-06 02:22:06', 'https://www.codechef.com/DEC14/problems/CAPPLE', 'CAPPLE', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5499111'), ('2014-12-06 02:27:09', 'https://www.codechef.com/DEC14/problems/CAPPLE', 'CAPPLE', 'PS', '52', 'C', 'https://www.codechef.com/viewsolution/5499146'), ('2014-12-06 02:28:40', 'https://www.codechef.com/DEC14/problems/CAPPLE', 'CAPPLE', 'PS', '52', 'C', 'https://www.codechef.com/viewsolution/5499158'), ('2014-12-06 02:30:42', 'https://www.codechef.com/DEC14/problems/CAPPLE', 'CAPPLE', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5499166'), ('2015-01-02 15:18:34', 'https://www.codechef.com/JAN15/problems/GCDQ', 'GCDQ', 'PS', '40', 'C', 'https://www.codechef.com/viewsolution/5679296'), ('2015-01-02 15:20:33', 'https://www.codechef.com/JAN15/problems/GCDQ', 'GCDQ', 'PS', '40', 'C', 'https://www.codechef.com/viewsolution/5679371'), ('2015-01-02 15:37:03', 'https://www.codechef.com/JAN15/problems/CHEFSTON', 'CHEFSTON', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5679960'), ('2015-01-02 16:16:32', 'https://www.codechef.com/JAN15/problems/GCDQ', 'GCDQ', 'PS', '40', 'C', 'https://www.codechef.com/viewsolution/5681465'), ('2015-01-03 21:23:57', 'https://www.codechef.com/JAN15/problems/GCDQ', 'GCDQ', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5722527'), ('2015-01-03 21:36:43', 'https://www.codechef.com/JAN15/problems/SEAVOTE', 'SEAVOTE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5722845'), ('2015-01-03 21:50:45', 'https://www.codechef.com/JAN15/problems/SEAVOTE', 'SEAVOTE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5723185'), ('2015-01-06 23:28:39', 'https://www.codechef.com/JAN15/problems/SEAVOTE', 'SEAVOTE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5788244'), ('2015-01-06 23:44:15', 'https://www.codechef.com/JAN15/problems/SEAVOTE', 'SEAVOTE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5788578'), ('2015-01-06 23:55:07', 'https://www.codechef.com/JAN15/problems/SEAVOTE', 'SEAVOTE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/5788839'), ('2015-01-07 00:02:10', 'https://www.codechef.com/JAN15/problems/SEAVOTE', 'SEAVOTE', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/5788999'), ('2015-03-07 03:45:05', 'https://www.codechef.com/MARCH15/problems/CNOTE', 'CNOTE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/6413565'), ('2015-03-07 06:18:00', 'https://www.codechef.com/MARCH15/problems/CNOTE', 'CNOTE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/6414065'), ('2015-03-09 22:29:34', 'https://www.codechef.com/MARCH15/problems/CNOTE', 'CNOTE', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/6447577'), ('2015-03-09 22:36:29', 'https://www.codechef.com/MARCH15/problems/CNOTE', 'CNOTE', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/6447698'), ('2015-03-09 22:38:36', 'https://www.codechef.com/MARCH15/problems/CNOTE', 'CNOTE', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/6447737'), ('2015-05-12 02:41:11', 'https://www.codechef.com/MAY15/problems/CHEFRP', 'CHEFRP', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/6900569'), ('2015-05-12 03:05:02', 'https://www.codechef.com/MAY15/problems/CHEFRP', 'CHEFRP', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/6900712'), ('2015-05-13 15:59:16', 'https://www.codechef.com/MAY15/problems/CHAPD', 'CHAPD', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/6917484'), ('2015-05-26 03:53:20', 'https://www.codechef.com/PRACTICE/problems/CFRTEST', 'CFRTEST', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/7024771'), ('2015-05-26 04:46:33', 'https://www.codechef.com/PRACTICE/problems/REARRSTR', 'REARRSTR', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/7024793'), ('2015-05-26 04:54:59', 'https://www.codechef.com/PRACTICE/problems/CHAPD', 'CHAPD', 'AC', '100', 'C++ 4.3.2', 'https://www.codechef.com/viewsolution/7024795'), ('2015-05-30 07:38:40', 'https://www.codechef.com/PRACTICE/problems/PINOCH1', 'PINOCH1', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/7043758'), ('2015-05-30 07:47:02', 'https://www.codechef.com/PRACTICE/problems/PINOCH1', 'PINOCH1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/7044118'), ('2015-05-30 07:49:48', 'https://www.codechef.com/PRACTICE/problems/PINOCH1', 'PINOCH1', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/7044235'), ('2015-05-30 08:04:35', 'https://www.codechef.com/PRACTICE/problems/PINOCH2', 'PINOCH2', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/7044809'), ('2015-05-30 08:09:02', 'https://www.codechef.com/PRACTICE/problems/PINOCH2', 'PINOCH2', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/7044972'), ('2015-05-30 08:27:56', 'https://www.codechef.com/PRACTICE/problems/RACEWARS', 'RACEWARS', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/7045779'), ('2015-05-30 08:28:38', 'https://www.codechef.com/PRACTICE/problems/RACEWARS', 'RACEWARS', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7045826'), ('2015-05-30 08:31:07', 'https://www.codechef.com/PRACTICE/problems/MXZERO', 'MXZERO', 'AC', '0', 'C', 'https://www.codechef.com/viewsolution/7045937'), ('2015-05-30 09:22:29', 'https://www.codechef.com/PRACTICE/problems/RACEWARS', 'RACEWARS', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7046383'), ('2015-05-30 09:34:19', 'https://www.codechef.com/PRACTICE/problems/HOBB', 'HOBB', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/7046431'), ('2015-05-30 12:48:40', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'TICKETS5', 'WA', '0', 'C', 'https://www.codechef.com/viewsolution/7047261'), ('2015-05-30 12:50:41', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'TICKETS5', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/7047270'), ('2015-06-08 22:03:40', 'https://www.codechef.com/JUNE15/problems/CBARG', 'CBARG', 'PS', '30', 'C', 'https://www.codechef.com/viewsolution/7139999'), ('2015-06-08 22:10:35', 'https://www.codechef.com/JUNE15/problems/CBARG', 'CBARG', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/7140098'), ('2015-06-09 17:03:07', 'https://www.codechef.com/JUNE15/problems/CHPLGNS', 'CHPLGNS', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7150141'), ('2015-06-09 22:09:57', 'https://www.codechef.com/JUNE15/problems/CHPLGNS', 'CHPLGNS', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/7153650'), ('2015-06-09 22:11:02', 'https://www.codechef.com/JUNE15/problems/CHPLGNS', 'CHPLGNS', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7153663'), ('2015-06-10 17:52:59', 'https://www.codechef.com/JUNE15/problems/CHPLGNS', 'CHPLGNS', 'PS', '10', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7163596'), ('2015-06-10 18:02:31', 'https://www.codechef.com/JUNE15/problems/CHPLGNS', 'CHPLGNS', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7163696'), ('2015-06-10 23:15:58', 'https://www.codechef.com/JUNE15/problems/CHPLGNS', 'CHPLGNS', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7168947'), ('2015-06-10 23:27:43', 'https://www.codechef.com/PRACTICE/problems/R303', 'R303', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7169121'), ('2015-06-11 00:01:43', 'https://www.codechef.com/PRACTICE/problems/R303', 'R303', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7169540'), ('2015-07-04 02:09:01', 'https://www.codechef.com/JULY15/problems/CHCUBE', 'CHCUBE', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7339812'), ('2015-07-04 02:49:18', 'https://www.codechef.com/JULY15/problems/LCKYST', 'LCKYST', 'PS', '8', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7340359'), ('2015-07-04 02:55:39', 'https://www.codechef.com/JULY15/problems/LCKYST', 'LCKYST', 'PS', '30', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7340422'), ('2015-07-04 02:57:16', 'https://www.codechef.com/JULY15/problems/LCKYST', 'LCKYST', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7340447'), ('2015-07-04 02:59:52', 'https://www.codechef.com/JULY15/problems/LCKYST', 'LCKYST', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7340475'), ('2015-07-06 15:49:58', 'https://www.codechef.com/JULY15/problems/EGBOBRD', 'EGBOBRD', 'PS', '15', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7381337'), ('2015-07-06 15:57:35', 'https://www.codechef.com/JULY15/problems/EGBOBRD', 'EGBOBRD', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7381445'), ('2015-07-07 20:01:02', 'https://www.codechef.com/JULY15/problems/EGBOBRD', 'EGBOBRD', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7399011'), ('2015-07-07 20:05:22', 'https://www.codechef.com/JULY15/problems/EGBOBRD', 'EGBOBRD', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7399073'), ('2015-07-08 00:31:24', 'https://www.codechef.com/JULY15/problems/ADDMUL', 'ADDMUL', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7402380'), ('2015-07-08 00:33:00', 'https://www.codechef.com/JULY15/problems/ADDMUL', 'ADDMUL', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7402406'), ('2015-07-12 10:52:20', 'https://www.codechef.com/JULY15/problems/ADDMUL', 'ADDMUL', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7456100'), ('2015-08-07 17:28:06', 'https://www.codechef.com/AUG15/problems/COOKMACH', 'COOKMACH', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7640195'), ('2015-08-10 17:08:30', 'https://www.codechef.com/AUG15/problems/GRGUY', 'GRGUY', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7720771'), ('2015-08-10 19:18:54', 'https://www.codechef.com/AUG15/problems/ADMAG', 'ADMAG', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/7723401'), ('2015-08-12 06:04:32', 'https://www.codechef.com/AUG15/problems/WOUT', 'WOUT', 'PS', '25', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7751317'), ('2015-08-12 06:10:36', 'https://www.codechef.com/AUG15/problems/WOUT', 'WOUT', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7751339'), ('2015-08-12 06:14:26', 'https://www.codechef.com/AUG15/problems/WOUT', 'WOUT', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7751353'), ('2015-08-16 00:04:50', 'https://www.codechef.com/PRACTICE/problems/RRATING', 'RRATING', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7817713'), ('2015-08-16 00:27:10', 'https://www.codechef.com/PRACTICE/problems/RRATING', 'RRATING', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818066'), ('2015-08-16 00:37:49', 'https://www.codechef.com/PRACTICE/problems/RRATING', 'RRATING', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818234'), ('2015-08-16 00:46:49', 'https://www.codechef.com/PRACTICE/problems/RRATING', 'RRATING', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818371'), ('2015-08-16 00:52:48', 'https://www.codechef.com/PRACTICE/problems/RRATING', 'RRATING', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818462'), ('2015-08-16 01:06:50', 'https://www.codechef.com/PRACTICE/problems/RRATING', 'RRATING', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818659'), ('2015-08-16 01:11:04', 'https://www.codechef.com/PRACTICE/problems/RRATING', 'RRATING', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818713'), ('2015-08-16 01:27:22', 'https://www.codechef.com/PRACTICE/problems/RRATING', 'RRATING', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7818980'), ('2015-08-23 21:36:59', 'https://www.codechef.com/COOK61/problems/CARDLINE', 'CARDLINE', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7898648'), ('2015-08-23 21:41:10', 'https://www.codechef.com/COOK61/problems/TWOSTR', 'TWOSTR', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7898953'), ('2015-08-23 21:58:03', 'https://www.codechef.com/COOK61/problems/XORNUBER', 'XORNUBER', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7901142'), ('2015-08-23 22:06:19', 'https://www.codechef.com/COOK61/problems/XORNUBER', 'XORNUBER', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/7902094'), ('2015-09-10 02:09:12', 'https://www.codechef.com/SEPT15/problems/MSTEP', 'MSTEP', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8102573'), ('2015-09-10 02:51:18', 'https://www.codechef.com/SEPT15/problems/DONUTS', 'DONUTS', 'PS', '30', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8102955'), ('2015-09-10 20:48:37', 'https://www.codechef.com/SEPT15/problems/DONUTS', 'DONUTS', 'PS', '10', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8112817'), ('2015-09-10 21:39:10', 'https://www.codechef.com/SEPT15/problems/DONUTS', 'DONUTS', 'PS', '40', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8113610'), ('2015-09-12 08:08:58', 'https://www.codechef.com/SEPT15/problems/DONUTS', 'DONUTS', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8132761'), ('2015-09-12 08:19:28', 'https://www.codechef.com/SEPT15/problems/DONUTS', 'DONUTS', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8132775'), ('2015-09-12 22:15:45', 'https://www.codechef.com/SEPT15/problems/BANROB', 'BANROB', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142069'), ('2015-09-12 22:23:17', 'https://www.codechef.com/SEPT15/problems/BANROB', 'BANROB', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142165'), ('2015-09-12 22:31:16', 'https://www.codechef.com/SEPT15/problems/BANROB', 'BANROB', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142257'), ('2015-09-12 22:35:11', 'https://www.codechef.com/SEPT15/problems/BANROB', 'BANROB', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142304'), ('2015-09-12 22:52:32', 'https://www.codechef.com/SEPT15/problems/BANROB', 'BANROB', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142551'), ('2015-09-12 22:58:28', 'https://www.codechef.com/SEPT15/problems/BANROB', 'BANROB', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142618'), ('2015-09-12 23:03:31', 'https://www.codechef.com/SEPT15/problems/BANROB', 'BANROB', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8142689'), ('2015-09-12 23:06:41', 'https://www.codechef.com/SEPT15/problems/BANROB', 'BANROB', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/8142738'), ('2015-09-12 23:09:39', 'https://www.codechef.com/SEPT15/problems/BANROB', 'BANROB', 'AC', '100', 'C', 'https://www.codechef.com/viewsolution/8142768'), ('2015-09-20 22:05:39', 'https://www.codechef.com/COOK62/problems/FRGTNLNG', 'FRGTNLNG', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8212884'), ('2015-09-20 22:34:31', 'https://www.codechef.com/COOK62/problems/STACKS', 'STACKS', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8215005'), ('2015-09-20 23:10:47', 'https://www.codechef.com/COOK62/problems/STACKS', 'STACKS', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8217486'), ('2015-09-20 23:16:22', 'https://www.codechef.com/COOK62/problems/STACKS', 'STACKS', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8217838'), ('2015-09-21 13:34:29', 'https://www.codechef.com/PRACTICE/problems/FRGTNLNG', 'FRGTNLNG', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8222436'), ('2015-09-25 21:08:04', 'https://www.codechef.com/PRACTICE/problems/TPRODUCT', 'TPRODUCT', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8245383'), ('2015-09-25 21:15:54', 'https://www.codechef.com/PRACTICE/problems/TPRODUCT', 'TPRODUCT', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8245418'), ('2015-09-25 21:30:38', 'https://www.codechef.com/PRACTICE/problems/TPRODUCT', 'TPRODUCT', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8245472'), ('2015-09-25 21:37:47', 'https://www.codechef.com/PRACTICE/problems/TPRODUCT', 'TPRODUCT', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8245498'), ('2015-09-27 19:14:01', 'https://www.codechef.com/PRACTICE/problems/SPALNUM', 'SPALNUM', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8266897'), ('2015-09-27 19:19:39', 'https://www.codechef.com/PRACTICE/problems/SPALNUM', 'SPALNUM', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8267017'), ('2015-09-27 19:23:52', 'https://www.codechef.com/PRACTICE/problems/SPALNUM', 'SPALNUM', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8267096'), ('2015-09-29 21:53:04', 'https://www.codechef.com/PRACTICE/problems/LUCKY', 'LUCKY', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8280451'), ('2015-10-20 09:59:02', 'https://www.codechef.com/PRACTICE/problems/ASP', 'ASP', 'WA', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8594490'), ('2015-10-20 10:00:30', 'https://www.codechef.com/PRACTICE/problems/ASP', 'ASP', 'AC', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8594496'), ('2015-12-14 23:46:01', 'https://www.codechef.com/PRACTICE/problems/CHEFST', 'CHEFST', 'TLE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8959065'), ('2015-12-14 23:47:46', 'https://www.codechef.com/PRACTICE/problems/CHEFST', 'CHEFST', 'PS', '30', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8959080'), ('2015-12-15 00:01:01', 'https://www.codechef.com/PRACTICE/problems/CHEFST', 'CHEFST', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/8959153'), ('2016-05-14 16:46:03', 'https://www.codechef.com/PRACTICE/problems/KOL1509', 'KOL1509', 'RE', '0', 'C++14', 'https://www.codechef.com/viewsolution/10082758'), ('2016-06-05 13:55:56', 'https://www.codechef.com/JUNE16/problems/DEVARRAY', 'DEVARRAY', 'CE', '0', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/10333457'), ('2016-06-05 13:59:32', 'https://www.codechef.com/JUNE16/problems/DEVARRAY', 'DEVARRAY', 'AC', '100', 'C++ 4.9.2', 'https://www.codechef.com/viewsolution/10333552'), ('2017-11-03 00:35:24', 'https://www.codechef.com/PRACTICE/problems/BLACKCOM', 'BLACKCOM', 'CE', '0', 'C++ 6.3', 'https://www.codechef.com/viewsolution/16037895'), ('2017-11-03 00:41:17', 'https://www.codechef.com/PRACTICE/problems/BLACKCOM', 'BLACKCOM', 'WA', '0', 'PYTH', 'https://www.codechef.com/viewsolution/16037935'), ('2017-12-03 19:26:28', 'https://www.codechef.com/PRACTICE/problems/WEICOM', 'WEICOM', 'WA', '0', 'PYTH', 'https://www.codechef.com/viewsolution/16433447'), ('2018-10-07 19:12:16', 'https://www.codechef.com/PRACTICE/problems/BLACKCOM', 'BLACKCOM', 'CE', '0', 'C++14', 'https://www.codechef.com/viewsolution/20545692'), ('2018-10-23 22:36:07', 'https://www.codechef.com/PRACTICE/problems/SURCHESS', 'SURCHESS', 'CE', '0', 'C++14', 'https://www.codechef.com/viewsolution/21187090'), ('2018-11-07 12:50:39', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'TICKETS5', 'CE', '0', 'C', 'https://www.codechef.com/viewsolution/21518903'), ('2018-11-07 12:51:53', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'TICKETS5', 'WA', '0', 'C++14', 'https://www.codechef.com/viewsolution/21518924'), ('2018-11-07 12:57:36', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'TICKETS5', 'WA', '0', 'C++14', 'https://www.codechef.com/viewsolution/21519029'), ('2018-11-07 12:58:22', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'TICKETS5', 'WA', '0', 'C++14', 'https://www.codechef.com/viewsolution/21519043'), ('2018-11-07 13:00:37', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'TICKETS5', 'WA', '0', 'C++14', 'https://www.codechef.com/viewsolution/21519089'), ('2018-11-07 13:02:45', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'TICKETS5', 'PS', '50', 'C++14', 'https://www.codechef.com/viewsolution/21519127'), ('2018-11-07 13:08:22', 'https://www.codechef.com/PRACTICE/problems/TICKETS5', 'TICKETS5', 'AC', '100', 'C++14', 'https://www.codechef.com/viewsolution/21519248')], + "CodeForces": [('2014-06-20 14:16:29', 'http://www.codeforces.com/problemset/problem/443/A', 'Anton and Letters', 'CE', '0', 'GNU C', 'http://www.codeforces.com/contest/443/submission/6926377'), ('2014-06-20 14:17:29', 'http://www.codeforces.com/problemset/problem/443/A', 'Anton and Letters', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/443/submission/6926384'), ('2014-06-20 15:14:05', 'http://www.codeforces.com/problemset/problem/1/A', 'Theatre Square', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/1/submission/6926712'), ('2014-06-20 15:19:19', 'http://www.codeforces.com/problemset/problem/1/A', 'Theatre Square', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/1/submission/6926744'), ('2014-06-20 15:35:33', 'http://www.codeforces.com/problemset/problem/1/A', 'Theatre Square', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/1/submission/6926822'), ('2014-06-20 15:40:22', 'http://www.codeforces.com/problemset/problem/4/A', 'Watermelon', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/4/submission/6926854'), ('2014-06-20 15:42:27', 'http://www.codeforces.com/problemset/problem/4/A', 'Watermelon', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/4/submission/6926866'), ('2014-06-20 16:19:41', 'http://www.codeforces.com/problemset/problem/158/A', 'Next Round', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/6927039'), ('2014-06-20 16:21:59', 'http://www.codeforces.com/problemset/problem/158/A', 'Next Round', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/6927057'), ('2014-06-20 16:35:40', 'http://www.codeforces.com/problemset/problem/158/A', 'Next Round', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/6927122'), ('2014-06-20 23:33:02', 'http://www.codeforces.com/problemset/problem/158/B', 'Taxi', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/6930033'), ('2014-06-20 23:46:50', 'http://www.codeforces.com/problemset/problem/158/B', 'Taxi', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/6930628'), ('2014-06-21 00:23:15', 'http://www.codeforces.com/problemset/problem/131/A', 'cAPS lOCK', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6930791'), ('2014-06-21 00:26:44', 'http://www.codeforces.com/problemset/problem/131/A', 'cAPS lOCK', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6930810'), ('2014-06-21 00:28:48', 'http://www.codeforces.com/problemset/problem/131/A', 'cAPS lOCK', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6930817'), ('2014-06-21 00:31:03', 'http://www.codeforces.com/problemset/problem/131/A', 'cAPS lOCK', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6930830'), ('2014-06-21 01:21:34', 'http://www.codeforces.com/problemset/problem/160/A', 'Twins', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/160/submission/6931006'), ('2014-06-21 01:24:10', 'http://www.codeforces.com/problemset/problem/160/A', 'Twins', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/160/submission/6931013'), ('2014-06-21 01:28:28', 'http://www.codeforces.com/problemset/problem/160/A', 'Twins', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/160/submission/6931031'), ('2014-06-21 01:42:08', 'http://www.codeforces.com/problemset/problem/131/C', 'The World is a Theatre', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931087'), ('2014-06-21 01:55:26', 'http://www.codeforces.com/problemset/problem/131/C', 'The World is a Theatre', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931137'), ('2014-06-21 01:58:07', 'http://www.codeforces.com/problemset/problem/131/C', 'The World is a Theatre', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931156'), ('2014-06-21 01:59:17', 'http://www.codeforces.com/problemset/problem/131/C', 'The World is a Theatre', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931160'), ('2014-06-21 02:02:30', 'http://www.codeforces.com/problemset/problem/131/C', 'The World is a Theatre', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931170'), ('2014-06-21 02:04:53', 'http://www.codeforces.com/problemset/problem/131/C', 'The World is a Theatre', 'RE', '0', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931181'), ('2014-06-21 02:14:48', 'http://www.codeforces.com/problemset/problem/131/C', 'The World is a Theatre', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/131/submission/6931213'), ('2014-06-21 20:42:21', 'http://www.codeforces.com/problemset/problem/160/A', 'Twins', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/160/submission/6938158'), ('2014-06-28 01:04:59', 'http://www.codeforces.com/problemset/problem/268/B', 'Buttons', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/268/submission/6971649'), ('2014-06-28 02:06:43', 'http://www.codeforces.com/problemset/problem/37/A', 'Towers', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/37/submission/6971879'), ('2014-07-17 00:31:42', 'http://www.codeforces.com/problemset/problem/71/A', 'Way Too Long Words', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/71/submission/7118436'), ('2014-07-17 00:46:44', 'http://www.codeforces.com/problemset/problem/43/B', 'Letter', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/43/submission/7118520'), ('2014-07-24 15:36:56', 'http://www.codeforces.com/problemset/problem/447/A', 'DZY Loves Hash', 'CE', '0', 'GNU C++', 'http://www.codeforces.com/contest/447/submission/7215463'), ('2014-07-24 15:39:56', 'http://www.codeforces.com/problemset/problem/447/A', 'DZY Loves Hash', 'CE', '0', 'GNU C', 'http://www.codeforces.com/contest/447/submission/7215478'), ('2014-07-24 15:42:59', 'http://www.codeforces.com/problemset/problem/447/A', 'DZY Loves Hash', 'AC', '100', 'GNU C', 'http://www.codeforces.com/contest/447/submission/7215497'), ('2014-08-08 17:12:35', 'http://www.codeforces.com/problemset/problem/454/A', 'Little Pony and Crystal Mine', 'AC', '100', 'GNU C', 'http://www.codeforces.com/contest/454/submission/7375767'), ('2014-08-08 22:25:32', 'http://www.codeforces.com/problemset/problem/456/A', 'Laptops', 'CE', '0', 'GNU C', 'http://www.codeforces.com/contest/456/submission/7391497'), ('2014-08-08 22:30:29', 'http://www.codeforces.com/problemset/problem/456/A', 'Laptops', 'TLE', '0', 'GNU C', 'http://www.codeforces.com/contest/456/submission/7392085'), ('2014-08-10 01:55:39', 'http://www.codeforces.com/problemset/problem/456/A', 'Laptops', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/456/submission/7408524'), ('2014-08-10 01:57:55', 'http://www.codeforces.com/problemset/problem/456/A', 'Laptops', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/456/submission/7408534'), ('2014-08-10 02:03:27', 'http://www.codeforces.com/problemset/problem/456/A', 'Laptops', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/456/submission/7408554'), ('2014-08-10 02:08:35', 'http://www.codeforces.com/problemset/problem/456/A', 'Laptops', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/456/submission/7408575'), ('2014-08-10 02:18:38', 'http://www.codeforces.com/problemset/problem/456/A', 'Laptops', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/456/submission/7408617'), ('2014-08-10 02:28:59', 'http://www.codeforces.com/problemset/problem/456/A', 'Laptops', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/456/submission/7408646'), ('2014-08-31 16:22:26', 'http://www.codeforces.com/problemset/problem/87/A', 'Trains', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/87/submission/7653363'), ('2014-09-28 22:07:52', 'http://www.codeforces.com/problemset/problem/472/A', 'Design Tutorial: Learn from Math', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/472/submission/8007179'), ('2014-09-28 22:11:15', 'http://www.codeforces.com/problemset/problem/472/A', 'Design Tutorial: Learn from Math', 'AC', '100', 'GNU C', 'http://www.codeforces.com/contest/472/submission/8007515'), ('2014-09-28 23:07:59', 'http://www.codeforces.com/problemset/problem/472/B', 'Design Tutorial: Learn from Life', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/472/submission/8012494'), ('2014-09-28 23:24:42', 'http://www.codeforces.com/problemset/problem/472/B', 'Design Tutorial: Learn from Life', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/472/submission/8013925'), ('2014-09-28 23:32:59', 'http://www.codeforces.com/problemset/problem/472/B', 'Design Tutorial: Learn from Life', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/472/submission/8014748'), ('2014-09-29 02:27:25', 'http://www.codeforces.com/problemset/problem/472/B', 'Design Tutorial: Learn from Life', 'AC', '100', 'GNU C', 'http://www.codeforces.com/contest/472/submission/8017466'), ('2014-09-29 02:30:15', 'http://www.codeforces.com/problemset/problem/472/B', 'Design Tutorial: Learn from Life', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/472/submission/8017497'), ('2014-10-06 21:28:24', 'http://www.codeforces.com/problemset/problem/474/A', 'Keyboard', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/474/submission/8112225'), ('2014-10-06 21:34:57', 'http://www.codeforces.com/problemset/problem/474/A', 'Keyboard', 'AC', '100', 'GNU C', 'http://www.codeforces.com/contest/474/submission/8113048'), ('2014-10-06 23:10:09', 'http://www.codeforces.com/problemset/problem/474/B', 'Worms', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/474/submission/8120096'), ('2014-10-07 02:58:44', 'http://www.codeforces.com/problemset/problem/474/B', 'Worms', 'AC', '100', 'GNU C', 'http://www.codeforces.com/contest/474/submission/8123462'), ('2014-10-07 03:55:46', 'http://www.codeforces.com/problemset/problem/474/D', 'Flowers', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/474/submission/8123773'), ('2014-10-07 04:02:21', 'http://www.codeforces.com/problemset/problem/474/D', 'Flowers', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/474/submission/8123802'), ('2015-07-13 19:46:13', 'http://www.codeforces.com/problemset/problem/550/A', 'Two Substrings', 'CE', '0', 'GNU C', 'http://www.codeforces.com/contest/550/submission/12030270'), ('2015-07-13 19:46:47', 'http://www.codeforces.com/problemset/problem/550/A', 'Two Substrings', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/550/submission/12030276'), ('2015-07-13 20:00:28', 'http://www.codeforces.com/problemset/problem/550/A', 'Two Substrings', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/550/submission/12030404'), ('2015-07-13 20:22:36', 'http://www.codeforces.com/problemset/problem/550/B', 'Preparing Olympiad', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/550/submission/12030587'), ('2015-07-13 20:55:12', 'http://www.codeforces.com/problemset/problem/538/A', 'Cutting Banner', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/538/submission/12030895'), ('2015-07-13 20:56:42', 'http://www.codeforces.com/problemset/problem/538/A', 'Cutting Banner', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/538/submission/12030903'), ('2015-07-13 21:17:47', 'http://www.codeforces.com/problemset/problem/538/B', 'Quasi Binary', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/538/submission/12031083'), ('2015-07-13 21:32:43', 'http://www.codeforces.com/problemset/problem/538/B', 'Quasi Binary', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/538/submission/12031229'), ('2015-07-13 23:04:36', 'http://www.codeforces.com/problemset/problem/409/H', 'A + B Strikes Back', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/409/submission/12031995'), ('2015-07-13 23:07:06', 'http://www.codeforces.com/problemset/problem/409/H', 'A + B Strikes Back', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/409/submission/12032008'), ('2015-07-13 23:08:06', 'http://www.codeforces.com/problemset/problem/409/H', 'A + B Strikes Back', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/409/submission/12032015'), ('2015-07-13 23:08:45', 'http://www.codeforces.com/problemset/problem/409/H', 'A + B Strikes Back', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/409/submission/12032021'), ('2015-07-13 23:09:16', 'http://www.codeforces.com/problemset/problem/409/H', 'A + B Strikes Back', 'WA', '0', 'GNU C', 'http://www.codeforces.com/contest/409/submission/12032027'), ('2015-07-13 23:10:05', 'http://www.codeforces.com/problemset/problem/409/H', 'A + B Strikes Back', 'AC', '100', 'GNU C', 'http://www.codeforces.com/contest/409/submission/12032034'), ('2015-08-22 22:26:26', 'http://www.codeforces.com/problemset/problem/572/A', 'Arrays', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/572/submission/12650084'), ('2015-08-22 22:54:57', 'http://www.codeforces.com/problemset/problem/572/B', 'Order Book', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/572/submission/12655042'), ('2015-08-22 23:20:25', 'http://www.codeforces.com/problemset/problem/572/B', 'Order Book', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/572/submission/12658463'), ('2015-08-29 22:25:27', 'http://www.codeforces.com/problemset/problem/574/A', 'Bear and Elections', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/12750171'), ('2015-08-29 22:28:28', 'http://www.codeforces.com/problemset/problem/574/A', 'Bear and Elections', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/12750679'), ('2015-08-29 22:52:25', 'http://www.codeforces.com/problemset/problem/574/C', 'Bear and Poker', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/12754477'), ('2015-08-30 00:49:08', 'http://www.codeforces.com/problemset/problem/574/C', 'Bear and Poker', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/12765492'), ('2015-08-30 00:52:15', 'http://www.codeforces.com/problemset/problem/574/C', 'Bear and Poker', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/12765623'), ('2015-09-02 20:37:01', 'http://www.codeforces.com/problemset/problem/560/A', 'Currency System in Geraldion', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/560/submission/12817055'), ('2015-09-02 20:52:50', 'http://www.codeforces.com/problemset/problem/560/B', 'Gerald is into Art', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/560/submission/12817234'), ('2015-09-02 21:19:30', 'http://www.codeforces.com/problemset/problem/560/B', 'Gerald is into Art', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/560/submission/12817559'), ('2015-09-02 21:23:37', 'http://www.codeforces.com/problemset/problem/560/B', 'Gerald is into Art', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/560/submission/12817612'), ('2015-09-10 22:08:56', 'http://www.codeforces.com/problemset/problem/577/A', 'Multiplication Table', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/577/submission/12928002'), ('2015-09-10 22:57:34', 'http://www.codeforces.com/problemset/problem/577/C', "Vasya and Petya's Game", 'RE', '0', 'GNU C++', 'http://www.codeforces.com/contest/577/submission/12937380'), ('2015-09-10 23:24:19', 'http://www.codeforces.com/problemset/problem/577/C', "Vasya and Petya's Game", 'RE', '0', 'GNU C++', 'http://www.codeforces.com/contest/577/submission/12941164'), ('2015-09-10 23:35:13', 'http://www.codeforces.com/problemset/problem/577/C', "Vasya and Petya's Game", 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/577/submission/12942378'), ('2015-09-18 09:26:35', 'http://www.codeforces.com/problemset/problem/574/B', 'Bear and Three Musketeers', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080029'), ('2015-09-18 09:35:11', 'http://www.codeforces.com/problemset/problem/574/B', 'Bear and Three Musketeers', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080083'), ('2015-09-18 09:40:54', 'http://www.codeforces.com/problemset/problem/574/B', 'Bear and Three Musketeers', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080104'), ('2015-09-18 09:50:57', 'http://www.codeforces.com/problemset/problem/574/B', 'Bear and Three Musketeers', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080162'), ('2015-09-18 10:57:39', 'http://www.codeforces.com/problemset/problem/574/B', 'Bear and Three Musketeers', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/574/submission/13080670'), ('2015-09-19 10:04:18', 'http://www.codeforces.com/problemset/problem/158/B', 'Taxi', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096185'), ('2015-09-19 10:06:16', 'http://www.codeforces.com/problemset/problem/158/B', 'Taxi', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096197'), ('2015-09-19 10:09:39', 'http://www.codeforces.com/problemset/problem/158/B', 'Taxi', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096220'), ('2015-09-19 10:13:38', 'http://www.codeforces.com/problemset/problem/158/B', 'Taxi', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096250'), ('2015-09-19 10:17:36', 'http://www.codeforces.com/problemset/problem/158/B', 'Taxi', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/158/submission/13096280'), ('2015-09-19 16:27:37', 'http://www.codeforces.com/problemset/problem/160/A', 'Twins', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/160/submission/13100273'), ('2015-09-19 17:17:56', 'http://www.codeforces.com/problemset/problem/550/C', 'Divisibility by Eight', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/550/submission/13100937'), ('2015-09-19 20:29:07', 'http://www.codeforces.com/problemset/problem/519/B', 'A and B and Compilation Errors', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/519/submission/13103565'), ('2015-09-20 08:58:02', 'http://www.codeforces.com/problemset/problem/204/B', 'Little Elephant and Cards', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109387'), ('2015-09-20 09:05:26', 'http://www.codeforces.com/problemset/problem/204/B', 'Little Elephant and Cards', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109421'), ('2015-09-20 09:10:19', 'http://www.codeforces.com/problemset/problem/204/B', 'Little Elephant and Cards', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109436'), ('2015-09-20 09:15:40', 'http://www.codeforces.com/problemset/problem/204/B', 'Little Elephant and Cards', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109456'), ('2015-09-20 09:19:16', 'http://www.codeforces.com/problemset/problem/204/B', 'Little Elephant and Cards', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/204/submission/13109467'), ('2015-09-22 22:07:10', 'http://www.codeforces.com/problemset/problem/580/A', 'Kefa and First Steps', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13145925'), ('2015-09-22 22:29:58', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13152519'), ('2015-09-22 23:18:24', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13162731'), ('2015-09-22 23:24:31', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13163770'), ('2015-09-22 23:25:35', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13163942'), ('2015-09-22 23:29:09', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13164502'), ('2015-09-23 00:49:34', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13171251'), ('2015-09-23 01:03:37', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13171838'), ('2015-09-23 01:38:14', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13172926'), ('2015-09-23 14:55:02', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13181387'), ('2015-09-23 18:14:51', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13185934'), ('2015-09-23 18:16:58', 'http://www.codeforces.com/problemset/problem/580/B', 'Kefa and Company', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13185991'), ('2015-09-23 19:08:23', 'http://www.codeforces.com/problemset/problem/580/C', 'Kefa and Park', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13187242'), ('2015-09-23 19:24:05', 'http://www.codeforces.com/problemset/problem/580/C', 'Kefa and Park', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13187823'), ('2015-09-23 19:30:09', 'http://www.codeforces.com/problemset/problem/580/C', 'Kefa and Park', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/13187946'), ('2015-09-27 19:40:44', 'http://www.codeforces.com/problemset/problem/4/C', 'Registration System', 'CE', '0', 'GNU C++', 'http://www.codeforces.com/contest/4/submission/13250390'), ('2015-09-27 19:41:55', 'http://www.codeforces.com/problemset/problem/4/C', 'Registration System', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/4/submission/13250410'), ('2015-09-27 21:19:48', 'http://www.codeforces.com/problemset/problem/159/C', 'String Manipulation 1.0', 'MLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/159/submission/13251760'), ('2015-09-28 14:34:58', 'http://www.codeforces.com/problemset/problem/581/A', 'Vasya the Hipster', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13260798'), ('2015-09-28 14:44:20', 'http://www.codeforces.com/problemset/problem/581/B', 'Luxurious Houses', 'RE', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13263305'), ('2015-09-28 14:56:03', 'http://www.codeforces.com/problemset/problem/581/C', 'Developing Skills', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13265626'), ('2015-09-28 15:17:41', 'http://www.codeforces.com/problemset/problem/581/C', 'Developing Skills', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13268882'), ('2015-09-29 12:10:51', 'http://www.codeforces.com/problemset/problem/581/B', 'Luxurious Houses', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292365'), ('2015-09-29 12:22:40', 'http://www.codeforces.com/problemset/problem/581/B', 'Luxurious Houses', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292509'), ('2015-09-29 12:34:16', 'http://www.codeforces.com/problemset/problem/581/C', 'Developing Skills', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292656'), ('2015-09-29 12:43:38', 'http://www.codeforces.com/problemset/problem/581/C', 'Developing Skills', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292768'), ('2015-09-29 12:47:20', 'http://www.codeforces.com/problemset/problem/581/B', 'Luxurious Houses', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292809'), ('2015-09-29 12:48:18', 'http://www.codeforces.com/problemset/problem/581/C', 'Developing Skills', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13292817'), ('2015-09-29 13:10:59', 'http://www.codeforces.com/problemset/problem/581/C', 'Developing Skills', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13293101'), ('2015-09-29 13:32:07', 'http://www.codeforces.com/problemset/problem/581/C', 'Developing Skills', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13293354'), ('2015-09-29 17:43:48', 'http://www.codeforces.com/problemset/problem/581/C', 'Developing Skills', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/581/submission/13297010'), ('2015-09-29 20:59:18', 'http://www.codeforces.com/problemset/problem/263/A', 'Beautiful Matrix', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/263/submission/13300553'), ('2015-09-29 21:14:53', 'http://www.codeforces.com/problemset/problem/118/B', 'Present from Lena', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/118/submission/13300823'), ('2015-09-29 21:29:52', 'http://www.codeforces.com/problemset/problem/118/B', 'Present from Lena', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/118/submission/13301123'), ('2015-10-03 18:44:23', 'http://www.codeforces.com/problemset/problem/268/B', 'Buttons', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/268/submission/13359900'), ('2015-10-03 20:04:32', 'http://www.codeforces.com/problemset/problem/569/B', 'Inventory', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/569/submission/13360927'), ('2015-10-03 20:06:13', 'http://www.codeforces.com/problemset/problem/569/B', 'Inventory', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/569/submission/13360949'), ('2015-10-03 21:05:23', 'http://www.codeforces.com/problemset/problem/525/C', 'Ilya and Sticks', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/525/submission/13361790'), ('2015-10-03 21:06:58', 'http://www.codeforces.com/problemset/problem/525/C', 'Ilya and Sticks', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/525/submission/13361810'), ('2015-10-03 21:09:02', 'http://www.codeforces.com/problemset/problem/525/C', 'Ilya and Sticks', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/525/submission/13361836'), ('2015-10-03 22:25:41', 'http://www.codeforces.com/problemset/problem/583/A', 'Asphalting Roads', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/583/submission/13365272'), ('2015-10-03 23:30:49', 'http://www.codeforces.com/problemset/problem/583/B', "Robot's Task", 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/583/submission/13378169'), ('2015-10-06 22:05:41', 'http://www.codeforces.com/problemset/problem/584/A', 'Olesya and Rodion', 'TLE', '0', 'Python 2', 'http://www.codeforces.com/contest/584/submission/13436363'), ('2015-10-06 22:17:59', 'http://www.codeforces.com/problemset/problem/584/A', 'Olesya and Rodion', 'WA', '0', 'Python 2', 'http://www.codeforces.com/contest/584/submission/13440624'), ('2015-10-06 22:24:51', 'http://www.codeforces.com/problemset/problem/584/A', 'Olesya and Rodion', 'CE', '0', 'GNU C++', 'http://www.codeforces.com/contest/584/submission/13442261'), ('2015-10-06 22:25:07', 'http://www.codeforces.com/problemset/problem/584/A', 'Olesya and Rodion', 'CE', '0', 'Python 2', 'http://www.codeforces.com/contest/584/submission/13442319'), ('2015-10-06 22:26:42', 'http://www.codeforces.com/problemset/problem/584/A', 'Olesya and Rodion', 'AC', '100', 'Python 2', 'http://www.codeforces.com/contest/584/submission/13442651'), ('2015-10-06 22:52:47', 'http://www.codeforces.com/problemset/problem/584/B', 'Kolya and Tanya ', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/584/submission/13447777'), ('2015-10-06 22:58:59', 'http://www.codeforces.com/problemset/problem/584/B', 'Kolya and Tanya ', 'AC', '100', 'Python 2', 'http://www.codeforces.com/contest/584/submission/13448876'), ('2015-10-06 23:14:57', 'http://www.codeforces.com/problemset/problem/584/C', 'Marina and Vasya', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/584/submission/13451585'), ('2015-10-06 23:35:46', 'http://www.codeforces.com/problemset/problem/584/C', 'Marina and Vasya', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/584/submission/13454813'), ('2015-10-06 23:44:55', 'http://www.codeforces.com/problemset/problem/584/C', 'Marina and Vasya', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/584/submission/13456081'), ('2015-10-07 01:04:27', 'http://www.codeforces.com/problemset/problem/584/B', 'Kolya and Tanya ', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/584/submission/13460503'), ('2015-10-07 18:02:31', 'http://www.codeforces.com/problemset/problem/584/A', 'Olesya and Rodion', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/584/submission/13473005'), ('2015-10-08 21:26:54', 'http://www.codeforces.com/problemset/problem/92/B', 'Binary Number', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/92/submission/13496730'), ('2015-10-09 01:22:57', 'http://www.codeforces.com/problemset/problem/456/A', 'Laptops', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/456/submission/13500243'), ('2015-10-09 01:35:03', 'http://www.codeforces.com/problemset/problem/52/A', '123-sequence', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/52/submission/13500398'), ('2015-10-09 06:38:55', 'http://www.codeforces.com/problemset/problem/266/B', 'Queue at the School', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/266/submission/13502318'), ('2015-10-09 06:45:08', 'http://www.codeforces.com/problemset/problem/479/A', 'Expression', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/479/submission/13502351'), ('2015-10-09 06:46:35', 'http://www.codeforces.com/problemset/problem/479/A', 'Expression', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/479/submission/13502358'), ('2015-10-09 06:50:39', 'http://www.codeforces.com/problemset/problem/61/A', 'Ultra-Fast Mathematician', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/61/submission/13502387'), ('2015-10-09 07:03:29', 'http://www.codeforces.com/problemset/problem/462/B', 'Appleman and Card Game', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/462/submission/13502451'), ('2015-10-09 07:05:19', 'http://www.codeforces.com/problemset/problem/462/B', 'Appleman and Card Game', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/462/submission/13502463'), ('2015-10-09 07:06:54', 'http://www.codeforces.com/problemset/problem/462/B', 'Appleman and Card Game', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/462/submission/13502474'), ('2015-10-09 22:47:48', 'http://www.codeforces.com/problemset/problem/266/B', 'Queue at the School', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/266/submission/13514395'), ('2015-10-09 23:14:22', 'http://www.codeforces.com/problemset/problem/525/B', 'Pasha and String', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/525/submission/13514840'), ('2015-10-09 23:30:20', 'http://www.codeforces.com/problemset/problem/525/B', 'Pasha and String', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/525/submission/13515120'), ('2015-10-11 04:08:55', 'http://www.codeforces.com/problemset/problem/478/A', 'Initial Bet', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/478/submission/13538926'), ('2015-10-11 04:10:18', 'http://www.codeforces.com/problemset/problem/478/A', 'Initial Bet', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/478/submission/13538931'), ('2015-10-11 04:28:02', 'http://www.codeforces.com/problemset/problem/459/B', 'Pashmak and Flowers', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/459/submission/13538989'), ('2015-10-11 04:29:51', 'http://www.codeforces.com/problemset/problem/459/B', 'Pashmak and Flowers', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/459/submission/13538995'), ('2015-10-11 04:37:27', 'http://www.codeforces.com/problemset/problem/459/B', 'Pashmak and Flowers', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/459/submission/13539018'), ('2015-10-25 14:34:14', 'http://www.codeforces.com/problemset/problem/591/A', "Wizards' Duel", 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/591/submission/13836193'), ('2015-10-25 14:50:25', 'http://www.codeforces.com/problemset/problem/591/B', 'Rebranding', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/591/submission/13839725'), ('2015-10-25 15:34:56', 'http://www.codeforces.com/problemset/problem/591/C', 'Median Smoothing', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/591/submission/13845641'), ('2015-10-25 15:38:20', 'http://www.codeforces.com/problemset/problem/591/C', 'Median Smoothing', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/591/submission/13846000'), ('2015-10-25 22:51:09', 'http://www.codeforces.com/problemset/problem/591/B', 'Rebranding', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/591/submission/13857177'), ('2015-10-25 23:23:19', 'http://www.codeforces.com/problemset/problem/591/B', 'Rebranding', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/591/submission/13857740'), ('2015-10-26 10:46:53', 'http://www.codeforces.com/problemset/problem/591/B', 'Rebranding', 'RE', '0', 'GNU C++', 'http://www.codeforces.com/contest/591/submission/13866457'), ('2015-10-26 10:53:43', 'http://www.codeforces.com/problemset/problem/591/B', 'Rebranding', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/591/submission/13866518'), ('2015-10-26 19:50:00', 'http://www.codeforces.com/problemset/problem/160/B', 'Unlucky Ticket', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/160/submission/13873974'), ('2015-10-27 02:45:23', 'http://www.codeforces.com/problemset/problem/99/A', 'Help Far Away Kingdom', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/99/submission/13881024'), ('2015-10-27 03:13:34', 'http://www.codeforces.com/problemset/problem/12/B', 'Correct Solution?', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/12/submission/13881211'), ('2015-10-28 06:05:19', 'http://www.codeforces.com/problemset/problem/405/C', 'Unusual Product', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/405/submission/13906955'), ('2015-10-28 08:04:56', 'http://www.codeforces.com/problemset/problem/270/B', 'Multithreading', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/270/submission/13907587'), ('2015-10-28 21:42:49', 'http://www.codeforces.com/problemset/problem/525/C', 'Ilya and Sticks', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/525/submission/13918621'), ('2015-10-28 23:48:03', 'http://www.codeforces.com/problemset/problem/285/C', 'Building Permutation', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/285/submission/13920882'), ('2015-10-28 23:49:59', 'http://www.codeforces.com/problemset/problem/285/C', 'Building Permutation', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/285/submission/13920913'), ('2015-10-30 10:34:56', 'http://www.codeforces.com/problemset/problem/245/A', 'System Administrator', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/245/submission/13946807'), ('2015-10-30 10:49:01', 'http://www.codeforces.com/problemset/problem/102/B', 'Sum of Digits', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/102/submission/13946899'), ('2015-10-30 10:53:35', 'http://www.codeforces.com/problemset/problem/102/B', 'Sum of Digits', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/102/submission/13946926'), ('2015-10-31 22:14:30', 'http://www.codeforces.com/problemset/problem/592/A', 'PawnChess', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/592/submission/13975670'), ('2015-10-31 22:29:27', 'http://www.codeforces.com/problemset/problem/592/B', 'The Monster and the Squirrel', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/592/submission/13978806'), ('2015-10-31 22:58:55', 'http://www.codeforces.com/problemset/problem/592/C', 'The Big Race', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/592/submission/13983585'), ('2015-10-31 23:11:05', 'http://www.codeforces.com/problemset/problem/592/C', 'The Big Race', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/592/submission/13985339'), ('2015-11-01 01:46:31', 'http://www.codeforces.com/problemset/problem/592/C', 'The Big Race', 'WA', '0', 'Python 2', 'http://www.codeforces.com/contest/592/submission/13993129'), ('2015-11-01 02:00:03', 'http://www.codeforces.com/problemset/problem/592/C', 'The Big Race', 'WA', '0', 'Python 2', 'http://www.codeforces.com/contest/592/submission/13993447'), ('2015-11-01 02:04:32', 'http://www.codeforces.com/problemset/problem/592/C', 'The Big Race', 'WA', '0', 'Python 2', 'http://www.codeforces.com/contest/592/submission/13993623'), ('2015-11-01 10:48:24', 'http://www.codeforces.com/problemset/problem/592/A', 'PawnChess', 'CE', '0', 'Python 2', 'http://www.codeforces.com/contest/592/submission/14000480'), ('2015-11-01 10:48:46', 'http://www.codeforces.com/problemset/problem/592/A', 'PawnChess', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/592/submission/14000483'), ('2015-11-03 02:17:02', 'http://www.codeforces.com/problemset/problem/592/C', 'The Big Race', 'AC', '100', 'Python 2', 'http://www.codeforces.com/contest/592/submission/14033816'), ('2015-11-03 02:30:31', 'http://www.codeforces.com/problemset/problem/592/C', 'The Big Race', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/592/submission/14033957'), ('2015-11-04 14:58:56', 'http://www.codeforces.com/problemset/problem/339/B', 'Xenia and Ringroad', 'RE', '0', 'GNU C++', 'http://www.codeforces.com/contest/339/submission/14054303'), ('2015-11-04 15:00:05', 'http://www.codeforces.com/problemset/problem/339/B', 'Xenia and Ringroad', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/339/submission/14054317'), ('2015-11-04 15:29:08', 'http://www.codeforces.com/problemset/problem/11/A', 'Increasing Sequence', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/11/submission/14054735'), ('2015-11-04 16:30:38', 'http://www.codeforces.com/problemset/problem/567/A', 'Lineland Mail', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/567/submission/14055720'), ('2015-11-05 10:34:36', 'http://www.codeforces.com/problemset/problem/593/A', '2Char', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/593/submission/14082176'), ('2015-11-06 21:20:07', 'http://www.codeforces.com/problemset/problem/159/C', 'String Manipulation 1.0', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/159/submission/14109516'), ('2015-11-06 21:47:19', 'http://www.codeforces.com/problemset/problem/159/C', 'String Manipulation 1.0', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/159/submission/14109921'), ('2015-11-08 22:05:35', 'http://www.codeforces.com/problemset/problem/595/A', 'Vitaly and Night', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/595/submission/14145703'), ('2015-11-08 22:44:17', 'http://www.codeforces.com/problemset/problem/595/B', 'Pasha and Phone', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/595/submission/14150515'), ('2015-11-08 23:28:37', 'http://www.codeforces.com/problemset/problem/595/B', 'Pasha and Phone', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/595/submission/14155293'), ('2015-11-16 01:07:14', 'http://www.codeforces.com/problemset/problem/596/A', 'Wilbur and Swimming Pool', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/596/submission/14288508'), ('2015-11-16 01:09:02', 'http://www.codeforces.com/problemset/problem/596/B', 'Wilbur and Array', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/596/submission/14288537'), ('2015-11-16 01:16:40', 'http://www.codeforces.com/problemset/problem/596/A', 'Wilbur and Swimming Pool', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/596/submission/14288651'), ('2015-11-16 01:17:38', 'http://www.codeforces.com/problemset/problem/596/A', 'Wilbur and Swimming Pool', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/596/submission/14288673'), ('2015-12-01 21:15:25', 'http://www.codeforces.com/problemset/problem/604/A', 'Uncowed Forces', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/604/submission/14587410'), ('2015-12-01 21:21:57', 'http://www.codeforces.com/problemset/problem/604/A', 'Uncowed Forces', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/604/submission/14588907'), ('2015-12-01 21:25:25', 'http://www.codeforces.com/problemset/problem/604/A', 'Uncowed Forces', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/604/submission/14589670'), ('2015-12-01 21:50:29', 'http://www.codeforces.com/problemset/problem/604/B', 'More Cowbell', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/604/submission/14593977'), ('2015-12-09 21:53:15', 'http://www.codeforces.com/problemset/problem/606/C', 'Sorting Railway Cars', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/606/submission/14718869'), ('2015-12-09 22:14:26', 'http://www.codeforces.com/problemset/problem/606/C', 'Sorting Railway Cars', 'HCK', '-50', 'GNU C++', 'http://www.codeforces.com/contest/606/submission/14722405'), ('2015-12-09 22:44:59', 'http://www.codeforces.com/problemset/problem/606/A', 'Magic Spheres', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/606/submission/14726450'), ('2015-12-09 22:55:27', 'http://www.codeforces.com/problemset/problem/606/A', 'Magic Spheres', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/606/submission/14727619'), ('2015-12-09 22:58:11', 'http://www.codeforces.com/problemset/problem/606/A', 'Magic Spheres', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/606/submission/14727938'), ('2015-12-09 23:00:38', 'http://www.codeforces.com/problemset/problem/606/A', 'Magic Spheres', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/606/submission/14728208'), ('2015-12-15 21:36:55', 'http://www.codeforces.com/problemset/problem/580/A', 'Kefa and First Steps', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/580/submission/14817821'), ('2015-12-17 18:01:21', 'http://www.codeforces.com/problemset/problem/598/B', 'Queries on a String', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/598/submission/14845709'), ('2015-12-17 18:09:23', 'http://www.codeforces.com/problemset/problem/598/B', 'Queries on a String', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/598/submission/14845795'), ('2015-12-17 18:55:21', 'http://www.codeforces.com/problemset/problem/597/A', 'Divisibility', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/597/submission/14846361'), ('2015-12-17 18:56:54', 'http://www.codeforces.com/problemset/problem/597/A', 'Divisibility', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/597/submission/14846374'), ('2015-12-17 19:02:03', 'http://www.codeforces.com/problemset/problem/597/A', 'Divisibility', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/597/submission/14846436'), ('2015-12-17 19:05:46', 'http://www.codeforces.com/problemset/problem/597/A', 'Divisibility', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/597/submission/14846492'), ('2015-12-22 22:54:31', 'http://www.codeforces.com/problemset/problem/609/B', '\u041a\u043d\u0438\u0433\u0430 - \u043b\u0443\u0447\u0448\u0438\u0439 \u043f\u043e\u0434\u0430\u0440\u043e\u043a', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/609/submission/14928518'), ('2015-12-23 01:45:32', 'http://www.codeforces.com/problemset/problem/609/C', 'Load Balancing', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/609/submission/14930319'), ('2015-12-23 01:48:44', 'http://www.codeforces.com/problemset/problem/609/C', 'Load Balancing', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/609/submission/14930347'), ('2015-12-23 02:12:32', 'http://www.codeforces.com/problemset/problem/609/C', 'Load Balancing', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/609/submission/14930527'), ('2015-12-23 02:14:12', 'http://www.codeforces.com/problemset/problem/609/C', 'Load Balancing', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/609/submission/14930545'), ('2015-12-24 03:46:52', 'http://www.codeforces.com/problemset/problem/608/A', 'Saitama Destroys Hotel', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/608/submission/14961192'), ('2015-12-24 03:56:12', 'http://www.codeforces.com/problemset/problem/600/B', 'Queries about less or equal elements', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/600/submission/14961257'), ('2015-12-24 04:11:24', 'http://www.codeforces.com/problemset/problem/600/A', 'Extract Numbers', 'AC', '100', 'PyPy 2', 'http://www.codeforces.com/contest/600/submission/14961343'), ('2015-12-26 00:19:54', 'http://www.codeforces.com/problemset/problem/600/B', 'Queries about less or equal elements', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/600/submission/15021384'), ('2015-12-31 02:06:51', 'http://www.codeforces.com/problemset/problem/611/A', 'New Year and Days', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/611/submission/15129041'), ('2015-12-31 02:07:53', 'http://www.codeforces.com/problemset/problem/611/A', 'New Year and Days', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/611/submission/15129051'), ('2015-12-31 02:39:02', 'http://www.codeforces.com/problemset/problem/611/B', 'New Year and Old Property', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/611/submission/15129360'), ('2016-01-01 00:08:10', 'http://www.codeforces.com/problemset/problem/611/B', 'New Year and Old Property', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/611/submission/15140290'), ('2016-01-02 01:17:28', 'http://www.codeforces.com/problemset/problem/610/A', 'Pasha and Stick', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/610/submission/15152467'), ('2016-01-02 02:05:01', 'http://www.codeforces.com/problemset/problem/610/B', 'Vika and Squares', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/610/submission/15152883'), ('2016-01-05 11:52:15', 'http://www.codeforces.com/problemset/problem/189/A', 'Cut Ribbon', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/189/submission/15187913'), ('2016-01-05 12:26:38', 'http://www.codeforces.com/problemset/problem/489/C', 'Given Length and Sum of Digits...', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/489/submission/15188193'), ('2016-01-06 20:03:28', 'http://www.codeforces.com/problemset/problem/570/C', 'Replacement', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/570/submission/15208011'), ('2016-01-06 20:09:17', 'http://www.codeforces.com/problemset/problem/570/C', 'Replacement', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/570/submission/15208096'), ('2016-01-09 14:53:09', 'http://www.codeforces.com/problemset/problem/615/A', 'Bulbs', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/615/submission/15266906'), ('2016-01-14 22:12:10', 'http://www.codeforces.com/problemset/problem/614/A', 'Link/Cut Tree', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/614/submission/15348242'), ('2016-01-14 22:19:51', 'http://www.codeforces.com/problemset/problem/614/A', 'Link/Cut Tree', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/614/submission/15350653'), ('2016-01-14 22:26:04', 'http://www.codeforces.com/problemset/problem/614/A', 'Link/Cut Tree', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/614/submission/15352533'), ('2016-01-14 22:45:52', 'http://www.codeforces.com/problemset/problem/614/B', "Gena's Code", 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/614/submission/15357739'), ('2016-01-14 22:49:49', 'http://www.codeforces.com/problemset/problem/614/B', "Gena's Code", 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/614/submission/15358770'), ('2016-01-14 23:13:26', 'http://www.codeforces.com/problemset/problem/614/B', "Gena's Code", 'TLE', '0', 'PyPy 2', 'http://www.codeforces.com/contest/614/submission/15364083'), ('2016-01-14 23:17:00', 'http://www.codeforces.com/problemset/problem/614/A', 'Link/Cut Tree', 'HCK', '-50', 'GNU C++', 'http://www.codeforces.com/contest/614/submission/15364825'), ('2016-01-15 01:46:02', 'http://www.codeforces.com/problemset/problem/614/A', 'Link/Cut Tree', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/614/submission/15376622'), ('2016-01-15 01:50:32', 'http://www.codeforces.com/problemset/problem/614/A', 'Link/Cut Tree', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/614/submission/15376775'), ('2016-01-15 02:04:58', 'http://www.codeforces.com/problemset/problem/614/B', "Gena's Code", 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/614/submission/15377119'), ('2016-01-31 01:01:03', 'http://www.codeforces.com/problemset/problem/618/A', 'Slime Combining', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/618/submission/15684756'), ('2016-01-31 01:44:18', 'http://www.codeforces.com/problemset/problem/618/B', 'Guess the Permutation', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/618/submission/15685235'), ('2016-02-01 07:17:18', 'http://www.codeforces.com/problemset/problem/621/A', 'Wet Shark and Odd and Even', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/621/submission/15722644'), ('2016-02-01 07:40:26', 'http://www.codeforces.com/problemset/problem/621/B', 'Wet Shark and Bishops', 'CE', '0', 'GNU C++', 'http://www.codeforces.com/contest/621/submission/15722848'), ('2016-02-01 07:40:45', 'http://www.codeforces.com/problemset/problem/621/B', 'Wet Shark and Bishops', 'RE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15722852'), ('2016-02-01 07:59:16', 'http://www.codeforces.com/problemset/problem/621/B', 'Wet Shark and Bishops', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15723041'), ('2016-02-01 08:01:58', 'http://www.codeforces.com/problemset/problem/621/B', 'Wet Shark and Bishops', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15723074'), ('2016-02-01 08:05:42', 'http://www.codeforces.com/problemset/problem/621/B', 'Wet Shark and Bishops', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15723107'), ('2016-02-01 08:07:51', 'http://www.codeforces.com/problemset/problem/621/B', 'Wet Shark and Bishops', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/621/submission/15723123'), ('2016-02-22 00:05:38', 'http://www.codeforces.com/problemset/problem/629/A', 'Far Relative\u2019s Birthday Cake', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/629/submission/16265987'), ('2016-02-28 19:19:12', 'http://www.codeforces.com/problemset/problem/629/B', 'Far Relative\u2019s Problem', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/629/submission/16404240'), ('2016-02-28 20:35:59', 'http://www.codeforces.com/problemset/problem/630/C', 'Lucky Numbers', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/630/submission/16405407'), ('2016-02-28 20:37:18', 'http://www.codeforces.com/problemset/problem/630/C', 'Lucky Numbers', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/630/submission/16405419'), ('2016-02-28 20:41:06', 'http://www.codeforces.com/problemset/problem/630/C', 'Lucky Numbers', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/630/submission/16405456'), ('2016-07-31 00:44:37', 'http://www.codeforces.com/problemset/problem/699/B', 'One Bomb', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19524584'), ('2016-07-31 00:49:29', 'http://www.codeforces.com/problemset/problem/699/B', 'One Bomb', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19524679'), ('2016-07-31 00:58:14', 'http://www.codeforces.com/problemset/problem/699/B', 'One Bomb', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19524873'), ('2016-07-31 18:30:30', 'http://www.codeforces.com/problemset/problem/699/B', 'One Bomb', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19538526'), ('2016-07-31 18:49:30', 'http://www.codeforces.com/problemset/problem/699/B', 'One Bomb', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19538834'), ('2016-07-31 19:01:53', 'http://www.codeforces.com/problemset/problem/699/A', 'Launch of Collider', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/699/submission/19539062'), ('2016-07-31 20:11:24', 'http://www.codeforces.com/problemset/problem/701/A', 'Cards', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/701/submission/19540208'), ('2016-07-31 20:35:26', 'http://www.codeforces.com/problemset/problem/701/B', 'Cells Not Under Attack', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/701/submission/19540595'), ('2016-07-31 20:39:11', 'http://www.codeforces.com/problemset/problem/701/B', 'Cells Not Under Attack', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/701/submission/19540660'), ('2016-08-02 03:12:36', 'http://www.codeforces.com/problemset/problem/702/A', 'Maximum Increase', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568636'), ('2016-08-02 03:15:28', 'http://www.codeforces.com/problemset/problem/702/A', 'Maximum Increase', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568664'), ('2016-08-02 03:16:08', 'http://www.codeforces.com/problemset/problem/702/A', 'Maximum Increase', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568668'), ('2016-08-02 03:23:31', 'http://www.codeforces.com/problemset/problem/702/B', 'Powers of Two', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568738'), ('2016-08-02 03:25:16', 'http://www.codeforces.com/problemset/problem/702/B', 'Powers of Two', 'TLE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/702/submission/19568745'), ('2016-08-04 20:47:23', 'http://www.codeforces.com/problemset/problem/703/A', 'Mishka and Game', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19617826'), ('2016-08-04 20:49:28', 'http://www.codeforces.com/problemset/problem/703/A', 'Mishka and Game', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19619139'), ('2016-08-04 21:22:13', 'http://www.codeforces.com/problemset/problem/703/B', 'Mishka and trip', 'SK', '0', 'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19624817'), ('2016-08-04 22:36:40', 'http://www.codeforces.com/problemset/problem/703/B', 'Mishka and trip', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19633551'), ('2016-08-05 01:11:14', 'http://www.codeforces.com/problemset/problem/703/B', 'Mishka and trip', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/703/submission/19638245'), ('2016-08-08 15:49:19', 'http://www.codeforces.com/problemset/problem/705/A', 'Hulk', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/705/submission/19725753'), ('2016-08-08 18:25:13', 'http://www.codeforces.com/problemset/problem/705/B', 'Spider Man', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/705/submission/19728563'), ('2016-08-11 22:10:00', 'http://www.codeforces.com/problemset/problem/706/A', 'Beru-taxi', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19788500'), ('2016-08-11 22:19:02', 'http://www.codeforces.com/problemset/problem/706/B', 'Interesting drink', 'RE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19792085'), ('2016-08-11 22:29:00', 'http://www.codeforces.com/problemset/problem/706/B', 'Interesting drink', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19794671'), ('2016-08-11 22:41:28', 'http://www.codeforces.com/problemset/problem/706/B', 'Interesting drink', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19797228'), ('2016-08-12 01:49:03', 'http://www.codeforces.com/problemset/problem/706/A', 'Beru-taxi', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19812426'), ('2016-08-12 02:19:20', 'http://www.codeforces.com/problemset/problem/706/A', 'Beru-taxi', 'CE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/706/submission/19813299'), ('2016-08-12 02:22:25', 'http://www.codeforces.com/problemset/problem/706/A', 'Beru-taxi', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/706/submission/19813362'), ('2016-08-14 19:27:06', 'http://www.codeforces.com/problemset/problem/702/B', 'Powers of Two', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/702/submission/19869883'), ('2016-08-14 20:27:13', 'http://www.codeforces.com/problemset/problem/706/C', 'Hard problem', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/706/submission/19870767'), ('2016-08-15 04:49:12', 'http://www.codeforces.com/problemset/problem/706/D', "Vasiliy's Multiset", 'RE', '0', 'GNU C++', 'http://www.codeforces.com/contest/706/submission/19877506'), ('2016-08-15 04:55:02', 'http://www.codeforces.com/problemset/problem/706/D', "Vasiliy's Multiset", 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/706/submission/19877543'), ('2016-08-15 06:38:23', 'http://www.codeforces.com/problemset/problem/706/D', "Vasiliy's Multiset", 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/706/submission/19878193'), ('2016-08-17 22:37:54', 'http://www.codeforces.com/problemset/problem/706/D', "Vasiliy's Multiset", 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/706/submission/19932138'), ('2016-08-20 15:22:16', 'http://www.codeforces.com/problemset/problem/29/C', 'Mail Stamps', 'CE', '0', 'GNU C++', 'http://www.codeforces.com/contest/29/submission/19979318'), ('2016-08-20 15:22:44', 'http://www.codeforces.com/problemset/problem/29/C', 'Mail Stamps', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/29/submission/19979332'), ('2016-08-20 16:20:32', 'http://www.codeforces.com/problemset/problem/637/B', 'Chat Order', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/637/submission/19980245'), ('2016-08-20 16:22:06', 'http://www.codeforces.com/problemset/problem/637/B', 'Chat Order', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/637/submission/19980267'), ('2016-08-20 16:25:04', 'http://www.codeforces.com/problemset/problem/637/B', 'Chat Order', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/637/submission/19980309'), ('2016-08-20 17:25:07', 'http://www.codeforces.com/problemset/problem/622/C', 'Not Equal on a Segment', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/622/submission/19981265'), ('2016-08-20 17:30:50', 'http://www.codeforces.com/problemset/problem/622/C', 'Not Equal on a Segment', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/622/submission/19981354'), ('2016-08-20 18:39:54', 'http://www.codeforces.com/problemset/problem/707/A', "Brain's Photos", 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/707/submission/19983584'), ('2016-08-20 19:05:41', 'http://www.codeforces.com/problemset/problem/707/B', 'Bakery', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/707/submission/19990875'), ('2016-08-21 02:49:44', 'http://www.codeforces.com/problemset/problem/707/C', 'Pythagorean Triples', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/707/submission/20013751'), ('2016-08-24 06:34:33', 'http://www.codeforces.com/problemset/problem/710/B', 'Optimal Point on a Line', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096202'), ('2016-08-24 06:44:27', 'http://www.codeforces.com/problemset/problem/710/B', 'Optimal Point on a Line', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096285'), ('2016-08-24 06:49:56', 'http://www.codeforces.com/problemset/problem/710/A', 'King Moves', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096337'), ('2016-08-24 06:58:51', 'http://www.codeforces.com/problemset/problem/710/C', 'Magic Odd Square', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096421'), ('2016-08-24 07:05:26', 'http://www.codeforces.com/problemset/problem/710/C', 'Magic Odd Square', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096477'), ('2016-08-24 07:07:46', 'http://www.codeforces.com/problemset/problem/710/C', 'Magic Odd Square', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/710/submission/20096494'), ('2016-08-25 05:52:47', 'http://www.codeforces.com/problemset/problem/709/A', 'Juicer', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/709/submission/20140096'), ('2016-08-25 06:01:00', 'http://www.codeforces.com/problemset/problem/709/C', 'Letters Cyclic Shift', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/709/submission/20140181'), ('2016-08-25 06:04:24', 'http://www.codeforces.com/problemset/problem/709/C', 'Letters Cyclic Shift', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/709/submission/20140220'), ('2016-08-25 06:05:03', 'http://www.codeforces.com/problemset/problem/709/C', 'Letters Cyclic Shift', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/709/submission/20140228'), ('2016-08-25 15:38:47', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'TLE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20150798'), ('2016-08-25 17:26:47', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'RE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20152979'), ('2016-08-25 17:28:05', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'RE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153009'), ('2016-08-25 17:29:43', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'RE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153046'), ('2016-08-25 17:33:09', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'RE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153146'), ('2016-08-25 17:35:27', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'RE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153204'), ('2016-08-25 17:40:33', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'RE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/705/submission/20153304'), ('2016-08-25 17:41:24', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'RE', '0', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153316'), ('2016-08-25 17:47:30', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153471'), ('2016-08-25 17:50:56', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153564'), ('2016-08-25 17:52:06', 'http://www.codeforces.com/problemset/problem/704/A', 'Thor', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/704/submission/20153599'), ('2016-08-25 17:53:50', 'http://www.codeforces.com/problemset/problem/704/A', 'Thor', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/704/submission/20153653'), ('2016-08-25 17:59:43', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153767'), ('2016-08-25 18:03:16', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153836'), ('2016-08-25 18:05:03', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153878'), ('2016-08-25 18:09:01', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20153955'), ('2016-08-25 18:10:53', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154001'), ('2016-08-25 18:13:15', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154058'), ('2016-08-25 18:15:21', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154102'), ('2016-08-25 18:16:40', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154129'), ('2016-08-25 18:23:26', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154295'), ('2016-08-25 18:24:26', 'http://www.codeforces.com/problemset/problem/705/C', 'Thor', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/705/submission/20154322'), ('2016-08-29 10:50:32', 'http://www.codeforces.com/problemset/problem/710/C', 'Magic Odd Square', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/710/submission/20222968'), ('2016-08-29 17:43:28', 'http://www.codeforces.com/problemset/problem/711/A', 'Bus to Udayland', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/711/submission/20230874'), ('2016-08-29 17:48:47', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/711/submission/20232719'), ('2016-08-29 17:55:00', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20234607'), ('2016-08-29 18:08:37', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20238630'), ('2016-08-29 18:11:38', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20239424'), ('2016-08-29 18:21:50', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20241874'), ('2016-08-29 18:36:36', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20245231'), ('2016-08-29 18:50:27', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'CE', '0', 'GNU C++', 'http://www.codeforces.com/contest/711/submission/20247880'), ('2016-08-29 18:50:49', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20247939'), ('2016-08-29 21:34:54', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20256999'), ('2016-08-29 22:47:30', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20260046'), ('2016-08-29 22:49:03', 'http://www.codeforces.com/problemset/problem/711/B', 'Chris and Magic Square', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/711/submission/20260094'), ('2016-09-03 21:04:35', 'http://www.codeforces.com/problemset/problem/510/B', 'Fox And Two Dots', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/510/submission/20365149'), ('2016-09-03 22:14:53', 'http://www.codeforces.com/problemset/problem/129/B', 'Students and Shoelaces', 'RE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/129/submission/20366343'), ('2016-09-03 22:19:35', 'http://www.codeforces.com/problemset/problem/129/B', 'Students and Shoelaces', 'RE', '0', 'GNU C++', 'http://www.codeforces.com/contest/129/submission/20366460'), ('2016-09-03 23:04:55', 'http://www.codeforces.com/problemset/problem/129/B', 'Students and Shoelaces', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/129/submission/20367405'), ('2016-09-03 23:09:28', 'http://www.codeforces.com/problemset/problem/129/B', 'Students and Shoelaces', 'TLE', '0', 'GNU C++', 'http://www.codeforces.com/contest/129/submission/20367491'), ('2016-09-03 23:44:56', 'http://www.codeforces.com/problemset/problem/129/B', 'Students and Shoelaces', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/129/submission/20368170'), ('2016-09-03 23:54:28', 'http://www.codeforces.com/problemset/problem/129/B', 'Students and Shoelaces', 'WA', '0', 'GNU C++', 'http://www.codeforces.com/contest/129/submission/20368355'), ('2016-09-03 23:58:44', 'http://www.codeforces.com/problemset/problem/129/B', 'Students and Shoelaces', 'AC', '100', 'GNU C++', 'http://www.codeforces.com/contest/129/submission/20368443'), ('2016-09-04 00:00:06', 'http://www.codeforces.com/problemset/problem/300/B', 'Coach', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/300/submission/20368473'), ('2016-09-04 00:00:23', 'http://www.codeforces.com/problemset/problem/129/B', 'Students and Shoelaces', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/129/submission/20368478'), ('2016-09-04 00:57:23', 'http://www.codeforces.com/problemset/problem/300/B', 'Coach', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/300/submission/20369438'), ('2016-09-04 01:05:04', 'http://www.codeforces.com/problemset/problem/300/B', 'Coach', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/300/submission/20369545'), ('2016-09-04 01:14:44', 'http://www.codeforces.com/problemset/problem/300/B', 'Coach', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/300/submission/20369700'), ('2016-09-05 05:28:45', 'http://www.codeforces.com/problemset/problem/602/C', 'The Two Routes', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/602/submission/20391156'), ('2016-09-12 19:52:06', 'http://www.codeforces.com/problemset/problem/712/A', 'Memory and Crow', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/712/submission/20550755'), ('2016-09-12 20:01:01', 'http://www.codeforces.com/problemset/problem/712/B', 'Memory and Trident', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/712/submission/20550916'), ('2016-09-12 20:50:03', 'http://www.codeforces.com/problemset/problem/712/C', 'Memory and De-Evolution', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/712/submission/20551627'), ('2016-09-12 21:16:55', 'http://www.codeforces.com/problemset/problem/712/C', 'Memory and De-Evolution', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/712/submission/20552025'), ('2016-09-17 22:47:03', 'http://www.codeforces.com/problemset/problem/716/A', 'Crazy Computer', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/716/submission/20714780'), ('2016-09-17 23:47:10', 'http://www.codeforces.com/problemset/problem/716/B', 'Complete the Word', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/716/submission/20716899'), ('2016-09-17 23:48:25', 'http://www.codeforces.com/problemset/problem/716/B', 'Complete the Word', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/716/submission/20716935'), ('2016-09-21 18:03:35', 'http://www.codeforces.com/problemset/problem/716/B', 'Complete the Word', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/716/submission/20794436'), ('2016-09-23 18:38:43', 'http://www.codeforces.com/problemset/problem/719/A', 'Vitya in the Countryside', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20837817'), ('2016-09-23 18:40:43', 'http://www.codeforces.com/problemset/problem/719/A', 'Vitya in the Countryside', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20838364'), ('2016-09-23 18:42:38', 'http://www.codeforces.com/problemset/problem/719/A', 'Vitya in the Countryside', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20839135'), ('2016-09-23 18:44:24', 'http://www.codeforces.com/problemset/problem/719/A', 'Vitya in the Countryside', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20840020'), ('2016-09-23 18:45:54', 'http://www.codeforces.com/problemset/problem/719/A', 'Vitya in the Countryside', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20840715'), ('2016-09-23 18:56:54', 'http://www.codeforces.com/problemset/problem/719/B', 'Anatoly and Cockroaches', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20845155'), ('2016-09-23 19:24:28', 'http://www.codeforces.com/problemset/problem/719/C', 'Efim and Strange Grade', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20852944'), ('2016-09-23 19:30:10', 'http://www.codeforces.com/problemset/problem/719/C', 'Efim and Strange Grade', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20854218'), ('2016-09-23 19:46:36', 'http://www.codeforces.com/problemset/problem/719/C', 'Efim and Strange Grade', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20857522'), ('2016-09-23 19:49:31', 'http://www.codeforces.com/problemset/problem/719/C', 'Efim and Strange Grade', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20858071'), ('2016-09-23 20:02:28', 'http://www.codeforces.com/problemset/problem/719/C', 'Efim and Strange Grade', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/719/submission/20860429'), ('2016-10-02 00:45:43', 'http://www.codeforces.com/problemset/problem/721/A', 'One-dimensional Japanese Crossword', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/721/submission/21096198'), ('2016-10-02 00:56:47', 'http://www.codeforces.com/problemset/problem/721/B', 'Passwords', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/721/submission/21096352'), ('2016-10-02 01:22:26', 'http://www.codeforces.com/problemset/problem/721/B', 'Passwords', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/721/submission/21096748'), ('2016-10-02 16:21:19', 'http://www.codeforces.com/problemset/problem/722/A', 'Broken Clock', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/722/submission/21112277'), ('2016-10-02 16:23:01', 'http://www.codeforces.com/problemset/problem/722/A', 'Broken Clock', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/722/submission/21112319'), ('2016-10-02 16:54:23', 'http://www.codeforces.com/problemset/problem/722/B', 'Verse Pattern', 'WA', '0', 'GNU C++11', 'http://www.codeforces.com/contest/722/submission/21113003'), ('2016-10-02 16:56:42', 'http://www.codeforces.com/problemset/problem/722/B', 'Verse Pattern', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/722/submission/21113067'), ('2016-10-05 02:06:14', 'http://www.codeforces.com/problemset/problem/723/A', 'The New Year: Meeting Friends', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/723/submission/21196305'), ('2016-10-05 02:24:17', 'http://www.codeforces.com/problemset/problem/723/B', 'Text Document Analysis', 'AC', '100', 'Python 2', 'http://www.codeforces.com/contest/723/submission/21196529'), ('2017-03-06 05:02:38', 'http://www.codeforces.com/problemset/problem/723/B', 'Text Document Analysis', 'AC', '100', 'Python 2', 'http://www.codeforces.com/contest/723/submission/25275840'), ('2017-03-06 05:03:10', 'http://www.codeforces.com/problemset/problem/723/B', 'Text Document Analysis', 'WA', '0', 'Python 2', 'http://www.codeforces.com/contest/723/submission/25275845'), ('2017-03-06 05:07:21', 'http://www.codeforces.com/problemset/problem/429/B', 'Working out', 'TLE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/429/submission/25275894'), ('2017-03-06 05:08:26', 'http://www.codeforces.com/problemset/problem/429/B', 'Working out', 'AC', '100', 'GNU C++11', 'http://www.codeforces.com/contest/429/submission/25275906'), ('2017-03-06 05:15:08', 'http://www.codeforces.com/problemset/problem/429/B', 'Working out', 'CE', '0', 'GNU C++11', 'http://www.codeforces.com/contest/429/submission/25275955'), ('2018-03-01 04:19:28', 'http://www.codeforces.com/problemset/problem/577/A', 'Multiplication Table', 'RE', '0', 'Python 2', 'http://www.codeforces.com/contest/577/submission/35797975'), ('2018-03-01 04:19:47', 'http://www.codeforces.com/problemset/problem/577/A', 'Multiplication Table', 'AC', '100', 'Python 3', 'http://www.codeforces.com/contest/577/submission/35797984'), ('2019-01-05 01:07:35', 'http://www.codeforces.com/problemsets/acmsguru/problem/99999/345', 'Revolution', 'WA', '0', 'Python 2', '')], + "Spoj": [('2013-08-09 16:13:01', 'https://www.spoj.com/problems/TEST/', 'Life, the Universe, and Everything', 'CE', '0', 'ADA95', ''), ('2013-08-09 16:13:19', 'https://www.spoj.com/problems/TEST/', 'Life, the Universe, and Everything', 'RE', '0', 'C', ''), ('2013-08-09 16:13:50', 'https://www.spoj.com/problems/TEST/', 'Life, the Universe, and Everything', 'RE', '0', 'C', ''), ('2013-08-09 16:15:24', 'https://www.spoj.com/problems/TEST/', 'Life, the Universe, and Everything', 'RE', '0', 'C', ''), ('2013-08-12 10:48:56', 'https://www.spoj.com/problems/TEST/', 'Life, the Universe, and Everything', 'CE', '0', 'ADA95', ''), ('2013-08-12 10:50:14', 'https://www.spoj.com/problems/TEST/', 'Life, the Universe, and Everything', 'CE', '0', 'ADA95', ''), ('2013-08-13 19:11:24', 'https://www.spoj.com/problems/TEST/', 'Life, the Universe, and Everything', 'WA', '0', 'C', ''), ('2013-08-13 19:11:50', 'https://www.spoj.com/problems/TEST/', 'Life, the Universe, and Everything', 'WA', '0', 'C', ''), ('2015-03-24 05:08:29', 'https://www.spoj.com/problems/TEST/', 'Life, the Universe, and Everything', 'AC', '100', 'C', ''), ('2015-03-28 00:47:43', 'https://www.spoj.com/problems/NSTEPS/', 'Number Steps', 'AC', '100', 'C++', ''), ('2015-06-30 03:38:17', 'https://www.spoj.com/problems/FCTRL/', 'Factorial', 'AC', '100', 'CPP', ''), ('2015-06-30 03:41:12', 'https://www.spoj.com/problems/FCTRL/', 'Factorial', 'AC', '100', 'CPP', ''), ('2015-06-30 03:42:49', 'https://www.spoj.com/problems/FCTRL/', 'Factorial', 'AC', '100', 'CPP', ''), ('2015-06-30 04:00:12', 'https://www.spoj.com/problems/FCTRL2/', 'Small factorials', 'AC', '100', 'C', ''), ('2015-06-30 04:16:14', 'https://www.spoj.com/problems/SAMER08F/', 'Feynman', 'AC', '100', 'CPP', ''), ('2015-06-30 04:58:12', 'https://www.spoj.com/problems/LASTDIG/', 'The last digit', 'AC', '100', 'CPP', ''), ('2015-07-25 17:08:08', 'https://www.spoj.com/problems/FARIDA/', 'Princess Farida', 'WA', '0', 'CPP', ''), ('2015-07-25 17:11:03', 'https://www.spoj.com/problems/FARIDA/', 'Princess Farida', 'WA', '0', 'CPP', ''), ('2015-07-25 17:15:01', 'https://www.spoj.com/problems/FARIDA/', 'Princess Farida', 'AC', '100', 'CPP', ''), ('2015-09-26 21:01:26', 'https://www.spoj.com/problems/MUL/', 'Fast Multiplication', 'TLE', '0', 'C++', ''), ('2015-09-26 21:04:40', 'https://www.spoj.com/problems/MUL/', 'Fast Multiplication', 'AC', '100', 'PYTHON', ''), ('2015-12-05 08:37:26', 'https://www.spoj.com/problems/PRIME1/', 'Prime Generator', 'WA', '0', 'C', ''), ('2017-05-15 17:07:43', 'https://www.spoj.com/problems/PRIME1/', 'Prime Generator', 'WA', '0', 'C', ''), ('2018-10-02 23:41:30', 'https://www.spoj.com/problems/ONP/', 'Transform the Expression', 'WA', '0', 'CPP', ''), ('2019-05-26 22:58:02', 'https://www.spoj.com/problems/BACTERIA/', 'SPOJ Custom Test', 'OTH', '0', 'PYTHON3', '')], + "HackerEarth": [('2014-06-17 15:50:52', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', 'Mind Palaces', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/333758'), ('2014-06-17 15:55:06', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', 'Mind Palaces', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/333766'), ('2014-06-17 15:56:59', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', 'Mind Palaces', 'PS', '0', 'C', 'https://www.hackerearth.com/submission/333770'), ('2014-06-17 16:38:24', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', 'Mind Palaces', 'PS', '0', 'C', 'https://www.hackerearth.com/submission/333824'), ('2014-06-17 16:53:23', 'https://www.hackerearth.com/practice/data-structures/hash-tables/basics-of-hash-tables/practice-problems/algorithm/mind-palaces-3/', 'Mind Palaces', 'PS', '0', 'C', 'https://www.hackerearth.com/submission/333833'), ('2014-06-17 17:08:55', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/palindromic-numbers-7/', 'Palindromic Numbers', 'AC', '100', 'Python', 'https://www.hackerearth.com/submission/333846'), ('2014-10-02 05:57:34', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', "Bajirao's Rescue Operation", 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/789146'), ('2014-10-02 06:00:56', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', "Bajirao's Rescue Operation", 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/789152'), ('2014-10-02 06:20:08', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', "Bajirao's Rescue Operation", 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/789161'), ('2014-10-02 06:40:22', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', "Bajirao's Rescue Operation", 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/789173'), ('2014-10-02 06:40:23', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', "Bajirao's Rescue Operation", 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/789174'), ('2014-10-02 06:40:23', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', "Bajirao's Rescue Operation", 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/789174'), ('2014-10-02 06:43:40', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', "Bajirao's Rescue Operation", 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/789180'), ('2014-10-02 06:43:40', 'https://www.hackerearth.com/problem/algorithm/day-1-if-else-conditionslooping/', "Bajirao's Rescue Operation", 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/789181'), ('2014-10-02 06:51:40', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/complete-string-4/', 'Complete String', 'TLE', '0', 'C++', 'https://www.hackerearth.com/submission/789184'), ('2014-10-02 07:01:47', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/complete-string-4/', 'Complete String', 'TLE', '0', 'C++', 'https://www.hackerearth.com/submission/789187'), ('2014-10-02 07:07:25', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/complete-string-4/', 'Complete String', 'AC', '100', 'C', 'https://www.hackerearth.com/submission/789191'), ('2015-05-30 22:46:15', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/recursive-sums/', 'Recursive Sums', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1866870'), ('2015-05-30 22:47:45', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/recursive-sums/', 'Recursive Sums', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1866905'), ('2015-05-30 22:52:07', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/recursive-sums/', 'Recursive Sums', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1867017'), ('2015-05-30 22:58:10', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/recursive-sums/', 'Recursive Sums', 'AC', '100', 'Python', 'https://www.hackerearth.com/submission/1867183'), ('2015-06-01 22:51:41', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/very-cool-numbers/', 'Very Cool Numbers', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1876428'), ('2015-06-01 23:07:31', 'https://www.hackerearth.com/problem/algorithm/children-love-candies/', 'Children Love Candies', 'PS', '0', 'C', 'https://www.hackerearth.com/submission/1877240'), ('2015-06-01 23:09:05', 'https://www.hackerearth.com/problem/algorithm/children-love-candies/', 'Children Love Candies', 'AC', '100', 'C', 'https://www.hackerearth.com/submission/1877330'), ('2015-06-01 23:18:48', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/very-cool-numbers/', 'Very Cool Numbers', 'PS', '0', 'Python', 'https://www.hackerearth.com/submission/1877835'), ('2015-06-01 23:23:44', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/very-cool-numbers/', 'Very Cool Numbers', 'AC', '100', 'Python', 'https://www.hackerearth.com/submission/1878092'), ('2015-06-01 23:33:08', 'https://www.hackerearth.com/problem/algorithm/andrew-and-max/', 'Andrew and Max', 'AC', '100', 'C', 'https://www.hackerearth.com/submission/1878567'), ('2015-06-01 23:55:56', 'https://www.hackerearth.com/problem/algorithm/zeroshark/', 'ZeroShark', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1879759'), ('2015-06-02 00:11:57', 'https://www.hackerearth.com/problem/algorithm/zeroshark/', 'ZeroShark', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1880558'), ('2015-06-02 00:17:34', 'https://www.hackerearth.com/problem/algorithm/zeroshark/', 'ZeroShark', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1880825'), ('2015-06-04 22:02:21', 'https://www.hackerearth.com/practice/algorithms/string-algorithm/basics-of-string-manipulation/practice-problems/algorithm/terrible-chandu/', 'Terrible Chandu', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/1894925'), ('2015-06-04 22:06:29', 'https://www.hackerearth.com/practice/algorithms/greedy/basics-of-greedy-algorithms/practice-problems/algorithm/chandu-and-consecutive-letters/', 'Chandu and Consecutive Letters', 'AC', '100', 'C', 'https://www.hackerearth.com/submission/1895133'), ('2015-06-04 22:06:29', 'https://www.hackerearth.com/practice/algorithms/greedy/basics-of-greedy-algorithms/practice-problems/algorithm/chandu-and-consecutive-letters/', 'Chandu and Consecutive Letters', 'AC', '100', 'C', 'https://www.hackerearth.com/submission/1895133'), ('2015-06-04 22:10:59', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/prateek-and-his-friends/', 'Prateek and his Friends', 'AC', '100', 'C', 'https://www.hackerearth.com/submission/1895359'), ('2015-06-09 22:03:35', 'https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/algorithm/chandu-and-his-girlfriend/', 'Chandu and his Girlfriend', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/1919932'), ('2015-06-09 22:07:37', 'https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/algorithm/chandu-and-his-girlfriend-returns/', 'Chandu and his Girlfriend Returns', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1920040'), ('2015-06-09 22:12:29', 'https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/algorithm/chandu-and-his-girlfriend-returns/', 'Chandu and his Girlfriend Returns', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1920191'), ('2015-06-09 22:18:14', 'https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/practice-problems/algorithm/chandu-and-his-girlfriend-returns/', 'Chandu and his Girlfriend Returns', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/1920367'), ('2015-06-11 22:05:52', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/discover-the-monk/', 'Discover the Monk', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1930370'), ('2015-06-11 22:09:45', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/discover-the-monk/', 'Discover the Monk', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1930499'), ('2015-06-11 22:15:07', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/discover-the-monk/', 'Discover the Monk', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/1930694'), ('2015-06-11 22:28:20', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', "Monk's Encounter with Polynomial", 'WA', '0', 'C', 'https://www.hackerearth.com/submission/1931189'), ('2015-06-11 22:28:38', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', "Monk's Encounter with Polynomial", 'PS', '0', 'C', 'https://www.hackerearth.com/submission/1931196'), ('2015-06-11 22:29:06', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', "Monk's Encounter with Polynomial", 'PS', '0', 'C', 'https://www.hackerearth.com/submission/1931215'), ('2015-06-11 22:30:47', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', "Monk's Encounter with Polynomial", 'PS', '0', 'C', 'https://www.hackerearth.com/submission/1931281'), ('2015-06-11 22:32:24', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', "Monk's Encounter with Polynomial", 'PS', '0', 'C', 'https://www.hackerearth.com/submission/1931332'), ('2015-06-11 22:34:35', 'https://www.hackerearth.com/practice/algorithms/searching/binary-search/practice-problems/algorithm/monks-encounter-with-polynomial/', "Monk's Encounter with Polynomial", 'PS', '0', 'C', 'https://www.hackerearth.com/submission/1931416'), ('2015-07-01 22:36:39', 'https://www.hackerearth.com/practice/algorithms/graphs/flood-fill-algorithm/practice-problems/algorithm/the-rise-of-the-weird-things-1/', 'The rise of the weird... things [1]', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2037234'), ('2015-07-01 22:39:00', 'https://www.hackerearth.com/practice/algorithms/graphs/flood-fill-algorithm/practice-problems/algorithm/the-rise-of-the-weird-things-1/', 'The rise of the weird... things [1]', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2037359'), ('2015-07-01 23:06:20', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/the-savior-3/', 'The savior? [3]', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2038727'), ('2015-07-01 23:14:10', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/the-savior-3/', 'The savior? [3]', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2039043'), ('2015-07-02 00:06:28', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/supernatural-squad-2/', 'Supernatural Squad [2]', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2040873'), ('2015-07-02 00:08:23', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/supernatural-squad-2/', 'Supernatural Squad [2]', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2040928'), ('2015-07-02 00:08:23', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/supernatural-squad-2/', 'Supernatural Squad [2]', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2040928'), ('2015-07-02 00:10:56', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/2-dimensional/practice-problems/algorithm/supernatural-squad-2/', 'Supernatural Squad [2]', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2041005'), ('2015-07-03 19:28:59', 'https://www.hackerearth.com/problem/algorithm/valentine-shopping-4/', 'Valentine Shopping', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2053959'), ('2015-07-03 19:48:11', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', 'Marut and Girls', 'PS', '0', 'Python', 'https://www.hackerearth.com/submission/2054041'), ('2015-07-03 19:48:11', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', 'Marut and Girls', 'PS', '0', 'Python', 'https://www.hackerearth.com/submission/2054042'), ('2015-07-03 19:51:55', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', 'Marut and Girls', 'PS', '0', 'Python', 'https://www.hackerearth.com/submission/2054062'), ('2015-07-03 19:57:12', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', 'Marut and Girls', 'AC', '100', 'Python', 'https://www.hackerearth.com/submission/2054105'), ('2015-07-03 19:57:12', 'https://www.hackerearth.com/challenges/hiring/bookmyshowhiringchallenge/algorithm/marut-and-girls/', 'Marut and Girls', 'AC', '100', 'Python', 'https://www.hackerearth.com/submission/2054106'), ('2015-07-03 22:37:13', 'https://www.hackerearth.com/problem/algorithm/beta-testing/', 'Beta Testing', 'WA', '0', 'Python', 'https://www.hackerearth.com/submission/2055210'), ('2015-07-03 23:22:51', 'https://www.hackerearth.com/problem/algorithm/beta-testing/', 'Beta Testing', 'AC', '100', 'Python', 'https://www.hackerearth.com/submission/2055901'), ('2015-07-04 13:55:07', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-in-the-real-estate/', 'Monk in the real estate', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2059508'), ('2015-07-06 23:30:59', 'https://www.hackerearth.com/problem/algorithm/beta-testing/', 'Beta Testing', 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/2071774'), ('2015-07-06 23:48:05', 'https://www.hackerearth.com/problem/algorithm/beta-testing/', 'Beta Testing', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2071820'), ('2015-07-07 00:04:59', 'https://www.hackerearth.com/problem/algorithm/to-be-changed-choosing-a-project/', 'Side Projects', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2071872'), ('2015-07-07 00:30:34', 'https://www.hackerearth.com/problem/algorithm/to-be-changed-compile-time-fun/', "It's Compiling!", 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2071940'), ('2015-07-09 00:20:31', 'https://www.hackerearth.com/problem/algorithm/monk-and-the-collision/', 'Monk and the Collision', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2082091'), ('2015-07-09 00:21:06', 'https://www.hackerearth.com/problem/algorithm/monk-and-the-collision/', 'Monk and the Collision', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2082114'), ('2015-07-09 00:36:27', 'https://www.hackerearth.com/problem/algorithm/monk-in-the-land-of-pokemons/', 'Monk in the land of Pokemons!', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2082452'), ('2015-07-09 00:38:45', 'https://www.hackerearth.com/problem/algorithm/monk-in-the-land-of-pokemons/', 'Monk in the land of Pokemons!', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2082465'), ('2015-07-09 00:50:39', 'https://www.hackerearth.com/problem/algorithm/monk-in-the-land-of-pokemons/', 'Monk in the land of Pokemons!', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2082564'), ('2015-07-18 08:29:31', 'https://www.hackerearth.com/problem/algorithm/will-you-be-my-friend-pledge-easy/', 'Will you be my friend?', 'CE', '0', 'Java', 'https://www.hackerearth.com/submission/2144171'), ('2015-07-18 08:29:31', 'https://www.hackerearth.com/problem/algorithm/will-you-be-my-friend-pledge-easy/', 'Will you be my friend?', 'CE', '0', 'Java', 'https://www.hackerearth.com/submission/2144171'), ('2015-07-18 08:54:12', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/intelligent-girl-1/', 'Intelligent Girl ', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2144180'), ('2015-07-23 13:47:19', 'https://www.hackerearth.com/practice/data-structures/trees/heapspriority-queues/practice-problems/algorithm/monk-and-multiplication/', 'Monk and Multiplication', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2181397'), ('2015-07-23 13:48:32', 'https://www.hackerearth.com/practice/data-structures/trees/heapspriority-queues/practice-problems/algorithm/monk-and-multiplication/', 'Monk and Multiplication', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2181405'), ('2015-07-23 14:45:20', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', 'Monk And Some Queries', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2181589'), ('2015-07-23 14:52:48', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', 'Monk And Some Queries', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2181611'), ('2015-07-23 15:01:15', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', 'Monk And Some Queries', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2181643'), ('2015-07-23 15:08:45', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', 'Monk And Some Queries', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2181659'), ('2015-07-23 15:12:17', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', 'Monk And Some Queries', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2181670'), ('2015-07-23 15:16:03', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', 'Monk And Some Queries', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2181686'), ('2015-07-23 15:17:49', 'https://www.hackerearth.com/challenges/competitive/code-monk-heaps-and-priority-queues/algorithm/monk-and-some-queries/', 'Monk And Some Queries', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2181696'), ('2015-08-15 20:54:58', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-in-the-real-estate/', 'Monk in the real estate', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2326114'), ('2015-08-15 21:05:30', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-at-the-graph-factory/', 'Monk at the Graph Factory', 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/2326217'), ('2015-08-15 21:07:06', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-at-the-graph-factory/', 'Monk at the Graph Factory', 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/2326232'), ('2015-08-15 21:17:21', 'https://www.hackerearth.com/practice/algorithms/graphs/graph-representation/practice-problems/algorithm/monk-at-the-graph-factory/', 'Monk at the Graph Factory', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2326300'), ('2015-08-15 21:57:56', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', 'Kingdom Of Monkeys', 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/2326601'), ('2015-08-15 22:10:36', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', 'Kingdom Of Monkeys', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2326699'), ('2015-08-15 22:13:03', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', 'Kingdom Of Monkeys', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2326714'), ('2015-08-15 22:15:52', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', 'Kingdom Of Monkeys', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2326727'), ('2015-08-15 22:20:43', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', 'Kingdom Of Monkeys', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2326762'), ('2015-08-15 22:27:49', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', 'Kingdom Of Monkeys', 'RE', '0', 'C++', 'https://www.hackerearth.com/submission/2326799'), ('2015-08-15 22:27:49', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', 'Kingdom Of Monkeys', 'RE', '0', 'C++', 'https://www.hackerearth.com/submission/2326799'), ('2015-08-15 22:28:47', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', 'Kingdom Of Monkeys', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2326811'), ('2015-08-15 22:42:24', 'https://www.hackerearth.com/practice/algorithms/graphs/depth-first-search/practice-problems/algorithm/kingdom-of-monkeys/', 'Kingdom Of Monkeys', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2326907'), ('2015-08-28 02:03:17', 'https://www.hackerearth.com/practice/data-structures/disjoint-data-strutures/basics-of-disjoint-data-structures/practice-problems/algorithm/city-and-flood-1/', 'City and Flood', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/2400169'), ('2015-09-03 20:34:56', 'https://www.hackerearth.com/problem/algorithm/guess-the-triangle/', 'Guess the triangle', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/2449157'), ('2015-12-18 13:28:32', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', 'Prime Probablity', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/3031761'), ('2015-12-18 13:33:00', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', 'Prime Probablity', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/3031774'), ('2015-12-18 13:46:11', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', 'Prime Probablity', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/3031821'), ('2015-12-18 13:54:19', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', 'Prime Probablity', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/3031840'), ('2015-12-18 23:25:48', 'https://www.hackerearth.com/problem/algorithm/special-subarray-1/', 'Special Subarray', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/3035335'), ('2015-12-18 23:31:43', 'https://www.hackerearth.com/problem/algorithm/special-subarray-1/', 'Special Subarray', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/3035367'), ('2015-12-20 11:59:00', 'https://www.hackerearth.com/problem/algorithm/prime-probablity-1/', 'Prime Probablity', 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/3050348'), ('2016-01-07 00:37:02', 'https://www.hackerearth.com/problem/algorithm/digital-numbers/', 'Digital Numbers', 'WA', '0', 'C', 'https://www.hackerearth.com/submission/3120602'), ('2016-09-14 23:25:52', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/xsquare-and-two-arrays/', 'Xsquare And Two Arrays', 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/5167117'), ('2016-09-14 23:26:45', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/xsquare-and-two-arrays/', 'Xsquare And Two Arrays', 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/5167122'), ('2016-09-14 23:46:04', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/xsquare-and-two-arrays/', 'Xsquare And Two Arrays', 'WA', '0', 'C++', 'https://www.hackerearth.com/submission/5167266'), ('2016-09-14 23:50:24', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/xsquare-and-two-arrays/', 'Xsquare And Two Arrays', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/5167320'), ('2016-09-29 22:25:56', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/choosing-the-judges-7/', 'Choosing the Judges', 'AC', '100', 'C++', 'https://www.hackerearth.com/submission/5421843'), ('2016-09-29 23:05:06', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/rhezo-and-prime-problems/', 'Rhezo and Prime Problems', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/5422329'), ('2016-09-29 23:16:01', 'https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/rhezo-and-prime-problems/', 'Rhezo and Prime Problems', 'PS', '0', 'C++', 'https://www.hackerearth.com/submission/5422459'), ('2020-09-12 13:11:17', 'https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/array-sum-2-725368ac/', 'Array Sum', 'AC', '100', 'C++14', 'https://www.hackerearth.com/submission/47234522')], + "HackerRank": [('2014-06-09 22:53:13', 'https://www.hackerrank.com/challenges/solve-me-first', 'Solve Me First', 'AC', '100', '-', ''), ('2014-06-09 23:03:21', 'https://www.hackerrank.com/challenges/find-point', 'Find the Point', 'AC', '100', '-', ''), ('2014-06-09 23:40:25', 'https://www.hackerrank.com/challenges/lonely-integer', 'Lonely Integer', 'AC', '100', '-', ''), ('2014-06-10 00:08:01', 'https://www.hackerrank.com/challenges/the-love-letter-mystery', 'The Love-Letter Mystery', 'AC', '100', '-', ''), ('2014-07-17 02:38:05', 'https://www.hackerrank.com/challenges/utopian-tree', 'Utopian Tree', 'AC', '100', '-', ''), ('2014-07-17 03:11:48', 'https://www.hackerrank.com/contests/w7/challenges/die-hard-3', 'Die Hard 3', 'AC', '100', '-', ''), ('2014-07-17 03:24:54', 'https://www.hackerrank.com/challenges/runningtime', 'Running Time of Algorithms', 'AC', '100', '-', ''), ('2014-07-17 03:49:56', 'https://www.hackerrank.com/contests/w7/challenges/string-function-calculation', 'String Function Calculation', 'AC', '100', '-', ''), ('2014-07-22 01:29:21', 'https://www.hackerrank.com/challenges/gem-stones', 'Gemstones', 'AC', '100', '-', ''), ('2014-08-08 17:24:20', 'https://www.hackerrank.com/contests/w8/challenges/counter-game', 'Counter game', 'AC', '100', '-', ''), ('2014-09-24 01:29:10', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler052', 'Project Euler #52: Permuted multiples', 'AC', '100', '-', ''), ('2014-09-27 20:48:27', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler001', 'Project Euler #1: Multiples of 3 and 5', 'AC', '100', '-', ''), ('2014-09-27 22:39:27', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler002', 'Project Euler #2: Even Fibonacci numbers', 'AC', '100', '-', ''), ('2014-09-28 00:53:48', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler016', 'Project Euler #16: Power digit sum', 'AC', '100', '-', ''), ('2014-09-28 03:59:31', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler034', 'Project Euler #34: Digit factorials', 'AC', '100', '-', ''), ('2014-10-01 19:47:25', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler042', 'Project Euler #42: Coded triangle numbers', 'AC', '100', '-', ''), ('2014-10-01 20:06:36', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler030', 'Project Euler #30: Digit Nth powers', 'AC', '100', '-', ''), ('2014-10-02 22:39:43', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler048', 'Project Euler #48: Self powers', 'AC', '100', '-', ''), ('2014-10-02 22:55:27', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler020', 'Project Euler #20: Factorial digit sum', 'AC', '100', '-', ''), ('2014-10-04 00:35:02', 'https://www.hackerrank.com/challenges/bigger-is-greater', 'Bigger is Greater', 'AC', '100', '-', ''), ('2014-10-04 05:36:38', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler005', 'Project Euler #5: Smallest multiple', 'AC', '100', '-', ''), ('2014-10-04 05:45:06', 'https://www.hackerrank.com/contests/projecteuler/challenges/euler007', 'Project Euler #7: 10001st prime', 'AC', '100', '-', ''), ('2014-12-08 06:00:42', 'https://www.hackerrank.com/challenges/find-hackerrank', 'Find HackerRank', 'AC', '100', '-', ''), ('2014-12-08 06:08:01', 'https://www.hackerrank.com/challenges/valid-pan-format', 'Valid PAN format', 'AC', '100', '-', ''), ('2014-12-08 06:17:05', 'https://www.hackerrank.com/challenges/hackerrank-tweets', 'HackerRank Tweets', 'AC', '100', '-', ''), ('2014-12-08 06:31:09', 'https://www.hackerrank.com/challenges/split-number', 'Split the Phone Numbers', 'AC', '100', '-', ''), ('2015-05-29 07:50:36', 'https://www.hackerrank.com/challenges/select-all-sql', 'Select All', 'AC', '100', '-', ''), ('2015-05-29 07:52:08', 'https://www.hackerrank.com/challenges/select-by-id', 'Select By ID', 'AC', '100', '-', ''), ('2015-05-29 07:53:21', 'https://www.hackerrank.com/challenges/japanese-cities-attributes', "Japanese Cities' Attributes", 'AC', '100', '-', ''), ('2015-05-29 07:54:43', 'https://www.hackerrank.com/challenges/japanese-cities-name', "Japanese Cities' Names", 'AC', '100', '-', ''), ('2015-05-29 07:57:45', 'https://www.hackerrank.com/challenges/average-population', 'Average Population', 'AC', '100', '-', ''), ('2015-05-29 07:59:00', 'https://www.hackerrank.com/challenges/japan-population', 'Japan Population', 'AC', '100', '-', ''), ('2015-05-30 09:47:34', 'https://www.hackerrank.com/challenges/py-hello-world', 'Say "Hello, World!" With Python', 'AC', '100', '-', ''), ('2015-05-30 09:48:41', 'https://www.hackerrank.com/challenges/python-raw-input', 'Reading Raw Input', 'AC', '100', '-', ''), ('2015-05-30 09:50:03', 'https://www.hackerrank.com/challenges/python-arithmetic-operators', 'Arithmetic Operators', 'AC', '100', '-', ''), ('2015-05-30 09:53:02', 'https://www.hackerrank.com/challenges/python-division', 'Python: Division', 'AC', '100', '-', ''), ('2015-05-30 09:55:01', 'https://www.hackerrank.com/challenges/python-mod-divmod', 'Mod Divmod', 'AC', '100', '-', ''), ('2015-05-30 22:23:33', 'https://www.hackerrank.com/contests/code-cpp-may-2015/challenges/redundant-or-not', 'Redundant or Not?', 'AC', '100', '-', ''), ('2015-05-30 22:31:57', 'https://www.hackerrank.com/contests/code-cpp-may-2015/challenges/string-transformations', 'String Transformations', 'AC', '100', '-', ''), ('2015-05-31 08:52:13', 'https://www.hackerrank.com/contests/code-cpp-may-2015/challenges/linked-list-to-binary', 'Linked List to Binary', 'AC', '100', '-', ''), ('2015-05-31 09:20:17', 'https://www.hackerrank.com/contests/code-cpp-may-2015/challenges/polygon-inheritance', 'Polygon Inheritance', 'AC', '100', '-', ''), ('2015-06-01 06:19:47', 'https://www.hackerrank.com/challenges/print-the-elements-of-a-linked-list', 'Print the Elements of a Linked List', 'AC', '100', '-', ''), ('2015-06-01 06:22:43', 'https://www.hackerrank.com/challenges/insert-a-node-at-the-tail-of-a-linked-list', 'Insert a Node at the Tail of a Linked List', 'AC', '100', '-', ''), ('2015-06-01 06:24:34', 'https://www.hackerrank.com/challenges/insert-a-node-at-the-head-of-a-linked-list', 'Insert a node at the head of a linked list', 'AC', '100', '-', ''), ('2015-06-01 06:45:45', 'https://www.hackerrank.com/challenges/insert-a-node-at-a-specific-position-in-a-linked-list', 'Insert a node at a specific position in a linked list', 'AC', '100', '-', ''), ('2015-06-01 06:49:29', 'https://www.hackerrank.com/challenges/delete-a-node-from-a-linked-list', 'Delete a Node', 'AC', '100', '-', ''), ('2015-06-01 06:51:09', 'https://www.hackerrank.com/challenges/print-the-elements-of-a-linked-list-in-reverse', 'Print in Reverse', 'AC', '100', '-', ''), ('2015-06-01 06:56:24', 'https://www.hackerrank.com/challenges/reverse-a-linked-list', 'Reverse a linked list', 'AC', '100', '-', ''), ('2015-06-01 06:59:39', 'https://www.hackerrank.com/challenges/compare-two-linked-lists', 'Compare two linked lists', 'AC', '100', '-', ''), ('2015-06-01 07:07:07', 'https://www.hackerrank.com/challenges/merge-two-sorted-linked-lists', 'Merge two sorted linked lists', 'AC', '100', '-', ''), ('2015-06-01 07:12:02', 'https://www.hackerrank.com/challenges/get-the-value-of-the-node-at-a-specific-position-from-the-tail', 'Get Node Value', 'AC', '100', '-', ''), ('2015-06-01 07:18:57', 'https://www.hackerrank.com/challenges/delete-duplicate-value-nodes-from-a-sorted-linked-list', 'Delete duplicate-value nodes from a sorted linked list', 'AC', '100', '-', ''), ('2015-06-01 07:25:20', 'https://www.hackerrank.com/challenges/detect-whether-a-linked-list-contains-a-cycle', 'Cycle Detection', 'AC', '100', '-', ''), ('2015-06-01 07:39:03', 'https://www.hackerrank.com/challenges/find-the-merge-point-of-two-joined-linked-lists', 'Find Merge Point of Two Lists', 'AC', '100', '-', ''), ('2015-06-01 07:55:58', 'https://www.hackerrank.com/challenges/insert-a-node-into-a-sorted-doubly-linked-list', 'Inserting a Node Into a Sorted Doubly Linked List', 'AC', '100', '-', ''), ('2015-06-01 08:05:55', 'https://www.hackerrank.com/challenges/reverse-a-doubly-linked-list', 'Reverse a doubly linked list', 'AC', '100', '-', ''), ('2015-06-01 08:07:24', 'https://www.hackerrank.com/challenges/tree-preorder-traversal', 'Tree: Preorder Traversal', 'AC', '100', '-', ''), ('2015-06-01 08:09:21', 'https://www.hackerrank.com/challenges/tree-postorder-traversal', 'Tree: Postorder Traversal', 'AC', '100', '-', ''), ('2015-06-01 08:10:09', 'https://www.hackerrank.com/challenges/tree-inorder-traversal', 'Tree: Inorder Traversal', 'AC', '100', '-', ''), ('2015-06-03 03:08:32', 'https://www.hackerrank.com/challenges/connecting-towns', 'Connecting Towns', 'AC', '100', '-', ''), ('2015-06-03 03:13:31', 'https://www.hackerrank.com/challenges/handshake', 'Handshake', 'AC', '100', '-', ''), ('2015-06-03 03:17:17', 'https://www.hackerrank.com/challenges/correctness-invariant', 'Correctness and the Loop Invariant', 'AC', '100', '-', ''), ('2015-06-03 03:22:14', 'https://www.hackerrank.com/challenges/tutorial-intro', 'Intro to Tutorial Challenges', 'AC', '100', '-', ''), ('2015-06-10 11:27:13', 'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/text-processing-in-linux-the-grep-command-4', "'Grep' - A", 'AC', '100', '-', ''), ('2015-06-10 11:32:34', 'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/paste-1', 'Paste - 1', 'AC', '100', '-', ''), ('2015-06-10 11:52:57', 'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/awk-1', "'Awk' - 1", 'AC', '100', '-', ''), ('2015-06-10 11:56:28', 'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/awk-2', "'Awk' - 2", 'AC', '100', '-', ''), ('2015-06-10 12:10:10', 'https://www.hackerrank.com/contests/the-linux-bash-fest/challenges/text-processing-in-linux-the-grep-command-5', "'Grep' - B", 'AC', '100', '-', ''), ('2015-06-27 21:35:13', 'https://www.hackerrank.com/contests/segfault/challenges/three-loops', 'Three Loops', 'AC', '100', '-', ''), ('2015-06-27 22:25:24', 'https://www.hackerrank.com/contests/segfault/challenges/count-the-divisors', 'Count the Divisors', 'AC', '100', '-', ''), ('2015-08-01 21:58:15', 'https://www.hackerrank.com/contests/countercode/challenges/imba', 'Imba', 'AC', '100', '-', ''), ('2015-08-01 22:46:04', 'https://www.hackerrank.com/contests/countercode/challenges/campers', 'Campers', 'AC', '100', '-', ''), ('2015-10-30 02:51:27', 'https://www.hackerrank.com/contests/codestorm/challenges/emmas-notebook', "Emma's Notebook", 'AC', '100', '-', ''), ('2016-08-06 21:37:21', 'https://www.hackerrank.com/contests/morgan-stanley-2016/challenges/jesse-and-profit', 'Jesse and Profit', 'AC', '100', '-', ''), ('2016-08-24 06:14:46', 'https://www.hackerrank.com/challenges/30-hello-world', 'Day 0: Hello, World.', 'AC', '100', '-', ''), ('2017-11-03 00:51:08', 'https://www.hackerrank.com/challenges/30-data-types', 'Day 1: Data Types', 'AC', '100', '-', '')], "UVa": [('2016-12-11 20:21:23', 'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=38', 'Ecological Bin Packing', 'WA', '0', 'C++', ''), ('2016-12-14 05:23:40', 'https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=38', 'Ecological Bin Packing', 'CE', '0', 'C++', '')], - "Timus": [('2018-07-01 01:41:04', 'http://acm.timus.ru/problem.aspx?space=1&num=1285&locale=en', u'1285. Thread in a Hyperspace', 'CE', '0', u'G++ 7.1', '')], - "AtCoder": [('2020-05-16 19:04:34', u'https://atcoder.jp/contests/abc135/tasks/abc135_d', 'D. Digits Parade', u'WA', 0.0, u'Python2 (2.7.6)', u'https://atcoder.jp/contests/abc135/submissions/13262993'), ('2020-05-18 12:04:47', u'https://atcoder.jp/contests/abc135/tasks/abc135_d', 'D. Digits Parade', u'WA', 0.0, u'Python2 (2.7.6)', u'https://atcoder.jp/contests/abc135/submissions/13368979'), ('2020-05-18 12:58:01', u'https://atcoder.jp/contests/agc010/tasks/agc010_a', 'A. Addition', u'RE', 0.0, u'Python2 (2.7.6)', u'https://atcoder.jp/contests/agc010/submissions/13370205')] + "Timus": [('2018-07-01 01:41:04', 'http://acm.timus.ru/problem.aspx?space=1&num=1285&locale=en', '1285. Thread in a Hyperspace', 'CE', '0', 'G++ 7.1', '')], + "AtCoder": [('2020-05-16 19:04:34', 'https://atcoder.jp/contests/abc135/tasks/abc135_d', 'D. Digits Parade', 'WA', 0.0, 'Python2 (2.7.6)', 'https://atcoder.jp/contests/abc135/submissions/13262993'), ('2020-05-18 12:04:47', 'https://atcoder.jp/contests/abc135/tasks/abc135_d', 'D. Digits Parade', 'WA', 0.0, 'Python2 (2.7.6)', 'https://atcoder.jp/contests/abc135/submissions/13368979'), ('2020-05-18 12:58:01', 'https://atcoder.jp/contests/agc010/tasks/agc010_a', 'A. Addition', 'RE', 0.0, 'Python2 (2.7.6)', 'https://atcoder.jp/contests/agc010/submissions/13370205')] } uva_problem_dict = utilities.get_problem_mappings(uvadb, uvadb.problem, ["problem_id", @@ -332,7 +330,7 @@ def test_submissions(self): # ------------------------------------------------------------------------------ def test_retrieval(retrieval_object, method_name): error_message = "" - for i in xrange(1): + for i in range(1): try: getattr(retrieval_object, method_name)() return "Success" @@ -359,7 +357,7 @@ def test_retrieval(retrieval_object, method_name): pushover_message += res + "\n" if pushover_message != "": - print "pushover_message", pushover_message + print(("pushover_message", pushover_message)) response = requests.post("https://api.pushover.net/1/messages.json", data={"token": current.pushover_api_token, "user": current.pushover_user_token, diff --git a/views/default/dashboard.html b/views/default/dashboard.html index 066232a5..a792d18c 100644 --- a/views/default/dashboard.html +++ b/views/default/dashboard.html @@ -5,7 +5,6 @@