# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
597149 | Valaki2 | Cubeword (CEOI19_cubeword) | C++14 | 954 ms | 7380 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;
#define int long long
#define pb push_back
#define mp make_pair
#define pii pair<int, int>
#define fi first
#define se second
const int mod = 998244353;
const int maxn = 2e5;
const int min_l = 3;
const int max_l = 10;
const int max_ch = 6;
int combinations[max_l + 1][max_ch][max_ch];
int convert(char ch) {
if(ch >= 'a' && ch <= 'p') {
return ch - 'a';
}
if(ch >= 'q' && ch <= 'z') {
return ch - 'q' + 32;
}
if(ch >= 'A' && ch <= 'P') {
return ch - 'A' + 16;
}
if(ch >= 'Q' && ch <= 'Z') {
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... |