#1759
1293 ワード
#1759
combination
https://ourcstory.tistory.com/414 リスト要素を空白なしでインポートする方法->sep='
https://blog.naver.com/youndok/222066996597
git
リファレンス
質問する
に答える
from itertools import combinations
L,C=map(int,input().split())
cipher=list(input().strip().split())
cipher.sort()
moum = ['a', 'e', 'i', 'o', 'u']
a=list(combinations(cipher,L))
for i in a:
answer=""
flag1,flag2=0,0
for check in i:
if check in moum:
flag1=1
else:
flag2+=1
if flag1==1 and flag2>=2:
print(*i,sep='')
知っているはずだった.https://ourcstory.tistory.com/414
https://blog.naver.com/youndok/222066996597
リファレンス
Reference
この問題について(#1759), 我々は、より多くの情報をここで見つけました https://velog.io/@cherriverhee/1759テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol