보안을 그리다, 훈이

[Baekjoon/Python3] 15781번 헬멧과 조끼 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 15781번 헬멧과 조끼

HooNeee 2020. 12. 8. 16:46

[Baekjoon/Python3] 15781번 헬멧과 조끼

 

www.acmicpc.net/problem/15781

 

15781번: 헬멧과 조끼

입력의 첫째 줄에 맵에 존재하는 헬멧의 개수 N(N은 1000이하의 자연수)과 조끼의 개수 M(M은 1000이하의 자연수)이 주어진다. 둘째 줄에 각 헬멧의 방어력 h[i] (h[i]는 10억 이하의 자연수)가 N개 만큼

www.acmicpc.net

 

n, m = map(int, input().split())
n_dfs = list(map(int, input().split()))
m_dfs = list(map(int, input().split()))
print(max(n_dfs) + max(m_dfs))
Comments