일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- java
- 컬렉션프레임워크
- 데이터내보내기
- docker 명령어
- db종류
- 티스토리챌린지
- IntelliJ
- ANTIFRAGILE
- Python
- docker
- 애널리틱스4
- gtihub
- 도커이미지
- git branch 삭제
- bigquery
- pat발급
- spring
- JPA
- 11월순위
- JPQL
- 오블완
- 명령어
- analytics4
- DBMS
- git pat
- codeium
- datagrip
- ci/cd
- 르세라핌
- Today
- Total
목록Study (45)
hanker
이번에 프로젝트 진행하면서 멀티 티어로 구축을 하게 되었는데, NCP(Naver Cloud Platform) VPC를 이용해서 작업할 예정이다. VPC가 무엇인지 정리해본다.. VPC(Virtual Private Cloud)클라우드 환경에서 사용자에게 논리적으로 분리된 네트워크 공간을 제공하는 서비스이다. 여기에서 논리적으로 분리된 네트워크란 공유 인프라: VPC를 사용하는 여러 사용자는 실제로는 같은 물리적 서버와 네트워크 장비를 공유하고 있지만, 클라우드 서비스 제공자의 네트워크 가상화 기술을 통해 각 사용자는 자신만의 독립된 네트워크 공간을 가지게 됨분리된 환경: 사용자는 VPC 내에서 IP 주소 범위를 지정하고, 서브넷을 설정하고, 보안 그룹을 정의하여 마치 자신만의 독립된 네트워크를 관리하는 ..
import java.util.Scanner; public class Main { public static StringBuilder sb = new StringBuilder(); public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sb.append((int) (Math.pow(2, n) - 1)).append('\n'); Move(n, 1, 2, 3); System.out.println(sb); } static void Move(int n, int A, int B, int C){ if(n == 1){ sb.append(A + " " + C + "\n"); return; } Mov..
import java.io.*; public class Main { private static final String zero = " "; private static final String s = "*"; public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); int n = Integer.parseInt(bf.readLine()); for(int i = 0 ; i < n ; i++){ fo..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int tmp = 0; int befNum = 1, aftNum = 1; if(n == 1 || n == 2){ tmp = 1; } else { for(int i = 3 ; i
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int val = 0; int tmp = n; if(n == 0){ System.out.println(1); } else { for(int i = 1 ; i
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); for(int i = 0 ; i < n ; i++){ int x1 = sc.nextInt(); int y1 = sc.nextInt(); int r1 = sc.nextInt(); int x2 = sc.nextInt(); int y2 = sc.nextInt(); int r2 = sc.nextInt(); int v = (int)(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)); double plusR = Math.pow(..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); double euclid = Math.PI * (Math.pow(n, 2)); double taxicap = 2 * (Math.pow(n, 2)); System.out.println(String.format("%.6f", euclid)); System.out.println(String.format("%.6f", taxicap)); } }
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(true){ int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); if(a == 0 && b == 0 && c == 0){ break; } if((a * a) + (b * b) == c * c){ System.out.println("right"); } else if((c * c) + (b * b) == a * a){ System.out.println("right"); } else if((a * a) + (c * ..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int d = sc.nextInt(); int e = sc.nextInt(); int f = sc.nextInt(); int x = a; int y = b; if(x == c){ x = e; } else if (x == e){ x = c; } if(y == d){ y = f; } else if(y == f){ y = d; } System.out.println(x + " ..
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int w = sc.nextInt(); int h = sc.nextInt(); int xLen = Math.min(x, w-x); int yLen = Math.min(y, h-y); System.out.println(Math.min(xLen, yLen)); } }