⌨️ 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))) 공유하기 게시글 관리 MONZHELD '⌨️ Algorithms > 백준' 카테고리의 다른 글 [Python] 백준 2741번_N 찍기 (0) 2022.06.29 [Python] 백준 15552번_빠른 A+B (0) 2022.06.29 [Python] 백준 10950번_A+B - 3 (0) 2022.06.28 [Python] 백준 2739번_구구단 (0) 2022.06.28 [Python] 백준 2480번_주사위 세개 (0) 2022.06.28 Contents 당신이 좋아할만한 콘텐츠 [Python] 백준 2741번_N 찍기 2022.06.29 [Python] 백준 15552번_빠른 A+B 2022.06.29 [Python] 백준 10950번_A+B - 3 2022.06.28 [Python] 백준 2739번_구구단 2022.06.28 댓글 0 + 이전 댓글 더보기