알고리즘 - SWEA/D3

    [SW expert Academy] SWEA 1228번 암호문1 자바(Java)

    [D3] [S/W 문제해결 기본] 8일차 - 암호문1 - 1228 문제 링크 성능 요약 메모리: 23,816 KB, 시간: 152 ms, 코드길이: 892 Bytes 제출 일자 2023-10-28 04:16 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com import java.util.*; class Solution { public static void main(String args[]) throws Exception { Scanner sc = new Scanne..

    [SW expert Academy] SWEA 1213번 String 자바(Java)

    [D3] [S/W 문제해결 기본] 3일차 - String - 1213 문제 링크 성능 요약 메모리: 22,584 KB, 시간: 144 ms, 코드길이: 455 Bytes 제출 일자 2023-10-28 03:37 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; class Solution { public static void main(String args[]) throws Exception { Scanner sc = new Scanner(System.in); for(int tc = 1; tc

    [SW expert Academy] SWEA 10570번 제곱 팰린드롬 수 자바(Java)

    [D3] 제곱 팰린드롬 수 - 10570 문제 링크 성능 요약 메모리: 20,576 KB, 시간: 140 ms, 코드길이: 918 Bytes 제출 일자 2023-10-27 16:59 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; class Solution { public static void main(String args[]) throws Exception { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for(int tc = 1; tc

    [SW expert Academy] SWEA 12221번 구구단2 자바(Java)

    [D3] 구구단2 - 12221 문제 링크 성능 요약 메모리: 20,508 KB, 시간: 127 ms, 코드길이: 349 Bytes 제출 일자 2023-10-27 16:52 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; class Solution { public static void main(String args[]) throws Exception { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for(int tc = 1; tc

    [SW expert Academy] SWEA 1217번 거듭 제곱 자바(Java)

    [D3] [S/W 문제해결 기본] 4일차 - 거듭 제곱 - 1217 문제 링크 성능 요약 메모리: 20,736 KB, 시간: 123 ms, 코드길이: 289 Bytes 제출 일자 2023-10-27 16:44 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; class Solution { public static void main(String args[]) throws Exception { Scanner sc = new Scanner(System.in); for(int tc = 1; tc

    [SW expert Academy] SWEA 1225번 암호생성기 자바(Java)

    [D3] [S/W 문제해결 기본] 7일차 - 암호생성기 - 1225 문제 링크 성능 요약 메모리: 28,416 KB, 시간: 170 ms, 코드길이: 914 Bytes 제출 일자 2023-10-27 16:36 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; import java.util.LinkedList; import java.util.Queue; class Solution { public static void main(String args[]) throws Exception { Scanner sc = new Scanner(System.in); for(in..

    [SW expert Academy] SWEA 1220번 Magnetic 자바(Java)

    [D3] [S/W 문제해결 기본] 5일차 - Magnetic - 1220 문제 링크 성능 요약 메모리: 109,496 KB, 시간: 329 ms, 코드길이: 1,292 Bytes 제출 일자 2023-10-27 16:16 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com import java.util.Scanner; import java.util.Stack; class Solution { static int SIZE = 100; public static void ma..

    [SW expert Academy] SWEA 2817번 부분 수열의 합 자바(Java)

    [D3] 부분 수열의 합 - 2817 문제 링크 성능 요약 메모리: 22,684 KB, 시간: 164 ms, 코드길이: 853 Bytes 제출 일자 2023-10-27 14:54 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; class Solution { static int n,k,result; public static void main(String args[]) throws Exception { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for(int tc = 1; tc k){ return; ..