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 |
Tags
- 한국어 음성 합성
- deep voice
- 딥러닝 보코더
- Vocoder
- tacotron
- 딥러닝
- melgan
- text-to-speech
- DCTTS
- 보코더
- YOLO
- 트레이닝
- waveglow
- 타코트론
- you only look once
- singing voice synthesis
- 딥러닝 음성 합성
- korean tts
- TTS
- 윈도우
- 한국어 tts
- 노래합성
- 학습
- 음성 합성
Archives
- Today
- Total
chldkato
백준 1152 단어의 개수 (파이썬) 본문
https://www.acmicpc.net/problem/1152
파이썬의 경우 len(list(input().split()))을 출력하기만 해도 답이 나온다
1. 공백 하나만 입력된 경우 0을 출력
2. 조건에 맞게 앞뒤 공백은 제외하고 공백의 개수를 센 후 공백의 개수에 1을 더한 값을 출력
import sys
input = sys.stdin.readline
s = list(input().strip())
if not s:
print(0)
sys.exit()
ans = 0
for i in range(len(s)):
if i == 0 and s[i] == ' ':
continue
if i == len(s) - 1 and s[i] == ' ':
continue
if s[i] == ' ':
ans += 1
print(ans+1)
'백준' 카테고리의 다른 글
백준 1194 달이 차오른다, 가자. (파이썬) (0) | 2020.02.20 |
---|---|
백준 1939 중량제한 (파이썬) (0) | 2020.02.18 |
백준 1987 알파벳 (파이썬) (0) | 2020.02.18 |
백준 1726 로봇 (파이썬) (0) | 2020.02.18 |
백준 3184 양 (파이썬) (0) | 2020.02.18 |
Comments