记录编号 |
55137 |
评测结果 |
WAAWWWWAWA |
题目名称 |
[NOIP 2008]ISBN号码 |
最终得分 |
40 |
用户昵称 |
Ezoi_Ysx |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.007 s |
提交时间 |
2013-03-15 17:14:14 |
内存使用 |
2.83 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#define LOCAL
using namespace std;
int main()
{
#ifdef LOCAL
freopen("isbn.in","r",stdin);
freopen("isbn.out","w",stdout);
#endif
char z,n;
int a,x,y,s;
int b,c,d,e,f,g,h,i;
cin >> a >> x >> y >> n >> z;
x=-x;
y=-y;
b=x/100;
d=x%10;
c=(x%100-d)/10;
e=y/10000;
f=y/1000-10*e;
g=y/100-100*e-10*f;
i=y%10;
h=(y%100-i)/10;
s=a*1+b*2+c*3+d*4+e*5+f*6+g*7+h*8+i*9;
s=s%11;
{ if(s==z)
{ cout <<"Right";}
else if(s==10&&z=='x')
{ cout <<"Right";}
else if(s==10)
{cout << a << -x << -y << "x";}
else
{ cout << a << -x << -y << -s;}}
// system("pause");
return 0;
}