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
- github
- @NoArgsConstructor
- 부스트코스
- git
- 코드업
- DTO
- 부트캠프
- Codeup
- entity
- 기본생성자
- 파이썬
- 알고리즘
- lv1
- html tag
- SQL
- 자바
- @builder
- 프로그래머스
- Python
- 에러
- 캡슐화
- @AllArgsConstructor
- HTML
- java
- 상속
- HashSet
- stringbuffer
- CRUD
- 깃허브
- 브랜치
Archives
- Today
- Total
잉?
Codeup 1281 : 홀수는 더하고 짝수는 빼고 3 본문
https://codeup.kr/problem.php?id=1281
1281 : 홀수는 더하고 짝수는 빼고 3
a, b = map(int, input().split())
result = 0
for i in range(a, b+1):
if i % 2 == 0:
result -= i
print('-' + str(i), end = '')
else:
result += i
if i == a:
print(str(i), end = '')
else:
print('+' + str(i), end = '')
if result > -1:
print('=+' + str(result))
else:
print('=' + str(result))
'알고리즘_Algorism > Codeup' 카테고리의 다른 글
Codeup 1352 : 사각형 출력하기 1 (0) | 2019.07.22 |
---|---|
Codeup 1351 : 구구단 출력하기 2 (0) | 2019.07.22 |
Codeup 1280 : 홀수는 더하고 짝수는 빼고 2 (0) | 2019.07.22 |
Codeup 1279 : 홀수는 더하고 짝수는 빼고 1 (0) | 2019.07.22 |
Codeup 1278 : 자릿수 계산 (0) | 2019.07.22 |
Comments