记录编号 | 576467 | 评测结果 | AAAAAAAAAAAAAAAAAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 无尽方格 | 最终得分 | 100 | ||
用户昵称 | ムラサメ | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.054 s | ||
提交时间 | 2022-10-10 11:24:56 | 内存使用 | 1.00 MiB | ||
#include<bits/stdc++.h> using namespace std; string s1,s2; int main(){ freopen("wjfg.in","r",stdin); freopen("wjfg.out","w",stdout); ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); while(cin>>s1>>s2){ if(s1=="**"||s2=="**")cout<<"sbsyb"<<endl; else if(s1==s2)cout<<"sbsyb"<<endl; else cout<<"ngm"<<endl; } return 0; }