반응형
[ Contents ]
1. 문제 (링크 참조)
https://www.acmicpc.net/problem/23080
2. 문제 풀이
정해진 K만큼 뛰엄뛰엄 읽는 암호입니다.
3. 코드
import sys
input = sys.stdin.readline
k = int(input())
s = input().rstrip()
answer = ''
for i in range(0, len(s), k):
answer += s[i]
print(answer)
반응형
'Algorithm' 카테고리의 다른 글
[구현/수학] 백준 25704 출석 이벤트 - 파이썬(Python) (0) | 2023.04.07 |
---|---|
[구현/수학] 백준 25793 초콜릿 피라미드 - 파이썬(Python) (0) | 2023.04.06 |
[구현/수학] 백준 10205 헤라클레스와 히드라 - 파이썬(Python) (0) | 2023.04.04 |
[구현/수학] 백준 14592 2017 아주대학교 프로그래밍 경시대회 (Small) - 파이썬(Python) (0) | 2023.04.03 |
[구현/수학] 백준 15734 명장 남정훈 - 파이썬(Python) (0) | 2023.04.02 |
댓글