# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
463964 | tengiz05 | Game (eJOI20_game) | C++17 | 1091 ms | 252 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
constexpr int N = 25;
char hor[N][N], ver[N][N];
bool vis[N][N];
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int n, m;
std::cin >> n >> m;
for (int i = 0; i <= n; i++) {
for (int j = 0; j < m; j++) {
std::cin >> hor[i][j];
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j <= m; j++) {
std::cin >> ver[i][j];
}
}
std::vector<int> a;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (vis[i][j])
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |