👚 [문제]
1부터 N까지의 숫자에서 홀수는 더하고 짝수는 뺐을 때 최종 누적된 값을 구해보자.
import sys
sys.stdin = open("input.txt")
T = int(input())
for tc in range(1, T+1):
N = int(input())
num_list = [num for num in range(1, N+1)]
result = 0
odd_nums = [i for i in num_list if i%2 ]
even_nums = [j for j in num_list if j%2 == 0]
result = sum(odd_nums) - sum(even_nums)
print("#{} {}".format(tc, result))
'# 3. APS > SWEA' 카테고리의 다른 글
SWEA # Python_D2_1288_새로운 불면증 치료법 (0) | 2021.02.20 |
---|---|
SWEA # Python_D3_4831_전기버스 (0) | 2021.02.20 |
SWEA # Python_D2_4835_구간합 ✅ (0) | 2021.02.18 |
SWEA # Python_D2_4834_숫자 카드 ✅ (0) | 2021.02.17 |
SWEA # Python_D2_4828_min max ✅ (0) | 2021.02.17 |