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
- Python
- 브랜치
- 파이썬
- 알고리즘
- 프로그래머스
- entity
- github
- Codeup
- 코드업
- @NoArgsConstructor
- 상속
- DTO
- 자바
- 부트캠프
- lv1
- html tag
- @builder
- 부스트코스
- @AllArgsConstructor
- HTML
- git
- 에러
- 캡슐화
- java
- stringbuffer
- SQL
- 기본생성자
- CRUD
- 깃허브
- HashSet
Archives
- Today
- Total
잉?
Codeup 1270 : 1의 개수는? 1 본문
https://codeup.kr/problem.php?id=1270
1270 : 1의 개수는? 1
n = int(input())
count = 0
for i in range(1, n+1):
if i % 10 == 1:
count += 1
print(count)
'알고리즘_Algorism > Codeup' 카테고리의 다른 글
Codeup 1273 : 약수 구하기 (0) | 2019.07.18 |
---|---|
Codeup 1271 : 최대값 구하기 (0) | 2019.07.18 |
Codeup 1269 : 수열의 값 구하기 (0) | 2019.07.14 |
Codeup 1267 : n개의 수 중 5의 배수의 합 (0) | 2019.07.14 |
Codeup 1266 : n개의 수의 합 (0) | 2019.07.14 |
Comments