https://www.acmicpc.net/problem/10809
s = str(input())
for i in range(97,123):
if chr(i) in s:
print(s.index(chr(i)),end=' ')
else:
print(-1,end=' ')
'알고리즘 > 백준' 카테고리의 다른 글
백준 1157: 단어 공부 (Python) (0) | 2021.08.25 |
---|---|
백준 2675: 문자열 반복 (Python) (0) | 2021.08.25 |
백준 11654: 아스키 코드 (Python) (0) | 2021.08.25 |
백준 1065: 한수 (Python) (0) | 2021.08.24 |
백준 4673: 셀프 넘버 (Python) (0) | 2021.08.24 |