목록전체 글 (245)
일상 코딩
https://www.acmicpc.net/problem/17406 17406번: 배열 돌리기 4 크기가 N×M 크기인 배열 A가 있을때, 배열 A의 값은 각 행에 있는 모든 수의 합 중 최솟값을 의미한다. 배열 A가 아래와 같은 경우 1행의 합은 6, 2행의 합은 4, 3행의 합은 15이다. 따라서, 배열 A의 www.acmicpc.net from copy import deepcopy N,M,K = map(int,input().split()) A = [ list(map(int,input().split())) for _ in range(N) ] Q = [ tuple(map(int,input().split())) for _ in range(K)] dx, dy = [1,0,-1,0], [0,-1,0,1] a..
1.출처 https://www.inflearn.com/questions/322413 맥북(mac os) 자동 채점 방법을 고민해보았습니다. - 인프런 | 질문 & 답변 출력값이 긴 파일은 하나씩 눈으로 보고 체크하기가 어려워서 방법을 찾아보았습니다. 별다른 설치 파일 필요 없이 그냥 리눅스 명령어로 만들어진 쉘 스크립트만 생성해주면 되므로 간단합니 www.inflearn.com 2. 쉘 스크립트 생성 #!/bin/bash g++ code.cpp -o code "./code" "./test/in1.txt" "./test/result1.txt" "./code" "./test/in2.txt" "./test/result2.txt" "./code" "./test/in3.txt" "./test/result3.txt..
https://www.acmicpc.net/problem/1074 1074번: Z 한수는 크기가 2N × 2N인 2차원 배열을 Z모양으로 탐색하려고 한다. 예를 들어, 2×2배열을 왼쪽 위칸, 오른쪽 위칸, 왼쪽 아래칸, 오른쪽 아래칸 순서대로 방문하면 Z모양이다. N > 1인 경우, 배열을 www.acmicpc.net N,r,c = map(int, input().split()) def Z(size, x,y): if size == 1: return 0 size = size // 2 for i in range(2): for j in range(2): if x < size * (i+1) and y < size *(j+1): return (2*i + j)*(size**2) + Z(size, x-i*size, ..
#include using namespace std; int main(){ // input.txt 파일로 데이터를 받는다. freopen("input.txt", "rt", stdin); int N, i, age, max = -2147000000, min = 2147000000; cin >> N; for(i = 0; i > age; if( age > max){ max = age;} if( age < min){ min = age;} } cout
#include using namespace std; int main(){ int n, i, sum = 1; cin >> n; cout
출처 https://blog.roboflow.com/m1-opencv/ How to Safely Install OpenCV on the Mac M1 Installing OpenCV on the M1 safely is difficult because the M1 operates on an arm64 architecture and most of your python libraries are compiled for amd64. Open this guide to avoid your otherwise inevitable demise. blog.roboflow.com 1. miniconda3 설치 (python 가상환경 만들기 위함) 아래 링크로 들어가서 설치 방법대로 설치한다. https://polarcompas..
#include using namespace std; int main(){ int n, m, i, sum = 0; cin >> n >> m; for(i=n; i
#include using namespace std; int main(){ int n, m, i, sum = 0; cin >> n >> m; for(i=1; i
https://www.bigdata-map.kr/dashboard 통합 데이터 지도 통합 데이터 지도는 빅데이터 플랫폼 및 센터가 생산 유통한 공공‧민간 데이터를 쉽게 연계∙활용할 수 있도록 합니다. 데이터를 친숙하게 이용하고 나아가 데이터 거래의 장을 구축하여 데이 www.bigdata-map.kr