菲暃要加油——计负均正 摘要:参考代码:l=list(map(int,input().split()))l+=list(map(int,input().split()))z1=len(l)fu=0zheng=0…… 题解列表 2025年02月13日 0 点赞 0 评论 172 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:num=list(map(int,input().split())) num+=list(map(int,input().split())) z=zs=f=0 fo…… 题解列表 2024年04月27日 0 点赞 0 评论 470 浏览 评分:0.0
1061: 二级C语言-计负均正 摘要:```python li = list(map(int,input().split())) li1 = list(map(int,input().split())) #题中示例是两行输入 li…… 题解列表 2023年12月20日 2 点赞 1 评论 129 浏览 评分:0.0
注意要输入两排数据 摘要:注意!!!!!!!!!!!!!!要输入两排数字才能正确通过!!lists = list(map(int,input().split()))s = list(map(int,input().split(…… 题解列表 2023年05月14日 0 点赞 0 评论 409 浏览 评分:9.9
不会简单的写法 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split())) b=list(map(int,input().split())) c=0 d=0 e=0 fo…… 题解列表 2022年08月10日 0 点赞 0 评论 292 浏览 评分:9.9
二级C语言-计负均正 摘要:```python a = list(map(int,input().split())) while len(a)0): sum +=int(a[i]) j+=…… 题解列表 2022年07月01日 0 点赞 0 评论 225 浏览 评分:0.0
如果不用两个map怎么办? 摘要:解题思路:注意事项:参考代码:s=list(map(int,input().strip().split()))x=list(map(int,input().strip().split()))coun=…… 题解列表 2022年05月13日 0 点赞 0 评论 192 浏览 评分:0.0
通过for循环来求解 摘要:解题思路:注意事项:参考代码:list1=list(map(int,input().split()))list2=list(map(int,input().split()))list3=[]for i…… 题解列表 2022年05月01日 0 点赞 0 评论 336 浏览 评分:0.0
题解 1061: 二级C语言-计负均正(Python) 摘要:解题思路:注意事项:需要输入两行数字才能成功参考代码:x=input().split()y=input().split()m=[int(i) for i in x+y if int(i)<0]n=[i…… 题解列表 2022年03月27日 0 点赞 0 评论 220 浏览 评分:8.0
二级c语言-计负均正--用Python求解----(Python) 摘要:遍历列表统计大于0的个数求平均值小于0的个数 ```python t=list(map(int,input().split())) s=list(map(int,input().split())…… 题解列表 2021年11月05日 0 点赞 0 评论 708 浏览 评分:9.9