전체 글

전체 글

    [SW expert Academy] SWEA 6808번 규영이와 인영이의 카드게임 자바(Java)

    [D3] 규영이와 인영이의 카드게임 - 6808 문제 링크 성능 요약 메모리: 23,632 KB, 시간: 2,850 ms, 코드길이: 1,540 Bytes 제출 일자 2023-10-31 12:50 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; class Solution { static int[] a; static int[] b; static int[] arr; static boolean[] visit; static int win; static int lose; public static void main(String args[]) throws Exceptio..

    [SW expert Academy] SWEA 1230번 암호문3 자바(Java)

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

    [SW expert Academy] SWEA 5688번 세제곱근을 찾아라 자바(Java)

    [D3] 세제곱근을 찾아라 - 5688 문제 링크 성능 요약 메모리: 22,920 KB, 시간: 237 ms, 코드길이: 576 Bytes 제출 일자 2023-10-31 10:42 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; import java.math.BigInteger; 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 3408번 세가지 합 구하기 자바(Java)

    [D3] 세가지 합 구하기 - 3408 문제 링크 성능 요약 메모리: 45,904 KB, 시간: 315 ms, 코드길이: 444 Bytes 제출 일자 2023-10-31 10:14 출처: 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 5789번 현주의 상자 바꾸기 자바(Java)

    [D3] 현주의 상자 바꾸기 - 5789 문제 링크 성능 요약 메모리: 108,608 KB, 시간: 690 ms, 코드길이: 677 Bytes 제출 일자 2023-10-31 09:47 출처: 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 7272번 안경이 없어! 자바(Java)

    [D3] 안경이 없어! - 7272 문제 링크 성능 요약 메모리: 51,044 KB, 시간: 334 ms, 코드길이: 1,096 Bytes 제출 일자 2023-10-31 09:29 출처: 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(); String noHole = "CEFGHIJKLMNSTUVWXYZ"; String oneHole..

    [SW expert Academy] SWEA 4047번 영준이의 카드 카운팅 자바(Java)

    [D3] 영준이의 카드 카운팅 - 4047 문제 링크 성능 요약 메모리: 20,696 KB, 시간: 130 ms, 코드길이: 1,566 Bytes 제출 일자 2023-10-30 21:40 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.*; 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 8016번 홀수 피라미드 자바(Java)

    [D3] 홀수 피라미드 - 8016 문제 링크 성능 요약 메모리: 19,712 KB, 시간: 130 ms, 코드길이: 347 Bytes 제출 일자 2023-10-30 21:03 출처: 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