牛客464844775号
牛客464844775号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客464844775号的博客
全部文章
/ 题解
(共42篇)
题解 | #字符串字符匹配#
while True: try: l1 = list(input()) l2 = list(input()) &nbs...
Python3
2021-12-01
0
409
题解 | #进制转换#
while True: try: l = input() print(int(l,16)) except:  ...
Python3
2021-11-30
0
358
题解 | #表示数字#
while True: try: l = input() a = '' char_pre =...
Python3
2021-11-30
0
351
题解 | #记负均正#
while True: try: n = int(input()) l = list(map(int,input().split(' '))) &...
Python3
2021-11-30
0
353
题解 | #查找输入整数二进制中1的个数#
while True: try: n = int(input()) print(bin(n).count('1')) except:...
Python3
2021-11-30
28
1928
题解 | #输入n个整数,输出其中最小的k个#
while True: try: n,k = map(int,input().split(' ')) l = input().split(' ') ...
Python3
2021-11-30
0
430
题解 | #输入n个整数,输出其中最小的k个#
while True: try: n,k = map(int,input().split()) l = input().split()) &nbs...
Python3
2021-11-30
0
434
题解 | #挑7#
while True: try: n = int(input()) l = 0 for i in ran...
Python3
2021-11-29
0
287
题解 | #统计大写字母个数#
while True: try: l = input() n = 0 for i in l:  ...
Python3
2021-11-29
0
271
题解 | #字符个数统计#
l = set(input()) n = 0 for i in l: if ord(i) <=127 or ord(i) >= 0: n += 1 else: &...
Python3
2021-11-29
0
382
首页
上一页
1
2
3
4
5
下一页
末页