일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- collections.deque
- Counting cells in a blob
- Numpy
- centuryFromYear
- recursion
- 피보나치 수
- 10953
- codesignal
- Sequential Search
- shapeArea
- All Longest Strings
- flask
- 2015 봄학기 알고리즘
- Python
- 파이썬 포렌식
- data_structure
- til
- 백준
- markdown
- C++
- adjacentElementsProduct
- 2750
- almostIncreasingSequence
- codesingal
- Daily Commit
- matrixElementsSum
- baekjun
- cpp
- 수 정렬하기
- 파이썬머신러닝완벽가이드
Archives
- Today
- Total
Introfor
[백준] 1065번 한수 본문
파이썬 문법에서 함수와 조건문, 반복문, 리스트에 대한 개념만 알면 풀 수 있는 쉬운 문제
1
2
3
4
5
6
7
8
9
10
11
12
13
|
def solve():
n = int(input())
cnt = 0
if n < 100: return n
for i in range(100, n + 1):
nums = list(map(int, str(i)))
if nums[1] - nums[0] == nums[2] - nums[1]:
cnt += 1
return cnt + 99
res = solve()
print(res)
|
cs |
'Programming_prob > BaekJoon' 카테고리의 다른 글
[백준] 2675번 문자열 반복 (0) | 2020.10.05 |
---|---|
[백준] 10809번 알파벳 찾기 (0) | 2020.10.05 |
[백준] 4673번 셀프 넘버 (0) | 2020.10.03 |
[백준] 2484번 주사위 네개 (0) | 2020.09.28 |
[백준] 1748번 수 이어 쓰기 1 (0) | 2020.09.28 |
Comments