-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[level 1] Title: 시저 암호, Time: 1.90 ms, Memory: 10.3 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# [level 1] 시저 암호 - 12926 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/12926) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 10.3 MB, 시간: 1.90 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 연습문제 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 06월 29일 13:34:43 | ||
|
||
### 문제 설명 | ||
|
||
<p>어떤 문장의 각 알파벳을 일정한 거리만큼 밀어서 다른 알파벳으로 바꾸는 암호화 방식을 시저 암호라고 합니다. 예를 들어 "AB"는 1만큼 밀면 "BC"가 되고, 3만큼 밀면 "DE"가 됩니다. "z"는 1만큼 밀면 "a"가 됩니다. 문자열 s와 거리 n을 입력받아 s를 n만큼 민 암호문을 만드는 함수, solution을 완성해 보세요.</p> | ||
|
||
<h5>제한 조건</h5> | ||
|
||
<ul> | ||
<li>공백은 아무리 밀어도 공백입니다.</li> | ||
<li>s는 알파벳 소문자, 대문자, 공백으로만 이루어져 있습니다.</li> | ||
<li>s의 길이는 8000이하입니다.</li> | ||
<li>n은 1 이상, 25이하인 자연수입니다.</li> | ||
</ul> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>s</th> | ||
<th>n</th> | ||
<th>result</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>"AB"</td> | ||
<td>1</td> | ||
<td>"BC"</td> | ||
</tr> | ||
<tr> | ||
<td>"z"</td> | ||
<td>1</td> | ||
<td>"a"</td> | ||
</tr> | ||
<tr> | ||
<td>"a B z"</td> | ||
<td>4</td> | ||
<td>"e F d"</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
def solution(s, n): | ||
answer="" | ||
for i in s: | ||
if i == " ": | ||
answer += " " | ||
else: | ||
k = chr(ord(i)+n) | ||
if k.isupper() != i.isupper() or k.isalpha()==False: | ||
k = chr(ord(k)-26) #알파벳수 26개 | ||
answer += k | ||
return answer |