반응형
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 |
Tags
- ssafy 7기
- SSAFY 입학식
- 백준7576 bfs
- Learning
- bfs
- SWEA
- SSAFY
- React
- 전이학습
- SSAFYcial
- 삼성청년sw아카데미
- SSAFY 8기
- ssafy 7기 교수님
- 코딩교육
- 알고리즘
- 프로그래머스 고득점 kit
- 웹 표준 사이트 만들기
- DP
- DenseNet
- ssafy 7기 합격
- 프로그래머스
- 이코테
- 코딩 교육
- 백준
- git
- 삼성 청년 SW 아카데미
- dfs
- 유니온 파인드
- pytorch
- 싸피 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