티스토리 뷰
https://www.acmicpc.net/problem/1065
import sys
N = int(sys.stdin.readline())
cnt = 0
for i in range(1, N+1):
num = list(str(i))
for j in range(len(num)):
num[j] = int(num[j])
if len(num) == 1:
cnt += 1
elif len(num) == 2:
cnt += 1
else:
for j in range(len(num)-2):
if (num[j+1] - num[j]) == (num[j+2] - num[j+1]):
cnt += 1
else:
break
print(cnt)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 11720 : 숫자의 합 - Python (0) | 2020.03.26 |
---|---|
[백준] 11654 : 아스키 코드 - Python (0) | 2020.03.26 |
[백준] 4673 : 셀프 넘버 - Python (0) | 2020.03.26 |
[백준] 4344 : 평균은 넘겠지 - Python (0) | 2020.03.25 |
[백준] 8958 : OX퀴즈 - Python (0) | 2020.03.25 |