# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1044659 | Nickpapadak | Game (eJOI20_game) | C++14 | 0 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const unsigned int MAXN = 2e+1 + 5;
int grid[MAXN][MAXN];
int N, M;
int cnt;
int main(){
scanf("%d%d", &N, &M);
char ps[M];
scanf("%s", ps);
for(int i = 1; i<=N; ++i){
char s[M];
scanf("%s", s);
for(int j = 1; j <=M;++j)
grid[i][j] = (ps[j-1]-'0') + (s[j-1]-'0');
for(int j = 0; j<M;++j){
ps[j] = s[j];
}
}
for(int i = 1; i<=N; ++i){
char s[M+1];
scanf("%s", s);
for(int j = 1; j<=M; ++j){
grid[i][j] += (s[j] -'0') + (s[j-1] - '0');
if(grid[i][j] == 4) cnt++;
}
}
printf("%d", -1*((N*M) - cnt));
// for(int i = 1; i<=N;++i){
// for(int j = 1; j <=M;++j){
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |