记录编号 |
453048 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[Codeforces 810A] A级证书 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2017-09-20 20:35:07 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
inline int get();
int n,k,ans;
double now;
int main()
{
freopen("Straight.in","r",stdin);
freopen("Straight.out","w",stdout);
n=get(),k=get();
for(int i=1;i<=n;i++)now+=get();
double temp=now/(double)n*10.0;
while(temp<((double)k-0.5)*10.0)
{
now+=k;ans++;
temp=now/(double)(n+ans)*10.0;
}
printf("%d",ans);
return 0;
}
inline int get()
{
int t=0;char c=getchar(),j=1;
while(!isdigit(c))
if(c=='-')j=-1,c=getchar();
else c=getchar();
while(isdigit(c))
t=(t<<3)+(t<<1)+c-'0',
c=getchar();
return j*t;
}