记录编号 |
451518 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOI 2000]瓷片项链 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.001 s |
提交时间 |
2017-09-17 20:09:07 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cstdio>
#include<cmath>
#include<iostream>
using namespace std;
inline int get();
int ans;
double v,vo;
double temp;
int main()
{
freopen("ring.in","r",stdin);
freopen("ring.out","w",stdout);
v=get();vo=get();
temp=v/vo/2;
if(temp-(int)temp!=0.5)ans=temp;
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;
}