# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
698509 | dattranxxx | Palindromic Partitions (CEOI17_palindromic) | C++11 | 174 ms | 44292 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int M = 1e9 + 696969;
struct Hash {
int x; unsigned long long y;
Hash(int x = 0): x(x), y(x) {}
friend Hash operator + (Hash u, const Hash& v) {
u.x += v.x; u.y += v.y;
if (u.x >= M) u.x -= M;
return u;
}
friend Hash operator - (Hash u, const Hash& v) {
u.x -= v.x; u.y -= v.y;
if (u.x < 0) u.x += M;
return u;
}
friend Hash operator * (Hash u, const Hash& v) {
u.x = 1LL * u.x * v.x % M;
u.y = u.y * v.y;
return u;
}
friend bool operator == (const Hash& u, const Hash& v) {
return u.x == v.x && u.y == v.y;
}
};
using ull = Hash;
# | 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... |