문자열 길이에 따라 생략하는 문제
import sys
input = sys.stdin.readline
N = int(input())
s = input().rstrip()
if N <= 25:
print(s)
exit()
if '.' not in s[11:-12]:
print(s[:11]+'...'+s[-11:])
exit()
print(s[:9] + '......' + s[-10:])
'practivceAlgorithm > 백준' 카테고리의 다른 글
[백준][Python] 1719 택배 : 플로이드워셜 경로 (0) | 2021.09.04 |
---|---|
[백준][Python] 2002 추월 (0) | 2021.09.03 |
[백준][Python] 5430 AC (0) | 2021.09.03 |
[백준][Python] 2579 계단오르기 (0) | 2021.09.03 |
[백준][Python] 2667 단지번호붙이기 (0) | 2021.09.03 |