Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- C언어
- Cleancode
- dfs
- BFS
- udemy
- DP
- 종만북
- server
- C
- 따라하며 배우는 C언어
- sorting
- Python
- Algorithm
- greedy
- php
- graph
- 정수론
- Algospot
- web
- BOJ
- String
- JavaScript
- BASIC
- 따라하면서 배우는 C언어
- programmers
- Math
- 인프런
- 따배씨
- 생활코딩
- 백준
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 11655 / ROT13 / Python 파이썬 본문
[BOJ] 11655 / ROT13 / Python 파이썬
https://www.acmicpc.net/problem/11655
풀이
알파벳을 List 에 담아 index 로 암호화를 구현 하였다.
0~25 를 넘어가는 숫자는 26으로 나눈 나머지 값으로 처리 해 주었다.
asciiCode = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
rot = ""
for s in input():
if s.isalpha():
if s.isupper():
idx = asciiCode.index(s.lower())
idx = (idx + 13)%26
rot += asciiCode[idx].upper()
else:
idx = asciiCode.index(s)
idx = (idx + 13)%26
rot += asciiCode[idx]
else:
rot += s
print(rot)
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 1158 / 요세푸스 문제 / Python 파이썬 (0) | 2021.05.27 |
---|---|
[BOJ] 11656 / 접미사 배열 / Python 파이썬 (0) | 2021.05.26 |
[BOJ] 10820 / 문자열 분석 / Python 파이썬 (0) | 2021.05.26 |
[BOJ] 10809 / 알파벳 찾기 / Python 파이썬 (0) | 2021.05.25 |
[BOJ] 10808 / 알파벳 개수 / Python 파이썬 (0) | 2021.05.25 |
Comments