# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
3572 | BalloonCollector | King of penalty (kriii1_K) | C++98 | 24 ms | 1868 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <cstdio>
#include <algorithm>
using namespace std;
int n,re;
long long a[100001],s;
long long p,pn,sum;
int main(void){
scanf("%lld %d",&p,&n);
for(int i=0; i<n; i++)
scanf("%d",&a[i]);
sort(a,a+n);
re = -1;
for(int i=0; i<n; i++){
if(s+a[i]>=p){
re=i;
break;
}
else s+=a[i];
}
if( re == -1 )
re = n;
sum=(long long)(p-s-1);
for(int j=re-1; j>=0; j--){
pn+=sum+a[j];
sum+=a[j];
}
printf("%d %lld",re,pn);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |