반응형
250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 유니온 파인드
- 프로그래머스 고득점 kit
- 웹 표준 사이트 만들기
- SSAFY 8기
- 알고리즘
- 백준
- 코딩교육
- dfs
- 삼성 청년 SW 아카데미
- 백준7576 bfs
- SSAFY
- pytorch
- 삼성청년sw아카데미
- React
- DP
- 코딩 교육
- 프로그래머스
- SWEA
- Learning
- SSAFY 입학식
- DenseNet
- bfs
- git
- ssafy 7기 교수님
- 이코테
- SSAFYcial
- 싸피 7기 입학식
- ssafy 7기 합격
- ssafy 7기
- 전이학습
Archives
- Today
- Total
목록SWEA 달팽이숫자 자바 (1)
개미의 개열시미 프로그래밍
[알고리즘] SWEA 달팽이 숫자 - 자바
[전체 풀이 코드] import java.util.Arrays; import java.util.Scanner; public class 달팽이숫자 { static int[] dy = {0, 1, 0, -1}; static int[] dx = {1, 0, -1, 0}; static int[][] graph; public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); int T; T=sc.nextInt(); for(int test_case = 1; test_case
알고리즘/SWEA
2022. 2. 3. 20:52