| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136262 | 彭士宝 | 奇怪的国家 | C++ | Wrong Answer | 0 MS | 276 KB | 267 | 2025-11-09 23:23:25 |
#include <bits/stdc++.h> using namespace std; int main() { string a, b; cin >> a >> b; string result; for (size_t i = 0; i < a.size(); ++i) { result += (a[i] == b[i]) ? '0' : '1'; } cout << result << endl; return 0; }
------Input------
10110100100100010000 10101100010101011100
------Answer-----
11100111001110110011
------Your output-----
00011000110001001100