# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
544740 | rainboy | Genetics (BOI18_genetics) | C11 | 723 ms | 33392 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#define N 4100
#define M 4100
#define MD 0x7fffffff
#define X 12345
#define Y 54321
int px[N], py[N];
void init() {
int i;
px[0] = py[0] = 1;
for (i = 1; i < N; i++) {
px[i] = (long long) px[i - 1] * X % MD;
py[i] = (long long) py[i - 1] * Y % MD;
}
}
int main() {
static char cc[N][M + 1];
static long long xx[N], yy[N];
int n, m, d_, h, i, j, x, y;
init();
scanf("%d%d%d", &n, &m, &d_);
for (i = 0; i < n; i++)
scanf("%s", cc[i]);
for (i = 0; i < n; i++) {
컴파일 시 표준 에러 (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... |