NC22218. 强强联合
描述
输入描述
输入三行。第一行输入两个整数n,m,表示男生数量和女生数量。
第二行输入n个整数ai,表示所有男生的战斗力值
第三行输入m个整数bi。,表示所有女生的战斗力值
1 <= n,m <= 100, 1 <=ai,bi <= 100
输出描述
最大的组合战斗力值
示例1
输入:
2 3 1 2 1 2 3
输出:
5
pypy3 解法, 执行用时: 116ms, 内存消耗: 44492K, 提交时间: 2021-08-12 11:47:00
n,m=map(int,input().split(' ')) a=map(int, input().split(' ')) b=map(int, input().split(' ')) print(max(a)+max(b))
Python3 解法, 执行用时: 43ms, 内存消耗: 4540K, 提交时间: 2023-04-24 19:24:42
input() print(max(map(int, input().split()))+max(map(int, input().split())))