| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 157013 | 邓弘锐 | 奇怪的国家 | C++ | Accepted | 1 MS | 284 KB | 264 | 2026-07-12 14:43:00 |
#include<bits/stdc++.h> using namespace std; char s1[10086],s2[10086]; int main(){ cin>>s1>>s2; int len = strlen(s1); for(int i=0;i<=len-1;i++){ if(s1[i]==s2[i]){ cout<<1; } if(s1[i]!=s2[i]){ cout<<0; } } return 0; }