답안 #125492

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
125492 2019-07-05T13:29:30 Z MoNsTeR_CuBe 웜뱃 (IOI13_wombats) C++17
0 / 100
17 ms 15992 KB
#include "wombats.h"
#include <bits/stdc++.h>
using namespace std;

int row, col;

int sum = 0;

int h[5000][200];
int v[5000][200];

void init(int R, int C, int H[5000][200], int V[5000][200]) {
    row = R;
    col = C;
    
	for(int i = 0; i < 5000; i++){
		for(int j = 0; j < 200; j++){
			h[i][j] = H[i][j];
			v[i][j] = V[i][j];
		}
	}
    
    if(C == 1){
		for(int i = 0; i < row; i++){
			col += V[i][0];
		}
		return;
	}    
    
}

void changeH(int P, int Q, int W) {
    if(col == 1){
		sum += W - h[P][Q];
		return;
	}
}

void changeV(int P, int Q, int W) {
    if(col == 1){
		sum += W - v[P][Q];
		return;
	}
}

int escape(int V1, int V2) {
    if(col == 1){
		return sum;
	}
}

Compilation message

grader.c: In function 'int main()':
grader.c:15:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
  int res;
      ^~~
wombats.cpp: In function 'int escape(int, int)':
wombats.cpp:50:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
# 결과 실행 시간 메모리 Grader output
1 Correct 14 ms 12280 KB Output is correct
2 Incorrect 14 ms 12152 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 11 ms 8184 KB Output is correct
2 Incorrect 12 ms 8184 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 14 ms 8440 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 17 ms 15992 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 14 ms 8568 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 14 ms 8440 KB Output isn't correct
2 Halted 0 ms 0 KB -