#include <iostream>
#include <vector>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int start,end; cin>>start>>end;
vector<int>v;
for(int k=1; k<=end; k++){
for(int i=0; i<k; i++){
v.push_back(k);
}
}
int ans=0;
for(int i=start-1; i<end; i++){
ans+=v[i];
}
cout<<ans;
}
'Algorithm ๐ง๐ปโ๐ป > ๋ฐฑ์ค(BOJ)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค,c++] 1316๋ฒ - ๊ทธ๋ฃน ๋จ์ด ์ฒด์ปค (0) | 2021.11.04 |
---|---|
[๋ฐฑ์ค,c++] 13023๋ฒ - ABCDE (0) | 2021.11.04 |
[๋ฐฑ์ค,c++] 1302๋ฒ - ๋ฒ ์คํธ์ ๋ฌ (0) | 2021.11.04 |
[๋ฐฑ์ค,c++] 12851๋ฒ - ์จ๋ฐ๊ผญ์ง2 (0) | 2021.11.04 |
[๋ฐฑ์ค,c++] 12813๋ฒ - ์ด์ง์ ์ฐ์ฐ (0) | 2021.11.02 |
[๋ฐฑ์ค,c++] 12738๋ฒ - ๊ฐ์ฅ ๊ธด ์ฆ๊ฐํ๋ ๋ถ๋ถ ์์ด3 (0) | 2021.11.02 |
๋๊ธ