[백준 알고리즘] 10818번 최소, 최대(Python3, Java)언어, 알고리즘 공부/백준2020. 2. 11. 23:05
Table of Contents
<Python 3>
n = int(input())
a = list(map(int,input().split()))
min, max = a[0], a[0]
for i in range(n):
if a[i] < min:
min = a[i]
if a[i] > max:
max = a[i]
print(min, max)
<다른 풀이>
출처: https://hwiyong.tistory.com/217
Case = int(input())
num_list = list(map(int, input().split()))
print('{} {}'.format(min(num_list), max(num_list)))
문자열 대괄호 자리에 format 뒤의 괄호안에 있는 값을 하나씩 넣어 출력한다.
<Java>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
int max = -1000001;
int min = 1000001;
while (st.hasMoreTokens()) {
int num = Integer.parseInt(st.nextToken());
if (num > max)
max = num;
if (num < min)
min = num;
}
System.out.println(min + " " + max);
}
}
▼링크
https://www.acmicpc.net/problem/10818
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 2577번 숫자의 개수(Python 3, Java) (0) | 2020.02.11 |
---|---|
[백준 알고리즘] 2562번 최댓값(Python 3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 1110번 더하기 사이클(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 10951번 A+B - 4(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 10952번 A+B - 5(Python3, Java) (0) | 2020.02.11 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!