Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118758 | 吴天辰 | 奇怪的国家 | C++ | Accepted | 1 MS | 272 KB | 218 | 2025-05-10 11:58:53 |
#include<bits/stdc++.h> using namespace std; int main(){ char x[55],l[55]; int b=0,m=0; gets(x); gets(l); b=strlen(x); for(int i=0;i<b;i++){ if(x[i]==l[i]){ cout<<1; } else cout<<0; } return 0; }