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
- singing voice synthesis
- 딥러닝 보코더
- 윈도우
- text-to-speech
- melgan
- 학습
- DCTTS
- 보코더
- 한국어 tts
- you only look once
- 트레이닝
- korean tts
- 음성 합성
- YOLO
- 딥러닝 음성 합성
- 타코트론
- 한국어 음성 합성
- waveglow
- Vocoder
- tacotron
- 딥러닝
- TTS
- 노래합성
- deep voice
Archives
- Today
- Total
chldkato
백준 1748 수 이어 쓰기 1 (파이썬) 본문
https://www.acmicpc.net/problem/1748
1. 입력 받은 n의 자릿수와 같은 수를 몇 개 붙이는지 먼저 계산한다
2. 자릿수를 하나씩 줄이면서 이어붙일 자릿수를 계산한다
import sys
input = sys.stdin.readline
n = int(input())
list_n = list(str(n))
ans, cnt = 0, len(list_n)
if cnt == 1:
print(n)
sys.exit()
ans += (n - 10 ** (cnt - 1) + 1) * cnt
for i in range(len(list_n) - 1, 0, -1):
cnt -= 1
ans += 9 * (10 ** (i - 1)) * cnt
print(ans)
'백준' 카테고리의 다른 글
백준 1654 랜선 자르기 (파이썬) (0) | 2020.06.05 |
---|---|
백준 10448 유레카 이론 (파이썬) (0) | 2020.06.05 |
백준 1107 리모컨 (파이썬) (2) | 2020.06.04 |
백준 1182 부분수열의 합 (파이썬) (0) | 2020.04.27 |
백준 7568 덩치 (파이썬) (0) | 2020.04.27 |
Comments