![[백준 / BOJ] 1037번 약수 (C++, Python)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FNZGuX%2FbtrJqKe6Cvl%2Fkk0qLkPtDjm5ak8okPsTKK%2Fimg.png)
[백준 / BOJ] 1037번 약수 (C++, Python)◎ 자료구조와 알고리즘/백준(BOJ) 문제풀이2022. 6. 6. 02:37
Table of Contents
반응형
링크 : https://www.acmicpc.net/problem/1037
1037번: 약수
첫째 줄에 N의 진짜 약수의 개수가 주어진다. 이 개수는 50보다 작거나 같은 자연수이다. 둘째 줄에는 N의 진짜 약수가 주어진다. 1,000,000보다 작거나 같고, 2보다 크거나 같은 자연수이고, 중복되
www.acmicpc.net
문제

문제 풀이
잘 생각해보면 모든 약수가 주어지는데 본인과 1이 포함되어있지 않다 했으므로 가장 작은 값과 가장 큰 값을 곱하면 답이다.
C++ 코드 전문
This file contains 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
#include <algorithm> | |
#include <iostream> | |
#include <vector> | |
void init() { | |
std::ios_base::sync_with_stdio(false); | |
std::cin.tie(nullptr); | |
std::cout.tie(nullptr); | |
} | |
int main() { | |
init(); | |
int N; | |
std::cin >> N; | |
std::vector<int> v(N); | |
for (int i = 0; i < N; ++i) | |
std::cin >> v[i]; | |
int res = *std::max_element(v.begin(), v.end()) * *std::min_element(v.begin(), v.end()); | |
std::cout << res << "\n"; | |
return 0; | |
} |
Python 코드 전문
This file contains 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 sys | |
input = sys.stdin.readline | |
N = int(input()) | |
arr = list(map(int, input().split())) | |
print(max(arr) * min(arr)) |
소감
반응형
'◎ 자료구조와 알고리즘 > 백준(BOJ) 문제풀이' 카테고리의 다른 글
[백준 / BOJ] 1934번 최소공배수 (C++, Python) (0) | 2022.06.07 |
---|---|
[백준 / BOJ] 2609번 최대공약수와 최소공배수 (C++, Python) (0) | 2022.06.07 |
[백준 / BOJ] 5086번 배수와 약수 (C++, Python) (0) | 2022.06.06 |
[백준 / BOJ] 1358번 하키 (C++, Python) (0) | 2022.06.05 |
[백준 / BOJ] 1004번 어린 왕자 (C++, Python) (0) | 2022.06.05 |
@Reo :: 코드 아카이브
자기계발 블로그