# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
9482 | sior | On grid (kriii2_O) | C++98 | 0 ms | 2384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <string.h>
#include <algorithm>
#include <utility>
using namespace std;
#define INF 987654
int cache[301][301];
int board[301][301];
int numOfX, numOfY;
int gridSum(int y1, int x1, int y2, int x2);
int generate(int y_here, int x_here/*현재 위치*/);
int main()
{
cin >> numOfX >> numOfY;
memset(cache, -1, sizeof(cache));
for (int y = 0; y < numOfY; y++)
{
for (int x = 0; x < numOfX; x++)
{
cin >> board[y][x];
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |