initial commit
This commit is contained in:
parent
fd205ff210
commit
95ef276560
38
34B Sale/34B.cpp
Normal file
38
34B Sale/34B.cpp
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
#include<bits/stdc++.h>
|
||||||
|
using namespace std;
|
||||||
|
using ll = long long;
|
||||||
|
|
||||||
|
|
||||||
|
void solve()
|
||||||
|
{
|
||||||
|
int n,m;
|
||||||
|
cin>>n>>m;
|
||||||
|
vector<int>v;
|
||||||
|
for(int i=0; i<n; ++i)
|
||||||
|
{
|
||||||
|
int x;
|
||||||
|
cin>>x;
|
||||||
|
v.push_back(x);
|
||||||
|
}
|
||||||
|
sort(v.begin(),v.end());
|
||||||
|
int sum=0;
|
||||||
|
for(int i=0; i<m; ++i)
|
||||||
|
{
|
||||||
|
if(v[i]>=0)
|
||||||
|
break;
|
||||||
|
else
|
||||||
|
sum+=abs(v[i]);
|
||||||
|
}
|
||||||
|
cout<<sum<<endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
ios_base::sync_with_stdio(false);
|
||||||
|
cin.tie(nullptr);
|
||||||
|
|
||||||
|
int TC = 1;
|
||||||
|
//cin >> TC;
|
||||||
|
//cin.ignore();
|
||||||
|
while (TC--) solve();
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user