Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
115076 徐毅然 奇怪的国家 C++ Accepted 1 MS 272 KB 321 2025-03-29 08:14:18

Tests(10/10):


Code:

#include<iostream> #include<cstring> using namespace std; int main(){ int c=0; string a; string b; cin>>a>>b; int len =a.length(); for(int i=0;i<len;i++){ if(a[i]==b[i]){ cout<<"1"; }else{ cout<<"0"; } } return 0; }