반응형 10371 baekjoon - python - 1037 www.acmicpc.net/problem/1037 1037번: 약수 첫째 줄에 N의 진짜 약수의 개수가 주어진다. 이 개수는 50보다 작거나 같은 자연수이다. 둘째 줄에는 N의 진짜 약수가 주어진다. 1,000,000보다 작거나 같고, 2보다 크거나 같은 자연수이고, 중복되� www.acmicpc.net # @Author YoungMinKim # baekjoon from math import gcd import sys N = int(sys.stdin.readline()) f = list(sys.stdin.readline().split()) ls = sorted(list(map(int,f))) print(ls[0]*ls[-1]) 2020. 9. 16. 이전 1 다음 반응형