Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
46133 奚晨瑞 1.1.1 Your Ride Is Here 你的飞碟在这儿 C++ 无测评数据 0 MS 0 KB 344 2024-04-26 15:48:14

Tests(0/0):


#include<iostream> #include<cstring> using namespace std; char a[7],b[7]; int main() { cin>>a>>b; int S1,S2; S1=1; S2=1; for(int i=0;i<strlen(a);i++){ S1*=(a[i]-'A'+1); } for(int i=0;i<strlen(b);i++){ S2*=(b[i]-'A'+1); } S1%=47; S2%=47; if(S1==S2){ cout<<"GO"; } else{ cout<<"STAY"; } return 0; }