본문 바로가기
프로그래머스코딩테스트연습풀이/C++

[프로그래머스/C++] 암호 해독

by 코코쵸마 2025. 2. 20.

문제

군 전략가 머쓱이는 전쟁 중 적군이 다음과 같은 암호 체계를 사용한다는 것을 알아냈습니다.

암호화된 문자열 cipher를 주고받습니다.
그 문자열에서 code의 배수 번째 글자만 진짜 암호입니다.
문자열 cipher와 정수 code가 매개변수로 주어질 때 해독된 암호 문자열을 return하도록 solution 함수를 완성해주세요.

 

솔루션

#include <string>
#include <vector>

using namespace std;

string solution(string cipher, int code) {
    string answer = "";
    for(int i = code-1;i < cipher.size(); i+=code){
        answer += cipher[i];
    }
    return answer;
}

 

https://school.programmers.co.kr/learn/courses/30/lessons/120892

 

프로그래머스

SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프

programmers.co.kr