Post

[백준] 2562번 - 최댓값 [Java][C++]

[백준] 2562번 - 최댓값 [Java][C++]

문제 링크


1. 문제 풀이

서로 다른 $9$ 개의 자연수에 대해 최댓값과 등장 위치를 구하는 문제로 반복문에서 등장 위치를 다음 원소로 넘어갈 때마다 갱신해주면 위치를 구할 수 있다.


2. 코드

1. 구현 [Java]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.io.*;

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

        int max = 0;
        int idx = 0;
        for (int i = 1; i <= 9; i++) {
            int num = Integer.parseInt(br.readLine());

            if (num > max) {
                max = num;
                idx = i;
            }
        }

        System.out.println(max);
        System.out.println(idx);
    }
}

2. 구현 [C++]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int mx = 0;
    int idx = 0;

    for (int i = 1; i <= 9; i++) {
        int num;
        cin >> num;

        if (num > mx) {
            mx = num;
            idx = i;
        }
    }

    cout << mx << '\n';
    cout << idx << '\n';
}

3. 풀이 정보

1. 구현 [Java]

언어시간메모리코드 길이
Java 11100 ms14204 KB503 B

2. 구현 [C++]

언어시간메모리코드 길이
C++ 170 ms2020 KB358 B

This post is licensed under CC BY 4.0 by the author.