CSP 201909-1 小明种苹果 python
2021/11/23 1:09:54
本文主要是介绍CSP 201909-1 小明种苹果 python,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
CSP 201909-1 小明种苹果 python
题目描述
思路
种苹果还是很简单,我们可以直接累加,然后计算最大的,并且计算他所在的位置
在Python更是简单,我们可以直接利用他内置的函数,就能很快的得到我们的结果,结果当然是100啦
代码
#!/usr/bin/env python # -*- encoding: utf-8 -*- # @File : 201909-1.py # @Time : 2021/11/20 12:24:49 # @Author : DKJ # @Contact : 1016617094@qq.com # @Software: VScode # here put the import lib n,m = map(int,input().split()) data = [] max_c = 0 for i in range(n): x = list(map(int,input().split())) c = sum(x[1:]) if c*-1 > max_c: max_c = c*-1 index = i+1 data.append(x[0]+c) print(sum(data),index,max_c) ''' example 1: 3 3 73 -8 -6 -4 76 -5 -10 -8 80 -6 -15 0 167 2 23 example 2: 2 2 10 -3 -1 15 -4 0 17 1 4 '''
这篇关于CSP 201909-1 小明种苹果 python的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Python基础编程
- 2024-11-25Python编程基础:变量与类型
- 2024-11-25Python编程基础与实践
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南