比赛 |
20190908之惊鸿 |
评测结果 |
AAAWWWWWWW |
题目名称 |
潜伏者 |
最终得分 |
30 |
用户昵称 |
Frost_Delay |
运行时间 |
0.005 s |
代码语言 |
C++ |
内存使用 |
13.66 MiB |
提交时间 |
2019-09-18 21:28:56 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
char a[200],b[200],c[200],x[200];
int main()
{
freopen("spy.in","r",stdin);
freopen("spy.out","w",stdout);
scanf("%s%s%s",a,b,c);
int l=strlen(a);
for(int i=0;i<l;i++)
{
if(x[a[i]]&&x[a[i]]!=b[i])
{cout<<"Failed"<<endl;return 0;}
x[a[i]]=b[i];
}
for(int i='A';i<='Z';i++)
for(int j='A';j<='Z';j++)
if(x[i]==x[j]&&i!=j)
{cout<<"Failed"<<endl;return 0;}
for(int i='A';i<='Z';i++)
{
if(!x[i])
{cout<<"Failed"<<endl;return 0;}
}
for(int i=0;i<=strlen(c);i++)
cout<<x[c[i]];
cout<<endl;
return 0;
}