SW Expert

[SWEA] 1986 지그재그 숫자 Python

꿀떡최고 2021. 5. 28. 10:31
반응형

[ 문제 ]

 

난이도:  D2

문제 번호:  1986

 

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PxmBqAe8DFAUq&categoryId=AV5PxmBqAe8DFAUq&categoryType=CODE&problemTitle=1986&orderBy=FIRST_REG_DATETIME&selectCodeLang=ALL&select-1=&pageSize=10&pageIndex=1

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com


 

1부터 N까지의 숫자에서 홀수는 더하고 짝수는 뺐을 때 최종 누적된 값을 구해보자.

 

 

[제약사항]

N은 1 이상 10 이하의 정수이다. (1 ≤ N ≤ 10)


 

[ 코드 ]

 

1
2
3
4
5
6
7
8
9
10
11
12
= int(input())
for test_case in range(1, T + 1):
    number = int(input())
 
    total = 1
    for i in range(2, number + 1):
 
        if i % 2:
            total += i
        else:
            total -= i
    print(f'#{test_case} {total}')
cs
반응형