problem_id
stringlengths
6
6
user_id
stringlengths
10
10
time_limit
float64
1k
8k
memory_limit
float64
262k
1.05M
problem_description
stringlengths
48
1.55k
codes
stringlengths
35
98.9k
status
stringlengths
28
1.7k
submission_ids
stringlengths
28
1.41k
memories
stringlengths
13
808
cpu_times
stringlengths
11
610
code_sizes
stringlengths
7
505
p03834
u481026841
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\nprint(s.replace(',',''))\n", "s = input('')\nprint(s.replace(',',''))", "s = input('')\nprint(s.replace('',','))", "s = input()\nprint(s.replace(',',' '))\n"]
['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted']
['s203400831', 's260811154', 's952130204', 's430147866']
[2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 17.0, 18.0, 17.0]
[37, 38, 38, 38]
p03834
u483640741
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['x = input().split(",")\nx=str(x)\n\nprint(x.replace(","," "))', 'k,s=map(int,input().split())\n\ncount=0\n\nfor i in range(k+1):\n for j in range(k+1):\n z=s-(i+j)\n \n if 0<=z<=s:\n count+=1\nprint(count)\n', 'x = input()\nx=x.replace(","," ")\nprint(x)\n']
['Wrong Answer', 'Runtime Error', 'Accepted']
['s064842620', 's332223031', 's569383464']
[2940.0, 2940.0, 2940.0]
[17.0, 18.0, 17.0]
[58, 166, 42]
p03834
u487288850
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s = input()\ns.replace(","," ")\nprint(s)', 's = input()\ns=s.replace(","," ")\nprint(s)']
['Wrong Answer', 'Accepted']
['s344692960', 's453660681']
[9024.0, 8944.0]
[24.0, 27.0]
[39, 41]
p03834
u488178971
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['# ABC 051 B - Sum of Three Integers\u3000\nli = list(map(int,input().split()))\nk = li[0]\ns = li[1]\ncnt =0\nfor x in range(k+1):\n for y in range(k+1):\n z = s-x-y\n if 0<= z <= k: \n cnt+=1\nprint(cnt)', '\na,b,c =map(str,input().split(","))\nprint(a +" "+b+" "+c)']
['Runtime Error', 'Accepted']
['s156222962', 's001220168']
[3060.0, 2940.0]
[17.0, 17.0]
[219, 76]
p03834
u492447501
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['l = list(map(int, input().split()))\n\nprint(l[1], l[0])\n', 's = input()\n\nprint(s.replace(",", " "))']
['Runtime Error', 'Accepted']
['s658712613', 's203643363']
[2940.0, 2940.0]
[20.0, 18.0]
[55, 39]
p03834
u500279510
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\ns.replace(',', ' ')\nprint(s)\n", "s = input()\nprint(s.replace(',',' '))\n\n"]
['Wrong Answer', 'Accepted']
['s146772418', 's333955587']
[2940.0, 2940.0]
[17.0, 17.0]
[41, 39]
p03834
u502028059
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\ns1, s2, s3 = s.split(',')\nprint(s1, s2. s3)", "s = input()\ns1, s2, s3 = s.split(',')\nprint(s1, s2, s3)"]
['Runtime Error', 'Accepted']
['s732163279', 's714403485']
[2940.0, 2940.0]
[17.0, 17.0]
[55, 55]
p03834
u502149531
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["b = input()\na = list(b)\n\nfor i in range(len(b)) :\n if i == 5 or i == 13 :\n continue\n print(a[i],end ='')\n\nprint()", "a = list(input())\na[5] = ' '\na[15] = ' '\nprint (a)", "b = input()\na = list(b)\n\nfor i in range(len(b)) :\n if i == 5 or i == 13 :\n print(' ',end ='')\n continue\n print(a[i],end ='')\n\nprint()"]
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s027829952', 's046130083', 's677303830']
[2940.0, 2940.0, 2940.0]
[18.0, 19.0, 17.0]
[126, 50, 153]
p03834
u503518808
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['str_input = input()\n\nprint(str_input.split(","))\n', 's = input().split(",")\n \nprint(s[0], s[1], s[2])']
['Wrong Answer', 'Accepted']
['s226123402', 's560862546']
[2940.0, 2940.0]
[17.0, 17.0]
[49, 48]
p03834
u506587641
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["a, b, c = map(str, input().split(,))\n\nprint(a+''+b+''+c)", "s = str(input())\nans = ''\n\nfor i in range(19):\n \n if i == 5 or 13\n ans += ' '\n\n else:\n ans += s[i]\n\nprint(ans)\n", "s = str(input()) \nlst = [s[0:5], , s[6:13], , s[14:]]\nprint(''.join(lst))", "s = str(input())\nans = ''\n\nfor i in range(19):\n \n if i==5 or i==13\n ans += ' '\n\n else:\n ans += s[i]\n\nprint(ans)\n", "s = str(input())\nprint(s[0:5]+' '+s[6:13]+' '+s[14:]", "s = str(input())\nans = ''\n\nfor i in range(19):\n \n if i==5 or i==13\n ans += ','\n else:\n ans += s[i]\n\nprint(ans)", "s = str(input())\nans = ''\n\nfor i in range(19):\n \n if i == 5 or 13:\n ans += ','\n\n else:\n ans += s[i]\n\nprint(ans)", "s = str(input())\nans = ''\n\nfor i in range(19):\n \n if i==5 or i==13:\n ans += ' '\n\n else:\n ans += s[i]\n\nprint(ans)\n"]
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Accepted']
['s050608187', 's096366184', 's109903782', 's513062561', 's568665764', 's601090054', 's651629353', 's430382843']
[2940.0, 2940.0, 2940.0, 2940.0, 2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 17.0, 17.0, 17.0, 17.0, 17.0]
[56, 134, 73, 135, 52, 133, 134, 136]
p03834
u506858457
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["S=input()\nprint(S,replace(',',' ')", "S=input()\nprint(S.replace(',',' '))"]
['Runtime Error', 'Accepted']
['s965601242', 's485506199']
[2940.0, 2940.0]
[17.0, 17.0]
[34, 35]
p03834
u513081876
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['k,s=map(int,input().split())\nc=0\nfor i in range(k+1):\n for j in range(k+1):\n if s>=i+j and s-(i+j)<=k:\n c+=1\nprint(c)', "print(input().replace(',',' '))"]
['Runtime Error', 'Accepted']
['s023674052', 's675461464']
[2940.0, 2940.0]
[17.0, 17.0]
[138, 31]
p03834
u514809528
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['S = raw_input();\nS = S.replace(",", " ");\nprint(S);', 'S = input();\nS = S.replace(",", " ");\nprint(S);']
['Runtime Error', 'Accepted']
['s371506119', 's825051821']
[3064.0, 3064.0]
[23.0, 23.0]
[51, 47]
p03834
u516579758
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s=input()\nresutl=''\nfor i in s:\n if i==',':\n result+=' '\n else:\n result+=i\nprint(result)", "s=input()\nresult=''\nfor i in s:\n if i==',':\n result+=' '\n else:\n result+=i\nprint(result)"]
['Runtime Error', 'Accepted']
['s266621616', 's379983909']
[2940.0, 2940.0]
[17.0, 17.0]
[108, 108]
p03834
u518042385
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['l=list(input())\nl[5]=""\nl[12]=""\nprint(sum(l))', 'l=list(input())\nl[13]=" "\nl[5]=" "\nprint("".join(l))']
['Runtime Error', 'Accepted']
['s157588367', 's889128193']
[2940.0, 2940.0]
[17.0, 17.0]
[46, 52]
p03834
u518064858
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a,b,c=input().split(,)\nprint(a+" "+b+" "+c)', 'a,b,c=input().split(",")\nprint(a+" "+b+" "+c)\n\n']
['Runtime Error', 'Accepted']
['s518626734', 's812293816']
[2940.0, 3060.0]
[17.0, 20.0]
[43, 47]
p03834
u518556834
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(input().replace(","," ")', 's =input()\nprint(s.replace(","," "))']
['Runtime Error', 'Accepted']
['s253616074', 's809724147']
[2940.0, 2940.0]
[17.0, 17.0]
[30, 36]
p03834
u530786533
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['k, s = map(int, input().split())\n\ncount = 0\nfor x in range(0, k+1):\n for y in range(0, k+1):\n z = s - (x + y)\n if (z >= 0 and z <= k):\n count += 1\nprint(count)\n', "s = input()\nprint(s.replace(',', ' '))\n"]
['Runtime Error', 'Accepted']
['s708260168', 's863857721']
[2940.0, 2940.0]
[17.0, 17.0]
[189, 39]
p03834
u533039576
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["print(input().replace(', ', ' '))\n", "print(input().replace(',', ' '))"]
['Wrong Answer', 'Accepted']
['s016750269', 's421715593']
[2940.0, 2940.0]
[17.0, 17.0]
[34, 32]
p03834
u535659144
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['x = list(map(int,input().split()))\ncount=0\nfor a in range(0,x[1]+1):\n for b in range(0,x[0]+1):\n for c in range(0,x[0]+1):\n if(a+b+c==x[1]):\n count+=1\nprint(count)', 'x = list(map(int,input().split()))\ncount=0\nfor a in range(0,x[0]+1):\n for b in range(0,x[0]+1):\n for c in range(0,x[0]+1):\n if(a+b+c==x[1]):\n count+=1\nprint(count)', 'x = list(map(int,input().split()))\ncount=0\nfor a in range(0,x[0]+1):\n for b in range(0,x[0]+1):\n for c in range(0,x[0]+1):\n if(a+b+c==x[1]):\n count+=1\nprint(count)', 'print(input().replace(","," "))']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s147315631', 's158468870', 's896973747', 's383294821']
[3060.0, 3060.0, 3060.0, 2940.0]
[17.0, 19.0, 18.0, 17.0]
[199, 199, 199, 31]
p03834
u541610817
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['k, s = [int(x) for x in input().split()]\ncnt = 0\nfor x in range(k + 1):\n if x > s:\n continue\n for y in range(x, k + 1):\n if y > s:\n break\n for z in range(y, k + 1):\n if z > s:\n break\n if x + y + z == s:\n if x == y == z:\n cnt += 1\n elif x == y or y == z:\n cnt += 3\n else:\n cnt += 3\nprint(cnt)\n', 'k, s = [int(x) for x in input().split()]\ncnt = 0\nfor x in range(k + 1):\n for y in range(k + 1):\n for z in range(k + 1):\n if x + y + z == s:\n cnt += 1\nprint(cnt)\n', "a, b, c = input().split(',')\nprint(a, b, c)"]
['Runtime Error', 'Runtime Error', 'Accepted']
['s432875580', 's936782153', 's502191564']
[3060.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[469, 197, 43]
p03834
u548303713
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['K,S=map(int,input().split())\nsum=0\ncount=0\nfor i in range(K+1):\n sum+=i\n a=sum\n L=S-sum\n #print(L)\n LL=min(L,K)\n for j in range(LL+1):\n sum+=j\n if S-sum>=0 and S-sum<=K :\n count+=1\n #print(str(i)+" "+str(j))\n sum=a \n sum=0\nprint(count) ', 's=input()\nl=len(s)\ns_list=list(s)\nfor i in range(l):\n if s_list[i]==",":\n s_list[i]=" "\nnew="".join(s_list)\nprint(new)']
['Runtime Error', 'Accepted']
['s154381406', 's693136047']
[3064.0, 2940.0]
[18.0, 17.0]
[334, 128]
p03834
u552116325
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\nreturn ' '.join(s.split(','))\n", "return ' '.join(s.split(','))", "s = input()\nprint(' '.join(s.split(','))) "]
['Runtime Error', 'Runtime Error', 'Accepted']
['s051421564', 's334324336', 's113074562']
[8900.0, 9080.0, 8796.0]
[23.0, 24.0, 25.0]
[42, 29, 42]
p03834
u556589653
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s = input()\ns[5] = " "\ns[:5] = " "\nprint(s)', 's = input()\nk = s.replace(","," ")\nprint(k)']
['Runtime Error', 'Accepted']
['s942090986', 's032204238']
[3064.0, 2940.0]
[17.0, 17.0]
[43, 43]
p03834
u557235596
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(input().replace(",", " ")', 'def main():\n print(input().replace(",", " "))\n\nif __name__ == "__main__":\n main()\n\n']
['Runtime Error', 'Accepted']
['s530283665', 's248796225']
[2940.0, 2940.0]
[17.0, 17.0]
[31, 89]
p03834
u557494880
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a,b,c = map(str,input().split(,))\nprint(a,b,c)', 's = input()\na = s[0]+s[1]+s[2]+s[3]+s[4]\nb = s[6]+s[7]+s[8]+s[9]+s[10]+s[11]+s[12]\nc = s[14]+s[15]+s[16]+s[17]+s[18]\nprint(a,b,c)']
['Runtime Error', 'Accepted']
['s939604727', 's301687401']
[2940.0, 3060.0]
[17.0, 17.0]
[46, 129]
p03834
u558059388
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["a,b,c=map(str,input().split())\nprint(a+' '+b+' '+c)", "a,b,c=map(str,input().split(','))\nprint(a+' '+b+' '+c)"]
['Runtime Error', 'Accepted']
['s956077191', 's130791335']
[3060.0, 2940.0]
[18.0, 20.0]
[51, 54]
p03834
u559346857
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(input().split(","))', 's=input(),sep","\nprint(s)', 's=input().split(",")', 'a,b,c=input().split(",")\nprint(a,b,c)']
['Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Accepted']
['s646575015', 's953551459', 's986153690', 's281128367']
[2940.0, 2940.0, 2940.0, 2940.0]
[18.0, 17.0, 17.0, 18.0]
[25, 25, 20, 37]
p03834
u571445182
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["Tmp = []\nTmp = input().rstrip().split(',')\n \nsA = (Tmp[0])\nsB = (Tmp[1])\nsC = (Tmp[2])\n \nprint(sA + ' ' + sB ' ' + sC)\n", "Tmp = []\nTmp = input().rstrip().split(',')\n \nsA = (Tmp[0])\nsB = (Tmp[1])\nsC = (Tmp[2])\n \nprint(sA + ' ' + sB +' ' + sC)\n"]
['Runtime Error', 'Accepted']
['s757806860', 's957628419']
[2940.0, 2940.0]
[17.0, 18.0]
[119, 120]
p03834
u580093517
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['*a, = map(int,input().split())\nprint(max(a)-min(a))', 'a,b,c = input().split(",")\nprint(a,b,c)']
['Runtime Error', 'Accepted']
['s775097596', 's005413209']
[2940.0, 2940.0]
[17.0, 17.0]
[51, 39]
p03834
u581603131
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["print(input().replace(',','')", "print(s.replace(',', '')", "print(*input().split(','))"]
['Runtime Error', 'Runtime Error', 'Accepted']
['s331298092', 's662905609', 's595528207']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[29, 24, 26]
p03834
u583276018
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(input().replace(",", ""))', 'print(input().replace(",", " "))']
['Wrong Answer', 'Accepted']
['s091632010', 's912276548']
[2940.0, 2940.0]
[17.0, 17.0]
[31, 32]
p03834
u583507988
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\nS = []\nfor i in s:\n S.append(i)\n \nS[5] = ''\nS[13] = ''\nprint(*S)", "s = input()\ns = s.replace(',',' ')\nprint(s)"]
['Wrong Answer', 'Accepted']
['s229424002', 's704557746']
[2940.0, 8872.0]
[17.0, 25.0]
[78, 43]
p03834
u588633699
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s=input()\ns[5] = " "\ns[13] = " "\nprint(s)', 's=input().split(",")\nprint(s[0],s[1],s[2])']
['Runtime Error', 'Accepted']
['s856246569', 's188614969']
[2940.0, 2940.0]
[18.0, 20.0]
[41, 42]
p03834
u589381719
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a,b,c = input().split()\nprint(a+" "+b+" "+c)', 'print(input().replace(",", " "))']
['Runtime Error', 'Accepted']
['s285199337', 's541441502']
[2940.0, 3064.0]
[17.0, 17.0]
[44, 32]
p03834
u593934357
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\nss = s.split(',')\nprint(''.join(ss))", "s = input()\nss = s.split(',')\nprint(' '.join(ss))\n"]
['Wrong Answer', 'Accepted']
['s085706505', 's405643883']
[2940.0, 2940.0]
[17.0, 17.0]
[48, 50]
p03834
u594956556
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["print(' '.join(input().split(','))", "print(input().replace(',', ' '))"]
['Runtime Error', 'Accepted']
['s712243735', 's519622251']
[2940.0, 2940.0]
[17.0, 17.0]
[34, 32]
p03834
u595952233
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["pritn(input().replace(',', ' '))", "print(input().replace(',', ' '))"]
['Runtime Error', 'Accepted']
['s828237883', 's662600017']
[8692.0, 9020.0]
[26.0, 28.0]
[32, 32]
p03834
u597455618
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['k, s = map(int, input().split())\ncnt = 0\nfor i in range(k+1):\n if i < s:\n for j in range(k+1):\n if i + j :\n for l in range(k+1):\n if i + j + l == s:\n cnt += 1\nprint(cnt)', 'def main():\n k, s = map(int, input().split())\n cnt = 0\n for i in range(k+1):\n for j in range(k+1):\n if 0 <= s - i - j <= k:\n cnt += 1\n print(cnt)\n\nif __name__ == "__main__":\n main()', 's = input().split(",")\nprint(*s)']
['Runtime Error', 'Runtime Error', 'Accepted']
['s584147267', 's955753367', 's674747886']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 18.0]
[205, 203, 32]
p03834
u600261652
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a, b, c = input.split(",")\nprint(a, b, c)', 'a, b, c = input().split(",")\nprint(a, b, c)']
['Runtime Error', 'Accepted']
['s564386246', 's229427193']
[2940.0, 2940.0]
[17.0, 17.0]
[41, 43]
p03834
u601018334
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s = input()\ns.split(",")\nprint(s)\n', 's = input()\ns.split(",")\nprint(" ".join(s))\n', 's = input()\ns = s.split(\',\')\nprint(" ".join(s))\n']
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s210111107', 's517185548', 's173416946']
[3064.0, 3064.0, 3064.0]
[31.0, 22.0, 22.0]
[34, 44, 48]
p03834
u602972961
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["a, b, c=map(int, input().split(','))\nprint(a, b, c)", "a, b, c=map(str, input().split(','))\nprint(a, b, c)"]
['Runtime Error', 'Accepted']
['s908296947', 's802586459']
[2940.0, 2940.0]
[17.0, 17.0]
[51, 51]
p03834
u608726540
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["li=input().spl;it(',')\nprint(li[0]+' '+li[1]+' ' + li[2])\n", "li=input().split(',')\nprint(li[0]+' '+li[1]+' ' + li[2])\n"]
['Runtime Error', 'Accepted']
['s995715617', 's077856696']
[2940.0, 2940.0]
[17.0, 17.0]
[58, 57]
p03834
u609061751
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['import sys\ninput = sys.stdin.readline\ns = input().split(,)\nprint(*s)', 'import sys\ninput = sys.stdin.readline\ns = input().rstrip().split(",")\nprint(*s)']
['Runtime Error', 'Accepted']
['s069315598', 's531798932']
[2940.0, 2940.0]
[17.0, 17.0]
[68, 79]
p03834
u611090896
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["print(*input(),sep=',')", "print(input().split(','))", 'a,b,c = input().split()\nprint(a,b,c)', 'a,b,c = input().split()\nprint(a+" "+b+" "+c)', "a,b,c=input().split(',')\nprint(a,b,c)"]
['Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Runtime Error', 'Accepted']
['s230001128', 's457658146', 's529309066', 's714498223', 's584415813']
[2940.0, 8944.0, 2940.0, 2940.0, 8920.0]
[17.0, 28.0, 17.0, 17.0, 25.0]
[23, 25, 36, 44, 37]
p03834
u612975321
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['K, S = map(int, input().split())\n \ncnt = 0\nfor i in range(K+1):\n for j in range(K+1):\n k = S - i - j\n if k >= 0 and k <= K:\n cnt += 1\nprint(cnt)', "s = input()\na = [s[0:5], s[6:13], s[14:]]\nprint(' '.join(a))"]
['Runtime Error', 'Accepted']
['s529269262', 's653984012']
[2940.0, 9048.0]
[17.0, 26.0]
[172, 60]
p03834
u614181788
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['sx,sy,tx,ty = map(int,input().split())\nans = ["U"]*(ty-sy) + ["R"]*(tx-sx) + ["D"]*(ty-sy) + ["L"]*(tx-sx+1) + ["U"]*(ty-sy+1) + ["R"]*(tx-sx+1) + ["D"] + ["R"] + ["D"]*(ty-sy+1) + ["L"]*(tx-sx+1) + ["U"]\nprint("".join(ans))', 's = list(input())\ns[5] = " "\ns[13] = " "\nprint("".join(s))']
['Runtime Error', 'Accepted']
['s807739421', 's838002388']
[3064.0, 8932.0]
[18.0, 25.0]
[224, 58]
p03834
u614964888
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a,b,c=map(input().split(","))\nprint(a,b,c)', 'a,b,c=input().split()\nprint(a,b,c)', 'a,b,c=input().split(",")\nprint(a,b,c)']
['Runtime Error', 'Runtime Error', 'Accepted']
['s364143499', 's864378103', 's239381449']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[42, 34, 37]
p03834
u616188005
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a,b,c,d=map(int,input().split())\nprint(max([a*b,c*d])', 'a,b,c=map(str,input().split(","))\nprint(a,b,c)']
['Runtime Error', 'Accepted']
['s751242477', 's708711779']
[2940.0, 2940.0]
[17.0, 17.0]
[53, 46]
p03834
u619819312
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a=input()\nprint(a[:4]+" "+a[6:13]+" "+a[14:])', 'a=input()\nprint(a[:5]+" "+a[6:13]+" "+a[14:])']
['Wrong Answer', 'Accepted']
['s479169989', 's820208916']
[2940.0, 2940.0]
[19.0, 18.0]
[45, 45]
p03834
u626337957
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["S = input()\nS.replace(',', ' ')\nprint(S)", "print(input().replace(',', ' '))"]
['Wrong Answer', 'Accepted']
['s469071642', 's366976337']
[2940.0, 2940.0]
[17.0, 17.0]
[40, 32]
p03834
u632369368
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\nprint(s.replase(',', ' '))\n", "s = input()\nprint(s.replace(',', ' '))"]
['Runtime Error', 'Accepted']
['s399257487', 's642170386']
[2940.0, 2940.0]
[17.0, 17.0]
[39, 38]
p03834
u633450100
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["A = input()\nfor i in range(len(A)):\n if A[i] == ',':\n A[i] = ''\n\nprint(A)", "A = input()\nA = A.replace(',',' ')\n\nprint(A)\n\n"]
['Runtime Error', 'Accepted']
['s233092966', 's850880812']
[2940.0, 2940.0]
[17.0, 17.0]
[77, 46]
p03834
u636290142
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\ns.replace(',', ' ')\nprint(s)", "s = input()\ns.replace(',', ' ')\n", "s = input()\nprint(s.replace(',', ' '))\n"]
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s912367491', 's921641918', 's205151047']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[40, 32, 39]
p03834
u637824361
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["S = [i for i in input().split(',')]\nprint(''.join(S))", "S = [i for i in input().split(',')]\nprint(' '.join(S))"]
['Wrong Answer', 'Accepted']
['s424789833', 's189018153']
[2940.0, 2940.0]
[17.0, 17.0]
[53, 54]
p03834
u638282348
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['k, s = map(int, input().rstrip("\\n").split())\nprint(sum([x + y + z == s for x in range(k + 1) for y in range(k + 1) for z in range(k + 1)]))\n', 'print(input().replace(",", " "))']
['Runtime Error', 'Accepted']
['s147425097', 's876487931']
[2940.0, 2940.0]
[17.0, 17.0]
[141, 32]
p03834
u646792990
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["x = input().split(',')\n\nprint(x)\n", "x = input().split(',')\n\nprint(*x)\n"]
['Wrong Answer', 'Accepted']
['s396449903', 's406002701']
[2940.0, 2940.0]
[17.0, 18.0]
[33, 34]
p03834
u652569315
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s=input()\ns[5],s[13]==' ',' '\nprint(s)", "a,b,c=input().split(',')\nprint(a,b,c)"]
['Wrong Answer', 'Accepted']
['s739072850', 's289343890']
[2940.0, 2940.0]
[17.0, 17.0]
[38, 37]
p03834
u652656291
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\ns[5]=' '\ns[13]=' '\nprint(s)", 's=input()\nprint(s.replace(","," "))\n']
['Runtime Error', 'Accepted']
['s994812446', 's920938370']
[2940.0, 2940.0]
[18.0, 17.0]
[39, 36]
p03834
u655975843
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()$\ns = s.replace(',', ' ')$\nprint(s)", "s = input()\ns = s.replace(',', ' ')\nprint(s)"]
['Runtime Error', 'Accepted']
['s153517910', 's747588686']
[3064.0, 2940.0]
[17.0, 18.0]
[46, 44]
p03834
u657971041
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a,b,c=map(input().split(","))\nprint(a,b,c)', 'a,b,c=input().split(",")\nprint(a,b,c)']
['Runtime Error', 'Accepted']
['s440607261', 's355346144']
[2940.0, 2940.0]
[17.0, 17.0]
[42, 37]
p03834
u663438907
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = list(input())\n\nfor i in range(len(s)):\n if s[i] == ',':\n s[i] == ' '\n\nprint(''.join())", "s = list(input())\n\nfor i in range(len(s)):\n if s[i] == ',':\n s[i] = ' '\n \nprint(''.join(s))"]
['Runtime Error', 'Accepted']
['s977333719', 's114809453']
[2940.0, 2940.0]
[17.0, 17.0]
[94, 95]
p03834
u667024514
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a = input()\na[5] = " "\na[13] = " "\nprint(a[0]+a[1]+a[2]+a[3]+a[4]+a[5]+a[6]+a[7]+a[8]+a[9]+a[10]+a[11]+a[12]+a[13]+a[14]+a[15]+a[16]+a[17]+a[18])', 'a,b,c = map(str(input().split(",")))\nprint(a,b,c)', 'a = input()\nq = a[5]\nw = a[13]\nq = " "\nw = " "\nprint(a)', 'a,b,c = map(str,input().split(","))\nprint(a,b,c)']
['Runtime Error', 'Runtime Error', 'Wrong Answer', 'Accepted']
['s216738989', 's787901830', 's844901390', 's280922096']
[3060.0, 2940.0, 2940.0, 2940.0]
[18.0, 17.0, 18.0, 17.0]
[145, 49, 55, 48]
p03834
u667694979
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s=input()\nprint(s.split(','))", "s=input()\nprint(*s.split(','))"]
['Wrong Answer', 'Accepted']
['s173237563', 's028234846']
[2940.0, 2940.0]
[17.0, 17.0]
[29, 30]
p03834
u673173160
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input().split()\nprint(s[0]+' '+s[1]+' '+s[2])", "s = input().split(',')\nprint(s[0]+' '+s[1]+' '+s[2])"]
['Runtime Error', 'Accepted']
['s654724118', 's643735394']
[2940.0, 3064.0]
[17.0, 17.0]
[49, 52]
p03834
u675073679
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s = input()\nprint(c.split(,))', 'print(input().split(","))', 'print(*input().split(","))']
['Runtime Error', 'Wrong Answer', 'Accepted']
['s435159639', 's820670574', 's462839350']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 18.0]
[29, 25, 26]
p03834
u675807218
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["a, b, c=map(input().split(','))\nprint(a, b, c)", "a, b, c=input().split(',')\nprint(a, b,c)"]
['Runtime Error', 'Accepted']
['s667492658', 's626511972']
[2940.0, 2940.0]
[18.0, 17.0]
[46, 40]
p03834
u677400065
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\nfor i in s:\n if i == ',':\n i = ' ':\nprint(s)", "s = input()\nfor i in s:\n if i == ',':\n i = ' '\nprint(s)\n", 's = input()\nfor i in s:\n if i == \',\':\n i = \' \'\n print(i,end="")\n\nprint()\n']
['Runtime Error', 'Wrong Answer', 'Accepted']
['s161893548', 's513528376', 's315989683']
[2940.0, 3064.0, 2940.0]
[17.0, 18.0, 17.0]
[60, 60, 78]
p03834
u678246254
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['A, B, C = input().split()\nprint(A, B, C)', 'A, B, C = input().split(",")\nprint(A, B, C)\n']
['Runtime Error', 'Accepted']
['s613224696', 's842636071']
[9080.0, 9072.0]
[26.0, 28.0]
[40, 44]
p03834
u679817762
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["\ninput = input()\n\n\nexec('lst = [' + input + ']')\n\n\nprint(lst[0], lst[1], lst[2], sep=' ')", "print(input().replace(',', ' '))"]
['Runtime Error', 'Accepted']
['s534759579', 's375860505']
[9004.0, 9036.0]
[22.0, 24.0]
[116, 32]
p03834
u681323954
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\nprint(s[:5]+' '+s[6:13]+' '+a[14:])\n", "s = input()\nprint(s[:5]+' '+s[6:13]+' '+a[14:])", 'print(*input().split(","))']
['Runtime Error', 'Runtime Error', 'Accepted']
['s512966888', 's867299301', 's229535457']
[3064.0, 2940.0, 2940.0]
[18.0, 17.0, 18.0]
[48, 47, 26]
p03834
u686036872
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a, b, c=input().split()\nprint(a, b, c)', 'a, b, c=input().split(",")\nprint(a, b, c)']
['Runtime Error', 'Accepted']
['s711156678', 's105768374']
[2940.0, 2940.0]
[17.0, 17.0]
[38, 41]
p03834
u694370915
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["\ndef main():\n #a, b, c = map(str, input().split())\n s = input().replace(',', '')\n print(s)\n\nif __name__ == '__main__':\n main()", "def main():\n #a, b, c = map(str, input().split())\n s = input().replace(',', ' ')\n print(s)\n\nif __name__ == '__main__':\n main()"]
['Wrong Answer', 'Accepted']
['s738203797', 's066495542']
[2940.0, 2940.0]
[17.0, 17.0]
[138, 138]
p03834
u695079172
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s = " ".join(list(input().split(",")))', '\ns = " ".join(list(input().split(",")))\nprint(s)']
['Wrong Answer', 'Accepted']
['s333771634', 's750352881']
[2940.0, 2940.0]
[18.0, 18.0]
[38, 48]
p03834
u702018889
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['k,s=map(int,input().split())\nans=0\nfor x in range(k+1):\n for y in range(k+1):\n if 0<=s-x-y<=k:\n ans+=1\nprint(ans)', 'a,b,c=input().split(",")\nprint(a,b,c)']
['Runtime Error', 'Accepted']
['s896215046', 's089114701']
[9096.0, 2940.0]
[27.0, 17.0]
[134, 37]
p03834
u706433263
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a,b,c=input().split()\nprint(a,b,c)', 'a,b,c=input().split(",")\nprint(a,b,c)']
['Runtime Error', 'Accepted']
['s463467836', 's170346467']
[2940.0, 3064.0]
[17.0, 17.0]
[34, 37]
p03834
u711985352
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\n\nfor i in s:\n if(i != 5 and i != 12):\n print(i, end='')\n else:\n print(' ', end='')\nprint()\n", "s = input()\n \nfor i in range(0, 19):\n if(i != 5 and i != 13):\n print(s[i], end='')\n else:\n print(' ', end='')\nprint()\n"]
['Wrong Answer', 'Accepted']
['s073127090', 's408923574']
[2940.0, 2940.0]
[17.0, 17.0]
[123, 142]
p03834
u724892495
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(" ".join(input().split(,)))', 'print(" ".join(input().split(",")))']
['Runtime Error', 'Accepted']
['s220061231', 's365109357']
[2940.0, 2940.0]
[17.0, 17.0]
[33, 35]
p03834
u727801592
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['import sys\ninput = sys.stdin.readline\nK,S=map(int,input().split())\ncrt=0\nfor x in range(0,K+1):\n for y in range(0,K+1):\n z=S-x-y\n if 0<=z<=K:\n crt+=1\nprint(crt)', "s=input()\nprint(s.replace(',',' '))"]
['Runtime Error', 'Accepted']
['s599042342', 's818251612']
[3060.0, 2940.0]
[17.0, 17.0]
[172, 35]
p03834
u729119068
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(*input().split(,))\n', 'print(*input().split(","))']
['Runtime Error', 'Accepted']
['s452471135', 's441738878']
[2940.0, 2940.0]
[17.0, 17.0]
[25, 26]
p03834
u731665172
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a,b,c=input().sprit(",")\nprint(a,b,c)', "a,b,c=input().sprit(',')\nprint(a,b,c)", 'a,b,c=input().split(",")\nprint(a,b,c)\n']
['Runtime Error', 'Runtime Error', 'Accepted']
['s791023010', 's912415132', 's986481197']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[37, 37, 38]
p03834
u732743460
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s =input()\nprint(s[:5]+" "+s[6:13]+" "+s[14:] ', 's =input()\nprint(s[:5]+" "+s[6:13]+" "+s[14:])']
['Runtime Error', 'Accepted']
['s708093554', 's629058868']
[2940.0, 2940.0]
[17.0, 17.0]
[46, 46]
p03834
u732844340
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["def slv(string):\n ret = ''\n for i in range(len(string)):\n if string[i] == ',':\n ret += ' '\n else:\n ret += string[i]\n\nif __name__ == '__main__':\n s = input()\n print(slv(s))", "def slv(string):\n ret = ''\n for i in range(len(string)):\n if string[i] == ',':\n ret += ' '\n else:\n ret += string[i]\n return ret\n\nif __name__ == '__main__':\n s = input()\n print(slv(s))"]
['Wrong Answer', 'Accepted']
['s003519838', 's290843097']
[3064.0, 3064.0]
[24.0, 24.0]
[219, 234]
p03834
u733321071
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["s = input()\nprint(s.replace(',', ' ')", "print(input().replace(',', ' '))"]
['Runtime Error', 'Accepted']
['s379907950', 's316917950']
[2940.0, 2940.0]
[17.0, 17.0]
[37, 32]
p03834
u736577709
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(*input().sep(","))', 'a,b,c=input(),split(",")\nprint(a,b,c)', 'a,b,c=input().split(",")\nprint(a,b,c)']
['Runtime Error', 'Runtime Error', 'Accepted']
['s438335742', 's843078510', 's697026316']
[8916.0, 9088.0, 8976.0]
[26.0, 26.0, 26.0]
[24, 37, 37]
p03834
u736729525
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(" ".join(input().split(","))', 'print(" ".join(input().split(",")))']
['Runtime Error', 'Accepted']
['s784249841', 's926743393']
[2940.0, 2940.0]
[17.0, 18.0]
[34, 35]
p03834
u739798900
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s_in = input()\ns_out = s.replace(",", " ", 2)\nprint(s_out)', 's_in = input()\ns_out = s_in.replace(",", " ", 2)\nprint(s_out)']
['Runtime Error', 'Accepted']
['s883059768', 's774974194']
[2940.0, 2940.0]
[17.0, 17.0]
[58, 61]
p03834
u739843002
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(input().replace(",", " ")', 'print(input().replace(",", " "))']
['Runtime Error', 'Accepted']
['s197038162', 's838342349']
[8968.0, 8928.0]
[26.0, 28.0]
[31, 32]
p03834
u740284863
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['S = str(input())\nprint(S[0:4],S[6:13],S[14:])\n', 'S = str(input())\nprint(S[0:4]+" "+S[6:13]+" "+S[14:])\n', 'K,S = map(int,input().split())\ncount = 0\nfor i in range(K+1):\n for j in range(K+1):\n for k in range(K+1):\n if i+j+k == S:\n count += 1\nprint(count)\n', 'S = str(input())\nprint(S[:5]+" "+S[6:13]+" "+S[14:])\n']
['Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Accepted']
['s512964097', 's842375031', 's973545182', 's431080253']
[2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 18.0, 18.0, 18.0]
[46, 54, 183, 53]
p03834
u745562158
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a, b, c = input().split(,)\nprint(a, b, c)', "a, b, c = input().split(',')\nprint(a, b, c)"]
['Runtime Error', 'Accepted']
['s422031212', 's096045177']
[2940.0, 2940.0]
[17.0, 17.0]
[41, 43]
p03834
u745812846
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s = input().split()\nprint(" ".join(s))', 's = input().split(",")\nprint(" ".join(s))']
['Wrong Answer', 'Accepted']
['s166717579', 's454529168']
[2940.0, 2940.0]
[17.0, 17.0]
[38, 41]
p03834
u747602774
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s=input().split(,)\nprint(s[0],s[1],s[2])', "print(' '.join(input().split(',')))"]
['Runtime Error', 'Accepted']
['s290387147', 's234963511']
[2940.0, 2940.0]
[17.0, 17.0]
[40, 35]
p03834
u748135969
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
["a = input()\nprint(a.replace(',', ' ')", "a = input()\nprint(a.replace(',', ' '))"]
['Runtime Error', 'Accepted']
['s174647028', 's448352467']
[2940.0, 2940.0]
[17.0, 17.0]
[37, 38]
p03834
u748311048
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a = list(map(str, input().split(",")))\nprint(a[0]+a[1]+a[2])', 'a = list(map(str, input().split(",")))\nprint(a[0]+\' \'+a[1]+\' \'+a[2])']
['Wrong Answer', 'Accepted']
['s366098228', 's931342792']
[2940.0, 2940.0]
[17.0, 18.0]
[60, 68]
p03834
u751780401
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['a,b,c = input().split(",")', 'a,b,c = input().split(",")\nprint(a,b,c)']
['Wrong Answer', 'Accepted']
['s586318181', 's031343174']
[2940.0, 2940.0]
[17.0, 17.0]
[26, 39]
p03834
u757030836
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s = input()\ns.replace(s[5],"")\ns.replace(s[13],"")\n\nprint(s)\n', 'a,b,c=input().split(",")\nprint(a,b,c)']
['Wrong Answer', 'Accepted']
['s573758761', 's690132596']
[2940.0, 2940.0]
[17.0, 17.0]
[61, 37]
p03834
u757274384
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s = input()\nprint(s[0:4] + " " + s[6:12] + " " + s[14: 19])', 's = input()\nprint(s.replace(",", " "))']
['Wrong Answer', 'Accepted']
['s849151724', 's619399323']
[2940.0, 2940.0]
[17.0, 17.0]
[59, 38]
p03834
u759412327
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['print(input().replace(",",""))', 'print(input().replace(","," ")', 'print(*input().split(","))']
['Wrong Answer', 'Runtime Error', 'Accepted']
['s372799221', 's787801652', 's950749729']
[2940.0, 2940.0, 9028.0]
[17.0, 17.0, 25.0]
[30, 30, 26]
p03834
u768559443
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s=input().split(",")', 'print(*input().split(","))']
['Wrong Answer', 'Accepted']
['s475502887', 's449016430']
[2940.0, 2940.0]
[17.0, 17.0]
[20, 26]
p03834
u772649753
2,000
262,144
As a New Year's gift, Dolphin received a string s of length 19. The string s has the following format: `[five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]`. Dolphin wants to convert the comma-separated string s into a space-separated string. Write a program to perform the conversion for him.
['s = map(str,input())\nprint(s.replace(","," "))', 's = input()\nprint(s.replace(","," "))']
['Runtime Error', 'Accepted']
['s726186624', 's481444898']
[2940.0, 2940.0]
[17.0, 17.0]
[46, 37]