728x90
두 정수 사이의 합
문제 설명
고등학교때 배웠던 등차수열의 합 공식을 생각하면 쉬운문제다.
문제 풀이
소스코드 : C++
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
long long solution(int a, int b) {
return (long long)(abs(a-b)+1)*(a+b)/2;
}
소스코드 : Python
def solution(a, b):
return (abs(a-b))*(a+b)//2
728x90
300x250