암호 만들기1 [BOJ]1759번: 암호 만들기 (c++) https://www.acmicpc.net/problem/1759 1759번: 암호 만들기첫째 줄에 두 정수 L, C가 주어진다. (3 ≤ L ≤ C ≤ 15) 다음 줄에는 C개의 문자들이 공백으로 구분되어 주어진다. 주어지는 문자들은 알파벳 소문자이며, 중복되는 것은 없다.www.acmicpc.net #include #include #include #include using namespace std;// 최소 모음 1개, 자음 2개 조건에 만족하는지 검사bool check(string pw){ const string consonant = "aeiou"; int c_cnt = 0; for (char c : pw) { if (consonant.find(c) != string::npos) { ++c_.. 2020. 5. 20. 이전 1 다음