This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.List; | |
| import java.util.concurrent.atomic.AtomicInteger; | |
| import java.util.stream.IntStream; | |
| /** | |
| * @project JavaBlog | |
| * @author ARA | |
| * @since 2023-06-27 : PM 20:31 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.util.*; | |
| // 수 묶기 | |
| // https://www.acmicpc.net/problem/1744 | |
| public class bj_1744 { | |
| public static void main(String[] args) throws IOException { | |
| System.out.println(solution()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.ArrayDeque; | |
| import java.util.Deque; | |
| // 괄호 변환 | |
| // https://school.programmers.co.kr/learn/courses/30/lessons/60058 | |
| //테스트 1 〉 통과 (1.44ms, 75.4MB) | |
| //테스트 2 〉 통과 (0.04ms, 75MB) | |
| //테스트 3 〉 통과 (1.48ms, 76.8MB) | |
| //테스트 4 〉 통과 (1.62ms, 71.6MB) |