# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
73205 | test | 재채점 전쟁 (FXCUP3_judge) | C++14 | 1235 ms | 187704 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int MN = 500010;
int X, D, C;
int cnt1[1 << 20], cnt2[1 << 20];
int dp1[1 << 20][22], dp2[1 << 20][22];
int ans[MN];
int main() {
scanf("%d", &X);
scanf("%d", &D);
for(int i = 0; i < D; i++) {
getchar();
int mask = 0;
for(int j = 0; j < X; j++) {
char t = getchar();
if(t == 'o') mask ^= (1 << j);
}
cnt1[mask]++;
}
scanf("%d", &C);
for(int i = 0; i < C; i++) {
getchar();
int mask = 0;
컴파일 시 표준 에러 (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... |