본문 바로가기

알고리즘/백준

[백준] 2562 - 최댓값

반응형

2562번 문제

1. Scanner를 이용한 방법

import java.util.*;

public class Main{
    public static void main(String[] args){
       
        Scanner sc = new Scanner(System.in);

        int[] num = new int[9];
        int max = -1000000;

        for(int i=0;i<9; i++){
            num[i] = sc.nextInt();
        }
        
        for(int i=0; i<9; i++){
            max = Math.max(max, num[i]);
        }

        System.out.println(max);

        for(int i=0; i<num.length; i++){
            if(num[i] == max){
                System.out.println(i+1);
            }
        }

        sc.close();

    }
}

 

2. BufferedReader를 이용한 방법

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class Main{
    public static void main(String[] args)throws IOException{
       
       BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int[] num = new int[9];
        int max = -1000000;

        for(int i=0;i<9; i++){
            
            StringTokenizer st = new StringTokenizer(br.readLine(), " ");
            num[i] = Integer.parseInt(st.nextToken());
        }
        
        for(int i=0; i<9; i++){
            max = Math.max(max, num[i]);
        }

        System.out.println(max);

        for(int i=0; i<num.length; i++){
            if(num[i] == max){
                System.out.println(i+1);
            }
        }

        br.close();

    }
}

 

둘 다 Scanner에서 사용하는 방식과 BufferedReader에서 사용하는 방식에만 차이가 있고 그 아래 코드는 그대로 사용하여 풀었다. 이번에는 두 방식을 사용하였을 때 메모리와 시간에 큰 차이가 나지 않았다.

반응형

'알고리즘 > 백준' 카테고리의 다른 글

[백준] 10813 - 공 바꾸기  (0) 2024.02.16
[백준] 10810 - 공 넣기  (0) 2024.02.15
[백준] 10818 - 최소, 최대  (0) 2024.02.13
[백준] 10871 - X보다 작은 수  (0) 2024.02.12
[백준] 10807 - 개수 세기  (0) 2024.02.11