본문 바로가기

전체 글263

Lv1. 정수 내림차순으로 배치하기 ▶ 문제 ▶ 풀이방법. 정말 간단한 문제인데 복잡하게 풀 생각을 한 나는 진짜 바보인가,,,ㅜㅜㅜㅜㅜ Arrays.sort()를 해결하면 간단하게 해결될 문제인데,,,ㅜ - 첫번째로 풀이한 방법 class Solution { public long solution(long n) { String num = String.valueOf(n); int[] arr = new int[num.length()]; for(int i = 0; i < num.length(); i++) arr[i] = Integer.parseInt(num.substring(i,i+1)); long answer = 0; int c = 0; String str = ""; //결과값 담기위한 공간 while(c < num.length()){ int.. 2022. 4. 16.
백준 1476 ▶ 1476 문제 - 날짜 계산 - 완전탐색 문제 ▶ 풀이방법 import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); StringTokenizer st = new StringTokenizer(br.readLine()); int E = Integer.parseInt(st.nextToken());.. 2022. 4. 15.
안녕안녕 2022 몇달만에 돌아온 일상상일상상해바~~> 2022. 4. 15.
백준 6588 ▶ 6588번 문제 - 골드바흐의 추측 ▶ 풀이방법 - 밑의 코드를 사용할 경우 결과값은 잘 나오지만, 백준 채점단계에서 여러번 반복되는의 소수 판별방식으로 인해 시간초과 오류 발생. import java.util.*; public class Main{ public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); long n; while(true) { n = Integer.parseInt(br.rea.. 2022. 4. 7.