| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155496 | 王晏林 | 奇怪的国家 | C++ | Accepted | 1 MS | 280 KB | 225 | 2026-06-07 12:27:04 |
#include<bits/stdc++.h> using namespace std; int main(){ char m[51]={},n[51]={}; cin>>m>>n; int k=strlen(m); for(int i=0;i<k;i++){ if(m[i]==n[i]){ cout<<"1"; } else cout<<"0"; } return 0; }