1759
[Python] 1759 - 암호만들기
from itertools import combinations l , c = map(int, input().split()) letters = sorted(input().split()) words = combinations(letters, l) for word in words: cnt = 0 for i in word: if i in "aeiou": cnt += 1 if cnt >= 1 and l - cnt >= 2: print("".join(word))
[골5] 1759 - 암호 만들기
#include #include #include using namespace std; using ll = long long; #define FAST_IO() \ {\ ios::sync_with_stdio(false);\ cin.tie(NULL); \ cout.tie(NULL); \ }\ vector v; int l, c; void DFS(int now, string str = "", int consonant = 0, int vowel = 0) { char ch = v[now]; str.push_back(ch); if (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u') vowel++; else consonant++; if (str.length(..