# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
161847 | boolodifjenula | Imena (COCI16_imena) | Cpython 3 | 27 ms | 3468 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
N=int(input())
S=input()
S+=" "
p=0
z=0
for i in range(len(S)):
#print(p)
if i==0 and S[i] in "QWERTZUIOPASDFGHJKLYXCVBNM" or p==0 and S[i] in "QWERTZUIOPASDFGHJKLYXCVBNM" and S[i-1]==" ":
p=1
continue
if p==1 and S[i]==" ":
z+=1
p=0
if p==1 and S[i] in "!?." and S[i+1]==" ":
p=0
print(z+1)
z=0
continue
if p==0 and S[i] in "!?." and S[i+1]==" ":
print(z)
z=0
continue
if p==1 and bool(S[i] in "qwertzuiopasdfghjklyxcvbnm!?.")==0:
p=0
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |