알고리즘 - SWEA
[SW expert Academy] SWEA 1986번 지그재그 숫자 자바(Java)
[D2] 지그재그 숫자 - 1986 문제 링크 성능 요약 메모리: 20,732 KB, 시간: 126 ms, 코드길이: 368 Bytes 제출 일자 2023-10-16 19:48 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.*; import java.io.*; 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 1989번 초심자의 회문 검사 자바(Java)
[D2] 초심자의 회문 검사 - 1989 문제 링크 성능 요약 메모리: 20,172 KB, 시간: 137 ms, 코드길이: 894 Bytes 제출 일자 2023-10-16 10:21 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com import java.util.*; import java.io.*; class Solution { public static void main(String args[]) throws Exception { Scanner sc = new Sc..
[SW expert Academy] SWEA 2001번 파리퇴치 자바(Java)
[D2] 파리 퇴치 - 2001 문제 링크 성능 요약 메모리: 24,048 KB, 시간: 153 ms, 코드길이: 1,016 Bytes 제출 일자 2023-10-16 10:11 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do 완전 탐색 import java.util.*; import java.io.*; 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 2007번 패턴 마디의 길이 자바(Java)
[D2] 패턴 마디의 길이 - 2007 문제 링크 성능 요약 메모리: 20,596 KB, 시간: 133 ms, 코드길이: 586 Bytes 제출 일자 2023-10-16 09:22 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.*; import java.io.*; 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 2005번 파스칼의 삼각형 자바(Java)
[D2] 파스칼의 삼각형 - 2005 문제 링크 성능 요약 메모리: 20,876 KB, 시간: 128 ms, 코드길이: 1,068 Bytes 제출 일자 2023-10-16 09:40 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.*; import java.io.*; 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 1926번 간단한 369게임 자바(Java)
[D2] 간단한 369게임 - 1926 문제 링크 성능 요약 메모리: 19,816 KB, 시간: 110 ms, 코드길이: 916 Bytes 제출 일자 2023-10-15 19:12 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com import java.io.*; import java.util.*; class Solution { public static void main(String args[]) throws Exception { BufferedReader br = ..
[SW expert Academy] SWEA 1859번 백만 장자 프로젝트 자바(Java)
[D2] 백만 장자 프로젝트 - 1859 문제 링크 성능 요약 메모리: 133,676 KB, 시간: 467 ms, 코드길이: 1,074 Bytes 제출 일자 2023-10-15 19:05 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.io.*; import java.util.*; class Solution { public static void main(String args[]) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = ne..
[SW expert Academy] SWEA 2072번 홀수만 더하기 자바(Java)
[D1] 홀수만 더하기 - 2072 문제 링크 성능 요약 메모리: 20,580 KB, 시간: 125 ms, 코드길이: 555 Bytes 제출 일자 2023-10-15 14:12 출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do import java.util.Scanner; import java.io.FileInputStream; class Solution { public static void main(String args[]) throws Exception { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); for(int test_case = 1; ..