728x90
두 정수 사이의 합
두 정수 a, b가 주어졌을 때 a와 b 사이에 속한 모든 정수의 합을 리턴하는 함수, solution을 완성하세요.
예를 들어 a = 3, b = 5인 경우, 3 + 4 + 5 = 12이므로 12를 리턴합니다.
제한 조건
- a와 b가 같은 경우는 둘 중 아무 수나 리턴하세요.
- a와 b는 -10,000,000 이상 10,000,000 이하인 정수입니다.
- a와 b의 대소관계는 정해져있지 않습니다.
입출력 예
a | b | return |
---|---|---|
3 | 5 | 12 |
3 | 3 | 3 |
5 | 3 | 12 |
풀이1)
#include <string> #include <vector> using namespace std; long long solution(int a, int b) { long long answer = 0; int step =0, temp = 0; step = (a - b); if (step < 0) step *= -1; if (a > b) { temp = b; } else if (a < b) { temp = a; } else if(a==b) answer = a; for (int i = 0; i <= step; i++) { answer += temp; temp++; } return answer; }
풀이2)
#include <string> #include <vector> using namespace std; long long solution(int a, int b) { long long answer = 0; int step =0,min = 0,max=0; step = (a - b); if (step < 0) step *= -1; if (a > b) { min = b; max = a; } else if (a < b) { min = a; max = b; } else if (a == b) answer = a; for (int i = min; i <= max; i++) { answer += i; } return answer; }
300x250
'Algorithm > Programmers' 카테고리의 다른 글
[Summer/winter Coding ~ (2018)] 스킬트리 (0) | 2020.08.07 |
---|---|
[Level1]소수의 합(에라토스테네스의 체) [연습문제] C/C++ (0) | 2018.10.02 |
[Level1] 문자열 내림차순으로 배치하기 [연습문제] C/C++ (0) | 2018.09.20 |
[Level1] 문자열 내 마음대로 정렬하기[연습문제] C/C++ (0) | 2018.09.20 |
[Level1] 문자열 내 p와 y의 개수 [연습문제] C/C++ (0) | 2018.09.20 |
댓글