# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
995270 | gmroh06 | Dango Maker (JOI18_dango_maker) | C++14 | 105 ms | 19056 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>
using ll = long long;
inline void fastio() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
std::cout.tie(nullptr);
}
ll n, m, ans;
std::string s[3030];
std::vector<ll> ver, hor;
int main() {
fastio();
std::cin >> n >> m;
for (ll i = 0; i < n; i++) {
std::cin >> s[i];
}
for (ll i = 0; i < n + m; i++) {
ver = std::vector<ll>();
hor = std::vector<ll>();
for (ll j = 0; j < n; j++) {
ll k = 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... |