알고리즘 - SWEA/D4

    [SW expert Academy] SWEA 3752번 가능한 시험 점수 자바(Java)

    [D4] 가능한 시험 점수 - 3752 문제 링크 성능 요약 메모리: 108,640 KB, 시간: 755 ms, 코드길이: 968 Bytes 제출 일자 2023-11-16 10:07 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.HashSet; import java.util.Iterator; import java.util.Scanner; class Solution { static HashSet result; public static void main(String args[]) throws Exception { Scanner sc = new Scanner(System.in)..

    [SW expert Academy] SWEA 1232번 사칙연산 자바(Java)

    [D4] [S/W 문제해결 기본] 9일차 - 사칙연산 - 1232 문제 링크 성능 요약 메모리: 43,556 KB, 시간: 198 ms, 코드길이: 1,704 Bytes 제출 일자 2023-11-16 09:40 출처: 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 1224번 계산기3 자바(Java)

    [D4] [S/W 문제해결 기본] 6일차 - 계산기3 - 1224 문제 링크 성능 요약 메모리: 21,180 KB, 시간: 138 ms, 코드길이: 1,604 Bytes 제출 일자 2023-11-15 10:56 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; import java.util.Stack; 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 1223번 계산기2 자바(Java)

    [D4] [S/W 문제해결 기본] 6일차 - 계산기2 - 1223 문제 링크 성능 요약 메모리: 20,824 KB, 시간: 131 ms, 코드길이: 1,186 Bytes 제출 일자 2023-11-15 10:09 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; import java.util.Stack; 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 1222번 계산기1 자바(Java)

    [D4] [S/W 문제해결 기본] 6일차 - 계산기1 - 1222 문제 링크 성능 요약 메모리: 20,628 KB, 시간: 134 ms, 코드길이: 644 Bytes 제출 일자 2023-11-15 09:38 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; import java.util.Stack; class Solution { public static void main(String args[]) throws Exception { Scanner sc = new Scanner(System.in); for(int tc = 1; tc