새소식

⌨️ Algorithms/백준

[Python] 백준 8393번_합

2022. 6. 28. 18:02

  • -

https://www.acmicpc.net/problem/8393

 

8393번: 합

n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오.

www.acmicpc.net

 

n = int(input())

total = 0 
for i in range(1, n+1): # 1부터 n까지 
    total += i # total = total + i

print(total)
반복문이 모두 끝난 후 1부터 n까지의 합을 출력해야 하므로 for문 바깥에 작성해야 함

 

 

 

sum() 함수 사용

n = int(input())
print(sum(range(1, n+1)))

# n 변수 지정 없이 한 줄로도 가능 
# print(sum(range(1, int(input())+1)))

 

Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다!