QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#322192 | #3348. Communication Channels | duongnc000 | WA | 1ms | 3576kb | C++20 | 1.5kb | 2024-02-06 14:25:54 | 2024-02-06 14:25:54 |
Judging History
answer
/*
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("avx2,fma,bmi,bmi2,sse4.2,popcnt,lzcnt")
*/
#include <bits/stdc++.h>
#define taskname ""
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define i64 long long
#define pb push_back
#define ff first
#define ss second
#define isz(x) (int)x.size()
using namespace std;
const int mxN = 2e5 + 5;
const int mod = 1e9 + 7;
const i64 oo = 1e18;
int n;
string s, t;
void solve() {
cin >> s >> t;
if (isz(s) != isz(t)) {
cout << "ERROR" << "\n";
return;
}
n = isz(s);
int cnt[2] = {0, 0};
for (int i = 0; i < n; ++i) cnt[s[i] != t[i]]++;
if (cnt[0] == cnt[1]) cout << "ERROR" << "\n";
else cout << "OK" << "\n";
}
signed main() {
#ifndef CDuongg
if(fopen(taskname".inp", "r"))
assert(freopen(taskname".inp", "r", stdin)), assert(freopen(taskname".out", "w", stdout));
#else
freopen("bai3.inp", "r", stdin);
freopen("bai3.out", "w", stdout);
auto start = chrono::high_resolution_clock::now();
#endif
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int t = 1; cin >> t;
while(t--) solve();
#ifdef CDuongg
auto end = chrono::high_resolution_clock::now();
cout << "\n"; for(int i = 1; i <= 100; ++i) cout << '=';
cout << "\nExecution time: " << chrono::duration_cast<chrono::milliseconds> (end - start).count() << "[ms]" << endl;
cout << "Check array size pls sir" << endl;
#endif
}
详细
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3576kb
input:
100 1 01 011101000011110110101001110010110111111001111100100000110101010101100001010110000110111000001 011101000011111110101001110010110111111001111100100000110101010101100101010110000110111000001 000001111001001110101001110001010011111010011000010100010101010011100101110111000111100110001000111101 ...
output:
ERROR OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK OK
result:
wrong answer 2nd lines differ - expected: 'ERROR', found: 'OK'