henryboy233
henryboy233
全部文章
题解
归档
标签
去牛客网
登录
/
注册
henryboy233的博客
绝活
全部文章
/ 题解
(共13篇)
题解 | #记负均正#
依题意得 while True: try: n=int(input()) nums=map(int,input().split()) positive=[] negative=0 for j in nums: ...
Python3
2021-09-19
10
1804
题解 | #二维数组操作#
需要注意输入顺序,理解题目的难度大于编写的难度 while True: try: m, n = map(int, input().split()) x1, y1, x2, y2=map(int,input().split()) insert_x...
Python3
2021-09-18
15
2829
题解 | #字符统计#
while True: try: m = input() s = sorted(m,key=ord) string = '' result = [] for i in s: if i.is...
Python3
2021-09-18
1
689
首页
上一页
1
2
下一页
末页