记录编号 |
548591 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2017PJ]成绩 |
最终得分 |
100 |
用户昵称 |
发光二向箔 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2020-01-27 11:39:52 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int INF=0x3f3f3f3f;
const int ING=0xc0c0c0c0;
typedef long long ll;
typedef unsigned long long ull;
inline int read () {
int s=0,w=1;
char ch=getchar();
while (ch<'0'||ch>'9') {if (ch=='-')w=-1;ch=getchar();}
while (ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
return s*w;
}
inline void write(int x)
{
if(x < 0) putchar('-'),x = -x;
if(x > 9) write(x / 10);
putchar(x % 10 + '0');
}
int gain()
{
//ios::sync_with_stdio(false); //greater<int>()
freopen("nscore.in","r",stdin);
freopen("nscore.out","w",stdout);
short a,b,c,d;
scanf("%hd%hd%hd",&a,&b,&c);
d=0.2*a+0.3*b+0.5*c;
printf("%d\n",d);
return 0;
}
int ss=gain();
int main(){;}