QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#743852 | #9629. 小 C 的神秘图形 | mapleKing | WA | 0ms | 3608kb | C++20 | 706b | 2024-11-13 20:10:35 | 2024-11-13 20:10:35 |
Judging History
answer
#include <bits/stdc++.h>
#pragma GCC optimize(2)
// using namespace std;
using i64 = long long;
using u32 = unsigned int;
using u64 = unsigned long long;
void solve() {
int n;
std::cin >> n;
std::string s1, s2;
std::cin >> s1 >> s2;
if (s1[0] < '2' && s2[0] < '2' || (s1[n - 1] == '1' || s2[n - 1] == '1')){
std::cout << 1 << "\n";
}else{
std::cout << 0 << "\n";
}
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
// std::cout << std::fixed << std::setprecision(10); // 固定输出精度
int t = 1;
// std::cin >> t;
while (t--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3608kb
input:
96 122100012110202022211102020101110122101010001012220001000222210100222112111020002212000222012022 010112102102202201211121022102211110211010101020001021100101110202100010112221022001101222101102
output:
1
result:
wrong answer 1st lines differ - expected: '0', found: '1'