#1569: ans


1654359-9@g.puiching.edu.mo (P6D03江艾霖)

School : Pui Ching Middle School
ID : 3008
IP address : [192.168.120.33]
Last Login :
2024-07-03 18:35:30
a933. ISBN碼 -- NOIP2008 普及組複賽第1題 | From: [192.168.120.33] | Post Date : 2024-05-22 11:37

#include<bits/stdc++.h>
using namespace std;
int main()
{
	string detect;
	cin>>detect;
	string mod="0123456789X";
	int num=0;
	int k=1;
	for(int i=0;i<detect.size()-1;i++){
		if(detect[i]>='0'&&detect[i]<='9'){
			num+=(detect[i]-'0')*(k++);
		}
	}
	if(mod[num%11]==detect[detect.size()-1]) cout<<"Right";
	else{
		detect[detect.size()-1]=mod[num%11];
		cout<<detect;
	}
	return 0;
}
 
ZeroJudge Forum