| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155493 | 李沐阳 | 奇怪的国家 | C++ | Accepted | 1 MS | 284 KB | 206 | 2026-06-07 12:24:06 |
#include<bits/stdc++.h> using namespace std; int main() { char a[51],b[51]; cin>>a>>b; int n=strlen(a); for(int i=0;i<n;i++){ if(a[i]==b[i]) cout<<'1'; else cout<<'0'; } return 0; }