일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- react firebase
- 코틀린
- 리액트 훅
- JavaScript
- websocket
- React JS
- 자바 공부
- 프로그래머스 완전탐색
- react
- Java
- 프로그래밍 언어론
- codesandbox
- 백준
- 코딩테스트 고득점 Kit 완전탐색
- NextJS
- 코딩테스트 고득점 Kit
- design pattern
- 리액트
- 디자인 패턴
- useEffect
- 장고
- react hook
- 컴퓨터 네트워크
- 자바
- 데이터모델링과마이닝
- 자바스크립트
- vanillaJS
- useState
- 프로그래머스
- 프로그래머스 자바
- Today
- Total
목록백준 자바 JAVA (3)
기록하는 개발자
import java.io.IOException; import java.util.Scanner; public class Main{ static int[][] adjacent; static boolean[][] checked; static int n,m,k,T,temp; static StringBuilder sb = new StringBuilder(); public static void main(String[] args) throws IOException { Scanner s = new Scanner(System.in); T = s.nextInt();//테스트케이스 개수 for(int j=0; j= m) //좌표값이 잘못된 경우 return false; if(checked[row][col] == true ..
import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner s = new Scanner(System.in); int n=s.nextInt(); int cost[][]=new int[n][3]; int color[][]=new int[n][3]; for(int i=0; i
import java.io.IOException; import java.util.Scanner; public class Main{ static int[][] adjacent; //컴퓨터 연결상태 static boolean[] checked; //확인 여부 static int n,m,num=0; public static void main(String[] args) throws IOException { Scanner s = new Scanner(System.in); n = s.nextInt(); m = s.nextInt(); adjacent = new int[n+1][n+1]; checked = new boolean[n+1]; for(int i = 0; i < m; i++) { int x = s.nextIn..