일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코틀린
- 백준
- 프로그래머스
- 리액트
- 프로그래밍 언어론
- 코딩테스트 고득점 Kit
- NextJS
- vanillaJS
- 장고
- design pattern
- JavaScript
- Java
- codesandbox
- react
- useEffect
- 코딩테스트 고득점 Kit 완전탐색
- 리액트 훅
- react firebase
- 프로그래머스 완전탐색
- react hook
- 자바스크립트
- 자바
- 프로그래머스 자바
- websocket
- useState
- 컴퓨터 네트워크
- React JS
- 디자인 패턴
- 자바 공부
- 데이터모델링과마이닝
Archives
- Today
- Total
목록11724 자바 (1)
기록하는 개발자
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cBFXZb/btq9jFGUabT/C65h3eTZClVijsaPQvJJK0/img.png)
import java.io.*; import java.util.*; public class Main{ static int[][] adjacent= new int[1001][1001]; static boolean[] checked= new boolean[1001]; static int n,m; public static void main(String[] args) throws IOException { Scanner s = new Scanner(System.in); n = s.nextInt(); m = s.nextInt(); for(int i = 0; i < m; i++) { int x = s.nextInt(); int y = s.nextInt(); adjacent[x][y] = adjacent[y][x] =..
Algorithm
2021. 7. 11. 15:57