# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
904799 | andrei_iorgulescu | Cubeword (CEOI19_cubeword) | C++14 | 1136 ms | 20200 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 namespace std;
const int S = 62;
const int modulo = 998244353;
vector<string>cuv[15];
int cst[S][S];
int cost[S][S][S];
int toint(char c)
{
if (c >= 'a' and c <= 'z')
return c - 'a';
else if (c >= 'A' and c <= 'Z')
return 26 + c - 'A';
else
return 52 + c - '0';
}
bool palint(string s)
{
for (int i = 1; i < s.size() - 1; i++)
if (s[i] != s[s.size() - 1 - i])
return false;
return true;
}
string inv(string s)
{
Compilation message (stderr)
# | 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... |