-Code
from math import gcd
def mul(arr):
answer = 1
for i in range(len(arr)):
answer *= arr[i]
return answer
n = int(input())
a = list(map(int, input().split()))
m = int(input())
b = list(map(int, input().split()))
result = str(gcd(mul(a), mul(b)))
if len(result) > 9:
print(result[-9:])
else:
print(result)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 2160번 그림 비교 (0) | 2022.05.09 |
---|---|
[백준/파이썬] 2503번 숫자 야구 (0) | 2022.05.09 |
[백준/파이썬] 1990번 소수인팰린드롬 (0) | 2022.05.09 |
[백준/파이썬] 9421번 소수상근수 (0) | 2022.05.09 |
[백준/파이썬] 2168번 타일 위의 대각선 (0) | 2022.05.09 |