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
- 정렬
- 사칙연산
- 구현
- Forensics
- writeup
- misc
- 써니나타스
- xcz.kr
- wargame
- 인코그니토
- Web Hacking
- 수학
- C
- SuNiNaTas
- N0Named
- php
- Web
- cryptography
- MySQL
- 문자열
- 그리디 알고리즘
- Python
- Incognito
- Text
- HackCTF
- Digital Forensics
- Network
- 백준
- CTF
- Database
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 5218번 알파벳 거리 본문
[Baekjoon/Python3] 5218번 알파벳 거리
t = int(input())
alp = [chr(i) for i in range(65, 91)]
for i in range(t):
res = []
x, y = input().split()
for j in range(len(x)):
if alp.index(y[j]) >= alp.index(x[j]):
res.append(alp.index(y[j]) - alp.index(x[j]))
elif alp.index(y[j]) < alp.index(x[j]):
res.append((alp.index(y[j]) + 26) - alp.index(x[j]))
print('Distances:', *res)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3/Text] 5338번 마이크로소프트 로고 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 5337번 웰컴 (0) | 2020.12.05 |
[Baekjoon/Python3] 5086번 배수와 약수 (0) | 2020.12.05 |
[Baekjoon/Python3] 5073번 삼각형과 세 변 (0) | 2020.12.05 |
[Baekjoon/Python3] 5063번 TGN (0) | 2020.12.05 |
Comments