message
stringlengths
2
23.4k
message_type
stringclasses
2 values
message_id
int64
0
1
conversation_id
int64
129
108k
cluster
float64
6
6
__index_level_0__
int64
258
216k
Provide tags and a correct Python 3 solution for this coding contest problem. Many modern text editors automatically check the spelling of the user's text. Some editors even suggest how to correct typos. In this problem your task to implement a small functionality to correct two types of typos in a word. We will assu...
instruction
0
75,369
6
150,738
Tags: greedy, implementation Correct Solution: ``` s= list(input()) pre= s[0] ns = [] prec=0 ns.append(pre) posc=1 for i in s[1:]: if(i==pre): if(prec!=2 and posc<2 ): ns.append(i) posc+=1 pre=i else: prec=posc posc =1 ns.append(i) pre=...
output
1
75,369
6
150,739
Provide tags and a correct Python 3 solution for this coding contest problem. Many modern text editors automatically check the spelling of the user's text. Some editors even suggest how to correct typos. In this problem your task to implement a small functionality to correct two types of typos in a word. We will assu...
instruction
0
75,370
6
150,740
Tags: greedy, implementation Correct Solution: ``` import sys import math s = input() l = len(s) p = '1' k = 0 v = 1 for i in range(l): if(p != s[i]): p = s[i] if(v == 1): k = 0 v = 1 sys.stdout.write(p) else: v += 1 if(v == 2): ...
output
1
75,370
6
150,741
Provide tags and a correct Python 3 solution for this coding contest problem. Many modern text editors automatically check the spelling of the user's text. Some editors even suggest how to correct typos. In this problem your task to implement a small functionality to correct two types of typos in a word. We will assu...
instruction
0
75,371
6
150,742
Tags: greedy, implementation Correct Solution: ``` # ========= /\ /| |====/| # | / \ | | / | # | /____\ | | / | # | / \ | | / | # ========= / \ ===== |/====| # code if __name__ == "__main__": s = str(input()) i = 0 ...
output
1
75,371
6
150,743
Provide tags and a correct Python 3 solution for this coding contest problem. Many modern text editors automatically check the spelling of the user's text. Some editors even suggest how to correct typos. In this problem your task to implement a small functionality to correct two types of typos in a word. We will assu...
instruction
0
75,372
6
150,744
Tags: greedy, implementation Correct Solution: ``` #Fixing Typos string = input() fixedString = "" i = 0 if len(string) <=2: print(string) exit(0) while i<len(string): #Find consecutive letters chain = 0 j = i while string[j] == string[i]: j += 1 chain += 1 if j == len(string): j -= 1 break if chain...
output
1
75,372
6
150,745
Provide tags and a correct Python 3 solution for this coding contest problem. Many modern text editors automatically check the spelling of the user's text. Some editors even suggest how to correct typos. In this problem your task to implement a small functionality to correct two types of typos in a word. We will assu...
instruction
0
75,373
6
150,746
Tags: greedy, implementation Correct Solution: ``` word = '' for x in input(): if not ( (len(word) >= 2 and word[-1] == word[-2] == x) or (len(word) >= 3 and word[-1] == x and word[-2] == word[-3]) ): word += x print(word) #Aloosh ```
output
1
75,373
6
150,747
Provide tags and a correct Python 3 solution for this coding contest problem. Many modern text editors automatically check the spelling of the user's text. Some editors even suggest how to correct typos. In this problem your task to implement a small functionality to correct two types of typos in a word. We will assu...
instruction
0
75,374
6
150,748
Tags: greedy, implementation Correct Solution: ``` import sys import math import bisect from sys import stdin, stdout from math import gcd, floor, sqrt, log from collections import defaultdict as dd from bisect import bisect_left as bl, bisect_right as br from functools import lru_cache from collections import Counter ...
output
1
75,374
6
150,749
Provide tags and a correct Python 3 solution for this coding contest problem. Many modern text editors automatically check the spelling of the user's text. Some editors even suggest how to correct typos. In this problem your task to implement a small functionality to correct two types of typos in a word. We will assu...
instruction
0
75,375
6
150,750
Tags: greedy, implementation Correct Solution: ``` a = list(input()) x = '' t = 0 y = 1 while t != len(a): if t == 0 : x +=a[t] else: if a[t] == a[t-1]: y += 1 else: x += a[t] y = 1 t += 1 continue if y > 2: ...
output
1
75,375
6
150,751
Provide tags and a correct Python 3 solution for this coding contest problem. Many modern text editors automatically check the spelling of the user's text. Some editors even suggest how to correct typos. In this problem your task to implement a small functionality to correct two types of typos in a word. We will assu...
instruction
0
75,376
6
150,752
Tags: greedy, implementation Correct Solution: ``` s=input() C=[0]*len(s) ind=-1 x=True for i in range(len(s)): if(x): C[i]=1 y=True x=False ind+=1 continue if(y): if(s[i]==s[ind]): C[i]=1 z=True y=False ind+=1 ...
output
1
75,376
6
150,753
Provide tags and a correct Python 3 solution for this coding contest problem. Smith wakes up at the side of a dirty, disused bathroom, his ankle chained to pipes. Next to him is tape-player with a hand-written message "Play Me". He finds a tape in his own back pocket. After putting the tape in the tape-player, he sees...
instruction
0
75,558
6
151,116
Tags: implementation Correct Solution: ``` import sys from itertools import product from collections import defaultdict r=sys.stdin.readline N,M=map(int,r().split()) words=defaultdict(int) tb=['a','b','c','d','e'] st=set() cnt=0 res="" def dfs(u): global res,cnt if u==l: if res in st: return...
output
1
75,558
6
151,117
Provide a correct Python 3 solution for this coding contest problem. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and creates an inquiry statement for database search. In each cas...
instruction
0
75,782
6
151,564
"Correct Solution: ``` # coding: utf-8 # Your code here! a=input() a=a.replace(","," ") a=a.replace("."," ") print(*[s for s in a.split() if 3<=len(s)<=6]) ```
output
1
75,782
6
151,565
Provide a correct Python 3 solution for this coding contest problem. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and creates an inquiry statement for database search. In each cas...
instruction
0
75,783
6
151,566
"Correct Solution: ``` import re a=input() x=re.split('[, .]',a) for i in range(len(x)): if len(x[i]) < 3 or len(x[i]) > 6: x[i]=0 y=list(x) z=[n for n in y if n != 0] print(*z) ```
output
1
75,783
6
151,567
Provide a correct Python 3 solution for this coding contest problem. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and creates an inquiry statement for database search. In each cas...
instruction
0
75,784
6
151,568
"Correct Solution: ``` # coding: utf-8 # Your code here! #ポイント:ピリオドで文章が終わるとは限らない。ピリオドが2つ続いてたらということを考える s = list(input()) #print(s) c = 0 n = [] ans = [] for i in range(len(s)): if s[i] == "," or s[i] == "." or s[i] == " ": if c >= 3 and c <= 6: ans = ans + n + [" "] #appendは使えない n.cle...
output
1
75,784
6
151,569
Provide a correct Python 3 solution for this coding contest problem. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and creates an inquiry statement for database search. In each cas...
instruction
0
75,785
6
151,570
"Correct Solution: ``` # coding: utf-8 # Your code here! s = list(input()) c = 0 n = [] ans = [] for i in range(len(s)): if s[i] == "," or s[i] == "." or s[i] == " ": if c >= 3 and c <= 6: ans = ans + n + [" "] n.clear() c = 0 else: n.append(s[i]) c += 1 ...
output
1
75,785
6
151,571
Provide a correct Python 3 solution for this coding contest problem. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and creates an inquiry statement for database search. In each cas...
instruction
0
75,786
6
151,572
"Correct Solution: ``` import sys try: a=list(map(str,input().split())) except EOFError: sys.exit() b=[] for i in range(len(a)): if "," in a[i]: a[i]=a[i].replace(',', '') elif "." in a[i]: a[i]=a[i].replace('.', '') if len(a[i])>=3 and len(a[i])<=6: b.append(a[i]) b=' '.join...
output
1
75,786
6
151,573
Provide a correct Python 3 solution for this coding contest problem. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and creates an inquiry statement for database search. In each cas...
instruction
0
75,787
6
151,574
"Correct Solution: ``` a=input() a1=a.replace(","," ") a2=a1.replace("."," ") A=a2.split() B=[] for i in range(len(A)): if 3<=len(A[i])<=6: B.append(A[i]) print(*B) ```
output
1
75,787
6
151,575
Provide a correct Python 3 solution for this coding contest problem. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and creates an inquiry statement for database search. In each cas...
instruction
0
75,788
6
151,576
"Correct Solution: ``` import re n=input() k=re.split("[ ,.]", n) j=0 for i in range(len(k)): if len(k[i])>=3 and len(k[i])<=6: if j!=0: print(" ", end="") print(k[i], end="") j+=1 print("") ```
output
1
75,788
6
151,577
Provide a correct Python 3 solution for this coding contest problem. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and creates an inquiry statement for database search. In each cas...
instruction
0
75,789
6
151,578
"Correct Solution: ``` import re a = re.split('[,. ]',input()) b = [] for i in a: if 3 <= len(i) <= 6: b.append(i) print(*b) ```
output
1
75,789
6
151,579
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and create...
instruction
0
75,790
6
151,580
Yes
output
1
75,790
6
151,581
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and create...
instruction
0
75,791
6
151,582
Yes
output
1
75,791
6
151,583
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and create...
instruction
0
75,792
6
151,584
Yes
output
1
75,792
6
151,585
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and create...
instruction
0
75,793
6
151,586
Yes
output
1
75,793
6
151,587
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and create...
instruction
0
75,794
6
151,588
No
output
1
75,794
6
151,589
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and create...
instruction
0
75,795
6
151,590
No
output
1
75,795
6
151,591
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and create...
instruction
0
75,796
6
151,592
No
output
1
75,796
6
151,593
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Internet search engines, such as Google, automatically sort and categorize web pages around the world to create a huge database. It also parses the search keywords entered by the user and create...
instruction
0
75,797
6
151,594
No
output
1
75,797
6
151,595
Provide a correct Python 3 solution for this coding contest problem. The amount of information on the World Wide Web is growing quite rapidly. In this information explosion age, we must survive by accessing only the Web pages containing information relevant to our own needs. One of the key technologies for this purpos...
instruction
0
75,850
6
151,700
"Correct Solution: ``` from collections import deque import sys readline = sys.stdin.readline write = sys.stdout.write def solve(): N, M = map(int, readline().split()) if N == M == 0: return False ca = ord('a') E = [list(map(lambda x: ord(x)-ca, readline().strip())) for i in range(N)] F = "...
output
1
75,850
6
151,701
Provide a correct Python 3 solution for this coding contest problem. The amount of information on the World Wide Web is growing quite rapidly. In this information explosion age, we must survive by accessing only the Web pages containing information relevant to our own needs. One of the key technologies for this purpos...
instruction
0
75,851
6
151,702
"Correct Solution: ``` import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,copy,functools sys.setrecursionlimit(10**7) inf = 10**20 eps = 1.0 / 10**13 mod = 10**9+7 dd = [(-1,0),(0,1),(1,0),(0,-1)] ddn = [(-1,0),(-1,1),(0,1),(1,1),(1,0),(1,-1),(0,-1),(-1,-1)] def LI(): return [int...
output
1
75,851
6
151,703
Provide tags and a correct Python 3 solution for this coding contest problem. Input The input consists of a single string of uppercase letters A-Z. The length of the string is between 1 and 10 characters, inclusive. Output Output "YES" or "NO". Examples Input GENIUS Output YES Input DOCTOR Output ...
instruction
0
76,006
6
152,012
Tags: *special, brute force, dp, strings Correct Solution: ``` elements = { 'H', 'HE', 'LI', 'BE', 'B', 'C', 'N', 'O', 'F', 'NE', 'NA', 'MG', 'AL', 'SI', 'P', 'S', 'CL', 'AR', 'K', 'CA', 'SC', 'TI', 'V', 'CR', 'MN', ...
output
1
76,006
6
152,013
Provide tags and a correct Python 3 solution for this coding contest problem. Input The input consists of a single string of uppercase letters A-Z. The length of the string is between 1 and 10 characters, inclusive. Output Output "YES" or "NO". Examples Input GENIUS Output YES Input DOCTOR Output ...
instruction
0
76,008
6
152,016
Tags: *special, brute force, dp, strings Correct Solution: ``` e=input() d=0 def f(e): arr= ['H','HE','LI','BE','B','C','N','O','F','NE','NA','MG','AL','SI','P','S','CL','AR','K','CA','SC','TI','V','CR','MN','FE','CO','NI','CU','ZN','GA','GE','AS','SE','BR','KR','RB','SR','Y','ZR','NB','MO','TC','RU','RH','PD','AG'...
output
1
76,008
6
152,017
Provide tags and a correct Python 3 solution for this coding contest problem. Input The input consists of a single string of uppercase letters A-Z. The length of the string is between 1 and 10 characters, inclusive. Output Output "YES" or "NO". Examples Input GENIUS Output YES Input DOCTOR Output ...
instruction
0
76,009
6
152,018
Tags: *special, brute force, dp, strings Correct Solution: ``` elements = """1 H Hydrogen 2 He Helium 3 Li Lithium 4 Be Beryllium 5 B Boron 6 C Carbon 7 N Nitrogen 8 O Oxygen 9 F Fluorine 10 Ne Neon 11 Na Sodium 12 Mg Magnesium 13 Al Aluminum 14 Si Silicon 15 P Phosphorus 16 S Sulfur 17 Cl Chlorine 18 Ar Argon 19 K Pot...
output
1
76,009
6
152,019
Provide tags and a correct Python 3 solution for this coding contest problem. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calendar should consist of exactly n / 2 lines of stri...
instruction
0
76,290
6
152,580
Tags: greedy, strings Correct Solution: ``` n = int(input()) a = [] for i in range(10): a.append([]) res = 0 for i in range(n): s = input() a[len(s)-1].append(s) res += len(s) res //= (n // 2) c = input() b = [] for i in range(10): a[i].sort() b.append(0) for i in range(n // 2): ...
output
1
76,290
6
152,581
Provide tags and a correct Python 3 solution for this coding contest problem. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calendar should consist of exactly n / 2 lines of stri...
instruction
0
76,291
6
152,582
Tags: greedy, strings Correct Solution: ``` n = int(input()) // 2 a = sorted([input() for i in range(n * 2)], reverse = 1) d = input() L = sum(len(i) for i in a) // n ans = [] for i in range(n): x = a.pop() for y in a[::-1]: if len(x) + len(y) == L: ans.append(min(x + d + y, y + d + x)) ...
output
1
76,291
6
152,583
Provide tags and a correct Python 3 solution for this coding contest problem. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calendar should consist of exactly n / 2 lines of stri...
instruction
0
76,292
6
152,584
Tags: greedy, strings Correct Solution: ``` import sys from array import array # noqa: F401 def input(): return sys.stdin.buffer.readline().decode('utf-8') n = int(input()) a = [input().rstrip() for _ in range(n)] d = input().rstrip() words = [[] for _ in range(100)] total_len = 0 for word in a: words[len...
output
1
76,292
6
152,585
Provide tags and a correct Python 3 solution for this coding contest problem. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calendar should consist of exactly n / 2 lines of stri...
instruction
0
76,293
6
152,586
Tags: greedy, strings Correct Solution: ``` # t = int(input()) # while t>0: n = int(input()) // 2 a = sorted([input() for i in range(n * 2)], reverse=1) d = input() L = sum(len(i) for i in a) // n ans = [] for i in range(n): x = a.pop() for y in a[::-1]: if len(x) + len(y) == L: ans.append(m...
output
1
76,293
6
152,587
Provide tags and a correct Python 3 solution for this coding contest problem. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calendar should consist of exactly n / 2 lines of stri...
instruction
0
76,294
6
152,588
Tags: greedy, strings Correct Solution: ``` from collections import defaultdict n = int(input()) words = defaultdict(list) for _ in range(n): word = input().strip() words[len(word)].append(word) separator = input().strip() for s in words: words[s].sort() polovica = 2 * sum(sum(len(e) for e in words[x]...
output
1
76,294
6
152,589
Provide tags and a correct Python 3 solution for this coding contest problem. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calendar should consist of exactly n / 2 lines of stri...
instruction
0
76,295
6
152,590
Tags: greedy, strings Correct Solution: ``` n = int(input()) a = [] for i in range(10): a.append([]) res = 0 for i in range(n): s = input() a[len(s)-1].append(s) res += len(s) res //= (n // 2) c = input() b = [] for i in range(10): a[i].sort() b.append(0) for i in range(n // 2): cur = 'zzzzz...
output
1
76,295
6
152,591
Provide tags and a correct Python 3 solution for this coding contest problem. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calendar should consist of exactly n / 2 lines of stri...
instruction
0
76,296
6
152,592
Tags: greedy, strings Correct Solution: ``` import heapq n = int(input()) totLength = 0 allNames = [] used = {} namesOfLength = [[] for i in range(11)] for o in range(n): s = input() totLength += len(s) allNames.append(s) namesOfLength[len(s)].append(s) d = input() for i in range(n): allNames[i] +=...
output
1
76,296
6
152,593
Provide tags and a correct Python 3 solution for this coding contest problem. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calendar should consist of exactly n / 2 lines of stri...
instruction
0
76,297
6
152,594
Tags: greedy, strings Correct Solution: ``` from sys import stdin from collections import deque n = int(stdin.readline()) branches = [] total = 0 for x in range(n): branches.append(stdin.readline().strip()) total += len(branches[-1]) l0 = (total*2)//n d = stdin.readline().strip() branches = [x+d for x in ...
output
1
76,297
6
152,595
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calenda...
instruction
0
76,298
6
152,596
No
output
1
76,298
6
152,597
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calenda...
instruction
0
76,299
6
152,598
No
output
1
76,299
6
152,599
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calenda...
instruction
0
76,300
6
152,600
No
output
1
76,300
6
152,601
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. BerOilGasDiamondBank has branches in n cities, at that n is an even number. The bank management wants to publish a calendar with the names of all those cities written in two columns: the calenda...
instruction
0
76,301
6
152,602
No
output
1
76,301
6
152,603
Provide a correct Python 3 solution for this coding contest problem. At many competitions that have a word «cup» in its official name the winner is presented with an actual cup. This time the organizers of one unusual programming competition have decided to please the winner even more and to add a nameplate to the cup...
instruction
0
76,700
6
153,400
"Correct Solution: ``` x=input() d=len(x) a=d//20 z=0 if d%20>0: a=a+1 if a>0: b=d//a if d%a>0: b=b+1 z=a-d%a else: b=d z=0 print(a,b) v=0 for i in range (a): if i<z: print (x[v:v+b-1],'*',sep='') v=v+b-1 else: print (x[v:v+b]) v=v+b ```
output
1
76,700
6
153,401
Provide a correct Python 3 solution for this coding contest problem. At many competitions that have a word «cup» in its official name the winner is presented with an actual cup. This time the organizers of one unusual programming competition have decided to please the winner even more and to add a nameplate to the cup...
instruction
0
76,701
6
153,402
"Correct Solution: ``` s = input() n = len(s) l = [] k = (n - 1) // 20 + 1 v = (n + k - 1) // k qw = [] for i in range(0, n): qw.append(s[i]) for i in range(0, abs(n - v * k)): qw.insert((i + 1) * v + 1, "*") s = "" for elem in qw: s = s + elem kl = [] for i in range(0, k): l.append(s[i * v : (i + 1) * ...
output
1
76,701
6
153,403
Provide a correct Python 3 solution for this coding contest problem. At many competitions that have a word «cup» in its official name the winner is presented with an actual cup. This time the organizers of one unusual programming competition have decided to please the winner even more and to add a nameplate to the cup...
instruction
0
76,702
6
153,404
"Correct Solution: ``` s=input() l=len(s) if l%20==0: b=l//20 else: b=l//20+1 a=1 while a*b<l: a+=1 v=[0]*b z=a*b-l for i in range(z): v[i%b]+=1 k=0 print(b,a) for i in range(b): print('*'*v[i]+s[:a-v[i]],end='') s=s[a-v[i]:] print() ```
output
1
76,702
6
153,405
Provide a correct Python 3 solution for this coding contest problem. At many competitions that have a word «cup» in its official name the winner is presented with an actual cup. This time the organizers of one unusual programming competition have decided to please the winner even more and to add a nameplate to the cup...
instruction
0
76,703
6
153,406
"Correct Solution: ``` s=list(input()) a=[] n=len(s) for i in range(1,6): if n/i==int(n/i) and n//i<=20: su=0 print(i,n//i) for ii in range(i): print(''.join(s[su:su+n//i])) su+=n//i exit() else: l=int(n/i)+1 n2=l-(n-((i-1)*l)) if n...
output
1
76,703
6
153,407
Provide a correct Python 3 solution for this coding contest problem. At many competitions that have a word «cup» in its official name the winner is presented with an actual cup. This time the organizers of one unusual programming competition have decided to please the winner even more and to add a nameplate to the cup...
instruction
0
76,704
6
153,408
"Correct Solution: ``` a = input() l = len(a) str = l // 20 + 1 if l % 20 == 0: str -= 1 stl = l // str if l % str != 0: stl += 1 zapas = stl * str - l naz = 0 print(str, stl) for i in range(str): if str - i < zapas: naz += 1 for u in range(stl): if u < stl - 1: print(a[i...
output
1
76,704
6
153,409
Provide a correct Python 3 solution for this coding contest problem. At many competitions that have a word «cup» in its official name the winner is presented with an actual cup. This time the organizers of one unusual programming competition have decided to please the winner even more and to add a nameplate to the cup...
instruction
0
76,705
6
153,410
"Correct Solution: ``` n = input() s = len(n) if s == 1: print(1, 1) print(n) else: string = (s - 1) // 20 + 1 def isReal(l): newS = s - l if (string - 1) * (l - 1) <= newS <= (string - 1) * (l): return True else: return False l = 1 while not isRea...
output
1
76,705
6
153,411
Provide a correct Python 3 solution for this coding contest problem. At many competitions that have a word «cup» in its official name the winner is presented with an actual cup. This time the organizers of one unusual programming competition have decided to please the winner even more and to add a nameplate to the cup...
instruction
0
76,706
6
153,412
"Correct Solution: ``` string=input() s=len(string) for a in range(1,6): if(s/a<=20): b=abs(-s//a) st=a*b-s break i=0 print(a,b) for m in range(a): print(str(string[i:i+b-bool(st)])+bool(st)*'*') i+=b-bool(st) st-=bool(st) ```
output
1
76,706
6
153,413
Provide a correct Python 3 solution for this coding contest problem. At many competitions that have a word «cup» in its official name the winner is presented with an actual cup. This time the organizers of one unusual programming competition have decided to please the winner even more and to add a nameplate to the cup...
instruction
0
76,707
6
153,414
"Correct Solution: ``` from math import ceil from time import sleep s = input() a = 20 l = len(s) b = ceil(l / a) x = 20 - (l % a) if x == 20: x = 0 while x >= b: x -= b a -= 1 answer = [] index1 = 0 for i in range(b - x): answer.append(s[index1:index1 + a]) index1 += a for i in range(x): an...
output
1
76,707
6
153,415