# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
100305 | tpoppo | Konj (COCI19_konj) | C++14 | 55 ms | 568 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int n;
using pii = pair<int,int>;
vector<pii> rot = {{1,0},{0,1},{0,-1},{-1,0}};
char mat[400][400];
void draw_point(int a,int b,int c,int d){
for(int x = min(a,c);x<=max(a,c);x++){
mat[x][b] = '@';
}
for(int y = min(b,d);y<=max(b,d);y++){
mat[a][y] = '@';
}
}
int mixp = 1e9;
int miyp = 1e9;
int maxp = -1e9;
int mayp = -1e9;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |