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
- 파이썬
- java
- CRUD
- Python
- 프로그래머스
- 부스트코스
- DTO
- @NoArgsConstructor
- html tag
- 캡슐화
- HTML
- entity
- 브랜치
- 상속
- 코드업
- 부트캠프
- stringbuffer
- 알고리즘
- 기본생성자
- 에러
- git
- 자바
- @builder
- github
- @AllArgsConstructor
- lv1
- 깃허브
- SQL
- HashSet
- Codeup
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