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
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Berland scientists know that the Old Berland language had exactly n words. Those words had lengths of l1, l2, ..., ln letters. Every word consisted of two letters, 0 and 1. Ancient Berland peopl...
instruction
0
23,210
6
46,420
No
output
1
23,210
6
46,421
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Berland scientists know that the Old Berland language had exactly n words. Those words had lengths of l1, l2, ..., ln letters. Every word consisted of two letters, 0 and 1. Ancient Berland peopl...
instruction
0
23,211
6
46,422
No
output
1
23,211
6
46,423
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Berland scientists know that the Old Berland language had exactly n words. Those words had lengths of l1, l2, ..., ln letters. Every word consisted of two letters, 0 and 1. Ancient Berland peopl...
instruction
0
23,212
6
46,424
No
output
1
23,212
6
46,425
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Berland scientists know that the Old Berland language had exactly n words. Those words had lengths of l1, l2, ..., ln letters. Every word consisted of two letters, 0 and 1. Ancient Berland peopl...
instruction
0
23,213
6
46,426
No
output
1
23,213
6
46,427
Provide tags and a correct Python 3 solution for this coding contest problem. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For example, after removing the se...
instruction
0
23,278
6
46,556
Tags: brute force, constructive algorithms, implementation Correct Solution: ``` # cook your dish here import sys from functools import lru_cache, cmp_to_key from heapq import merge, heapify, heappop, heappush from math import * from collections import defaultdict as dd, deque, Counter as C from itertools import combin...
output
1
23,278
6
46,557
Provide tags and a correct Python 3 solution for this coding contest problem. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For example, after removing the se...
instruction
0
23,279
6
46,558
Tags: brute force, constructive algorithms, implementation Correct Solution: ``` # cook your dish here from sys import stdin,stdout from collections import Counter from itertools import permutations import bisect import math I=lambda: map(int,stdin.readline().split()) I1=lambda: stdin.readline() n,m=I() i...
output
1
23,279
6
46,559
Provide tags and a correct Python 3 solution for this coding contest problem. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For example, after removing the se...
instruction
0
23,280
6
46,560
Tags: brute force, constructive algorithms, implementation Correct Solution: ``` n, m = list(map(int, input().rstrip().split())) words = [] op = 0 for i in range(n): words += [input()] final = [""]*n for j in range(m): flag = 1 for i in range(n - 1): x = final[i] + words[i][j] y = final[i + ...
output
1
23,280
6
46,561
Provide tags and a correct Python 3 solution for this coding contest problem. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For example, after removing the se...
instruction
0
23,281
6
46,562
Tags: brute force, constructive algorithms, implementation Correct Solution: ``` from sys import maxsize, stdout, stdin,stderr mod = int(1e9+7) import sys def I(): return int(stdin.readline()) def lint(): return [int(x) for x in stdin.readline().split()] def S(): return list(map(str,input().strip())) def grid(r, c): re...
output
1
23,281
6
46,563
Provide tags and a correct Python 3 solution for this coding contest problem. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For example, after removing the se...
instruction
0
23,282
6
46,564
Tags: brute force, constructive algorithms, implementation Correct Solution: ``` from operator import itemgetter n, m = map(int, input().strip().split()) table = [] bad_cols = [False] * m for _ in range(n): table.append(input().strip()) for j in range(m): indices = [idx for idx in range(j + 1) if not bad_c...
output
1
23,282
6
46,565
Provide tags and a correct Python 3 solution for this coding contest problem. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For example, after removing the se...
instruction
0
23,283
6
46,566
Tags: brute force, constructive algorithms, implementation Correct Solution: ``` n, m = list(map(int, input().split())) ls = [input() for _ in range(n)] sorted_inds = [0] * n ans = 0 for i in range(m): new_sorted_inds = set() for j in range(1, n): if sorted_inds[j] == 0: if ls[j][i] < ls[j -...
output
1
23,283
6
46,567
Provide tags and a correct Python 3 solution for this coding contest problem. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For example, after removing the se...
instruction
0
23,284
6
46,568
Tags: brute force, constructive algorithms, implementation Correct Solution: ``` import sys import math MAXNUM = math.inf MINNUM = -1 * math.inf ASCIILOWER = 97 ASCIIUPPER = 65 def getInt(): return int(sys.stdin.readline().rstrip()) def getInts(): return map(int, sys.stdin.readline().rstrip().split(" ")) ...
output
1
23,284
6
46,569
Provide tags and a correct Python 3 solution for this coding contest problem. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For example, after removing the se...
instruction
0
23,285
6
46,570
Tags: brute force, constructive algorithms, implementation Correct Solution: ``` line = input().split() n = int(line[0]) m = int(line[1]) data = [] for i in range(n): data.append(input()) x = [1 for i in range(n)] delete = 0 for i in range(m): dum = [1 for j in range(n)] status = 1 for j in range(1...
output
1
23,285
6
46,571
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming ...
instruction
0
23,286
6
46,572
Yes
output
1
23,286
6
46,573
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming ...
instruction
0
23,287
6
46,574
Yes
output
1
23,287
6
46,575
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming ...
instruction
0
23,288
6
46,576
Yes
output
1
23,288
6
46,577
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming ...
instruction
0
23,289
6
46,578
Yes
output
1
23,289
6
46,579
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming ...
instruction
0
23,290
6
46,580
No
output
1
23,290
6
46,581
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming ...
instruction
0
23,291
6
46,582
No
output
1
23,291
6
46,583
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming ...
instruction
0
23,292
6
46,584
No
output
1
23,292
6
46,585
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are given an n × m rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming ...
instruction
0
23,293
6
46,586
No
output
1
23,293
6
46,587
Provide tags and a correct Python 3 solution for this coding contest problem. Polycarp is working on a new operating system called BerOS. He asks you to help with implementation of a file suggestion feature. There are n files on hard drive and their names are f_1, f_2, ..., f_n. Any file name contains between 1 and 8...
instruction
0
23,865
6
47,730
Tags: brute force, implementation Correct Solution: ``` import re import sys exit=sys.exit from bisect import bisect_left as bsl,bisect_right as bsr from collections import Counter,defaultdict as ddict,deque from functools import lru_cache cache=lru_cache(None) from heapq import * from itertools import * from math impo...
output
1
23,865
6
47,731
Provide tags and a correct Python 3 solution for this coding contest problem. Polycarp is working on a new operating system called BerOS. He asks you to help with implementation of a file suggestion feature. There are n files on hard drive and their names are f_1, f_2, ..., f_n. Any file name contains between 1 and 8...
instruction
0
23,866
6
47,732
Tags: brute force, implementation Correct Solution: ``` # -*- coding:utf-8 -*- """ created by shuangquan.huang at 11/3/18 """ import collections N = int(input()) subs = collections.defaultdict(int) subi = collections.defaultdict(int) files = [] for fi in range(N): f = input() files.append(f) ss = set(...
output
1
23,866
6
47,733
Provide tags and a correct Python 3 solution for this coding contest problem. Polycarp is working on a new operating system called BerOS. He asks you to help with implementation of a file suggestion feature. There are n files on hard drive and their names are f_1, f_2, ..., f_n. Any file name contains between 1 and 8...
instruction
0
23,867
6
47,734
Tags: brute force, implementation Correct Solution: ``` def func1(s,i,index,dict1): if(i==len(s)): return sx='' for j in range(i,len(s)): sx+=s[j] try: if(dict1[sx][1]!=index): dict1[sx][0]+=1 dict1[sx][1]=index except: ...
output
1
23,867
6
47,735
Provide tags and a correct Python 3 solution for this coding contest problem. Polycarp is working on a new operating system called BerOS. He asks you to help with implementation of a file suggestion feature. There are n files on hard drive and their names are f_1, f_2, ..., f_n. Any file name contains between 1 and 8...
instruction
0
23,868
6
47,736
Tags: brute force, implementation Correct Solution: ``` ## necessary imports import sys input = sys.stdin.readline from math import ceil, floor, factorial; # swap_array function def swaparr(arr, a,b): temp = arr[a]; arr[a] = arr[b]; arr[b] = temp ## gcd function def gcd(a,b): if a == 0: return...
output
1
23,868
6
47,737
Provide tags and a correct Python 3 solution for this coding contest problem. Polycarp is working on a new operating system called BerOS. He asks you to help with implementation of a file suggestion feature. There are n files on hard drive and their names are f_1, f_2, ..., f_n. Any file name contains between 1 and 8...
instruction
0
23,869
6
47,738
Tags: brute force, implementation Correct Solution: ``` if __name__ == "__main__": Map = {} siz = {} n = int(input()) for i in range(n): str = input() MMap = {} for j in range(0,len(str)): t = "" for k in range(j,len(str)): t += str[k] ...
output
1
23,869
6
47,739
Provide tags and a correct Python 3 solution for this coding contest problem. Polycarp is working on a new operating system called BerOS. He asks you to help with implementation of a file suggestion feature. There are n files on hard drive and their names are f_1, f_2, ..., f_n. Any file name contains between 1 and 8...
instruction
0
23,870
6
47,740
Tags: brute force, implementation Correct Solution: ``` ################### # 18th August 2019. ################### ########################################################################## # Getting fileCount from Codeforces. fileCount = int(input()) # Method to generate all substrings of given string. from itertool...
output
1
23,870
6
47,741
Provide tags and a correct Python 3 solution for this coding contest problem. Polycarp is working on a new operating system called BerOS. He asks you to help with implementation of a file suggestion feature. There are n files on hard drive and their names are f_1, f_2, ..., f_n. Any file name contains between 1 and 8...
instruction
0
23,871
6
47,742
Tags: brute force, implementation Correct Solution: ``` from collections import defaultdict N = int(input()) F = [] for i in range(N): F.append(input()) dic = defaultdict(set) for i in range(N): t = F[i] M = len(t) for j in range(M): for k in range(j + 1, M + 1): dic[t[j: k]].add(F[...
output
1
23,871
6
47,743
Provide tags and a correct Python 3 solution for this coding contest problem. Polycarp is working on a new operating system called BerOS. He asks you to help with implementation of a file suggestion feature. There are n files on hard drive and their names are f_1, f_2, ..., f_n. Any file name contains between 1 and 8...
instruction
0
23,872
6
47,744
Tags: brute force, implementation Correct Solution: ``` # https://codeforces.com/problemset/problem/1070/H from sys import stdin, exit from typing import List, Tuple sub_strings = dict() files_num = int(stdin.readline().rstrip()) for _id in range(files_num): f_name = stdin.readline().rstrip() for i in range(...
output
1
23,872
6
47,745
Provide tags and a correct Python 3 solution for this coding contest problem. In the popular spreadsheets systems (for example, in Excel) the following numeration of columns is used. The first column has number A, the second — number B, etc. till column 26 that is marked by Z. Then there are two-letter numbers: column...
instruction
0
24,081
6
48,162
Tags: implementation, math Correct Solution: ``` import string import re alphabet=string.ascii_uppercase n=input() n=int(n) def numer1(inp): inp=inp.replace("R","") inp=inp.replace("C"," ") row,column=inp.split(" ",1) column=int(column) columnalpha=[] over=False while not over: ...
output
1
24,081
6
48,163
Provide tags and a correct Python 3 solution for this coding contest problem. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of the company's staff. Thi...
instruction
0
24,136
6
48,272
Tags: greedy, implementation, strings Correct Solution: ``` s=input() au=[pos for pos,char in enumerate(s) if char=='@'] dis=[au[i+1]-au[i] for i in range(len(au)-1)] dis=[1 for i in dis if i<=2] if len(au)==0 or au[0]==0 or au[-1]==len(s)-1 or sum(dis)>0: print("No solution") else: if len(au)==1: print(s) el...
output
1
24,136
6
48,273
Provide tags and a correct Python 3 solution for this coding contest problem. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of the company's staff. Thi...
instruction
0
24,137
6
48,274
Tags: greedy, implementation, strings Correct Solution: ``` #amros s=input() t=[] k=0 y=1 while 1: a=s.find('@',k+1) if a<0:break r=s[k:a+2] if r.count('@')==0 or r[0]=='@'or r[-1]=='@':y=0 t+=[r];k=a+2 if t and s[k:].count('@')==0:t[-1]+=s[k:] p='' for i in t:p+=i print(['No solution',','.join(t)][...
output
1
24,137
6
48,275
Provide tags and a correct Python 3 solution for this coding contest problem. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of the company's staff. Thi...
instruction
0
24,138
6
48,276
Tags: greedy, implementation, strings Correct Solution: ``` from sys import stdout a=input() c=list(a.split('@')) while '' in c: c.remove('') if a.count('@')==0: exit(print('No solution')) if a.count('@')!=len(c)-1: exit(print('No solution')) if any(len(i)==1 for i in c[1:len(c)-1]): exit(print('No solu...
output
1
24,138
6
48,277
Provide tags and a correct Python 3 solution for this coding contest problem. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of the company's staff. Thi...
instruction
0
24,139
6
48,278
Tags: greedy, implementation, strings Correct Solution: ``` a=input().split('@') n=len(a) b=[] if n>=2: for i in range(n): if len(a[i])>int(i!=0 and i!=n-1): if i!=0 and i!=n-1: b.append(a[i-1][min(1,i-1):]+'@'+a[i][0]) elif i==n-1: b.append(a[i-1][min...
output
1
24,139
6
48,279
Provide tags and a correct Python 3 solution for this coding contest problem. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of the company's staff. Thi...
instruction
0
24,140
6
48,280
Tags: greedy, implementation, strings Correct Solution: ``` a = input() b = a.split("@") ans = [] flag = True for i in b[1:-1]: if len(i) < 2: flag = False break if len(b) < 2: flag = False if b[0] and b[-1] and flag: ind = 0 index_list = [] str_len = len(a) temp = "" j =...
output
1
24,140
6
48,281
Provide tags and a correct Python 3 solution for this coding contest problem. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of the company's staff. Thi...
instruction
0
24,141
6
48,282
Tags: greedy, implementation, strings Correct Solution: ``` import sys from array import array # noqa: F401 def input(): return sys.stdin.buffer.readline().decode('utf-8') s = input().rstrip() ans = [] while s and s[0] != '@': for i in range(len(s) - 1): if s[i] == '@': ans.append(s[:i...
output
1
24,141
6
48,283
Provide tags and a correct Python 3 solution for this coding contest problem. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of the company's staff. Thi...
instruction
0
24,142
6
48,284
Tags: greedy, implementation, strings Correct Solution: ``` def cf31B(): #print("Hello World") from sys import stdin,stdout inp = list(stdin.readline().strip().split('@')) flag = True if len(inp)>=2: if len(inp[0])==0 or len(inp[-1])==0: flag = False if flag: ...
output
1
24,142
6
48,285
Provide tags and a correct Python 3 solution for this coding contest problem. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of the company's staff. Thi...
instruction
0
24,143
6
48,286
Tags: greedy, implementation, strings Correct Solution: ``` s=input() n=len(s) ans=[] x='' c=0 for i in range(n): if i!=n-1: if s[i+1]!='@': x=x+s[i] else: if c==0: x=x+s[i] c=1 else: ans.append(x) x=...
output
1
24,143
6
48,287
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list...
instruction
0
24,144
6
48,288
Yes
output
1
24,144
6
48,289
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list...
instruction
0
24,145
6
48,290
Yes
output
1
24,145
6
48,291
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list...
instruction
0
24,146
6
48,292
Yes
output
1
24,146
6
48,293
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list...
instruction
0
24,147
6
48,294
Yes
output
1
24,147
6
48,295
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list...
instruction
0
24,148
6
48,296
No
output
1
24,148
6
48,297
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list...
instruction
0
24,149
6
48,298
No
output
1
24,149
6
48,299
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list...
instruction
0
24,150
6
48,300
No
output
1
24,150
6
48,301
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Email address in Berland is a string of the form A@B, where A and B are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list...
instruction
0
24,151
6
48,302
No
output
1
24,151
6
48,303
Provide tags and a correct Python 3 solution for this coding contest problem. Haiku is a genre of Japanese traditional poetry. A haiku poem consists of 17 syllables split into three phrases, containing 5, 7 and 5 syllables correspondingly (the first phrase should contain exactly 5 syllables, the second phrase should ...
instruction
0
24,380
6
48,760
Tags: implementation, strings Correct Solution: ``` print('YES' if [sum(s.count(x) for x in "aeiou") for s in [input() for _ in range(3)]]==[5,7,5] else 'NO') ```
output
1
24,380
6
48,761
Provide tags and a correct Python 3 solution for this coding contest problem. Haiku is a genre of Japanese traditional poetry. A haiku poem consists of 17 syllables split into three phrases, containing 5, 7 and 5 syllables correspondingly (the first phrase should contain exactly 5 syllables, the second phrase should ...
instruction
0
24,381
6
48,762
Tags: implementation, strings Correct Solution: ``` import sys import os from collections import Counter def changeStdioToFile(): path = os.path.dirname(os.path.abspath(__file__)) sys.stdin = open(f'{path}/input.txt', 'r') sys.stdout = open(f'{path}/output.txt', 'w') #changeStdioToFile() t = 1 # t = int...
output
1
24,381
6
48,763
Provide tags and a correct Python 3 solution for this coding contest problem. Haiku is a genre of Japanese traditional poetry. A haiku poem consists of 17 syllables split into three phrases, containing 5, 7 and 5 syllables correspondingly (the first phrase should contain exactly 5 syllables, the second phrase should ...
instruction
0
24,382
6
48,764
Tags: implementation, strings Correct Solution: ``` s1=input() s2=input() s3=input() c1=s1.count('a')+s1.count('e')+s1.count('i')+s1.count('o')+s1.count('u') c2=s2.count('a')+s2.count('e')+s2.count('i')+s2.count('o')+s2.count('u') c3=s3.count('a')+s3.count('e')+s3.count('i')+s3.count('o')+s3.count('u') if(c1==5 and c2=...
output
1
24,382
6
48,765
Provide tags and a correct Python 3 solution for this coding contest problem. Haiku is a genre of Japanese traditional poetry. A haiku poem consists of 17 syllables split into three phrases, containing 5, 7 and 5 syllables correspondingly (the first phrase should contain exactly 5 syllables, the second phrase should ...
instruction
0
24,383
6
48,766
Tags: implementation, strings Correct Solution: ``` a=input().replace(' ','') b=input().replace(' ','') c=input().replace(' ','') l=list('aeiou') f,d,e=0,0,0 for i in a: if i in l: f+=1 for i in b: if i in l: d+=1 for i in c: if i in l: e+=1 if(f==5 and d==7 and e==5): print("YES...
output
1
24,383
6
48,767
Provide tags and a correct Python 3 solution for this coding contest problem. Haiku is a genre of Japanese traditional poetry. A haiku poem consists of 17 syllables split into three phrases, containing 5, 7 and 5 syllables correspondingly (the first phrase should contain exactly 5 syllables, the second phrase should ...
instruction
0
24,384
6
48,768
Tags: implementation, strings Correct Solution: ``` # import sys # sys.stdin=open('input.in','r') # sys.stdout=open('output.out','w') l=['a','e','i','o','u'] t1=t2=t3=0 s1=input().strip() s2=input().strip() s3=input().strip() for x in s1: if x in l: t1+=1 for x in s2: if x in l: t2+=1 for x in s3: if x in l: t...
output
1
24,384
6
48,769