| 记录编号 | 576592 | 评测结果 | AAAAAAAAAAAAAAAAAAAAAAAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 3764.无尽方格 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 1.742 s | ||
| 提交时间 | 2022-10-12 19:51:03 | 内存使用 | 2.34 MiB | ||
#include<iostream>
#include<string>
using namespace std;
string n,m;
int x,y;
int main()
{
freopen("wjfg.in","r",stdin);
freopen("wjfg.out","w",stdout);
while(cin>>n>>m)
{
if(n=="**"||m=="**"){cout<<"sbsyb"<<endl;continue;}
else if(n==m) cout<<"sbsyb"<<endl;
else cout<<"ngm"<<endl;
x=0,y=0;
}
}