Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
111286 | 魏宏搏 | 奇怪的国家 | C++ | Accepted | 1 MS | 276 KB | 238 | 2025-03-01 11:29:56 |
#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; }