1339. 你的旅途由此开始简单 / 模拟
Posted 辉小歌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1339. 你的旅途由此开始简单 / 模拟相关的知识,希望对你有一定的参考价值。
https://www.acwing.com/problem/content/1341/
#include<bits/stdc++.h>
using namespace std;
const int mod=47;
int get(string s)
{
int sum=1;
for(int i=0;i<s.size();i++) sum=sum*(s[i]-'A'+1)%47;
return sum;
}
int main(void)
{
string a,b; cin>>a>>b;
if(get(a)==get(b)) puts("GO");
else puts("STAY");
return 0;
}
以上是关于1339. 你的旅途由此开始简单 / 模拟的主要内容,如果未能解决你的问题,请参考以下文章