Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112288 | 黎瑾萱 | 奇怪的国家 | C++ | Accepted | 1 MS | 280 KB | 228 | 2025-03-09 11:47:43 |
#include <bits/stdc++.h> using namespace std; int main() { string a,b; cin>>a>>b; int len = a.size(); for(int i=0;i<len;i++){ if(a[i]==b[i]){ cout<<'1'; } else{ cout<<'0'; } } return 0; }