Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
119004 | 黄睿杰 | 奇怪的国家 | C++ | Wrong Answer | 1 MS | 260 KB | 218 | 2025-05-11 17:24:59 |
#include<bits/stdc++.h> using namespace std; char a[100],b[100]; int main(){ gets(a); gets(b); int l=strlen(a); for(int i=1;i<=l;i++){ if(a[i]==b[i]) cout<<"1"; else cout<<"0"; } return 0; }
------Input------
10110100100100010000 10101100010101011100
------Answer-----
11100111001110110011
------Your output-----
11001110011101100111