龙灬胆
龙灬胆
全部文章
分类
归档
标签
去牛客网
登录
/
注册
龙灬胆的博客
全部文章
(共48篇)
题解 | 小红的优惠券
while True: try: n, m = map(int, input().split()) j_s = [] for i in range(m): j = list(map(int, input().split(...
2025-12-30
0
43
题解 | 讨厌鬼进货
while True: try: #使用map函数简化for循环 n, x = map(int, input().split()) a = list(map(int, input().split())) b = list(map...
2025-12-30
0
41
题解 | 小红书推荐系统
while True: try: strings = input().split() # print(strings) str_list = [] for str in strings: if strin...
2025-12-28
0
41
题解 | 小红的合数寻找
while True: try: num = int(input()) zhishu_list = [] heshu_list = [] for i in range(num, 2*num+1): cou...
2025-12-28
0
39
题解 | 小红的双生串
while True: try: s = input() half = len(s) // 2 s_1 = s[:half] s_2 = s[half: len(s)] # print(s_1) ...
2025-12-28
0
37
题解 | 计算日期到天数转换
while True: try: string = input().split() year = int(string[0]) month = int(string[1]) day = int(string[2]) ...
2025-12-24
0
34
题解 | 分数线划定
while True: try: nums = input().split() n = int(nums[0]) m = int(nums[1]) t = int(1.5 * m) records = {} ...
2025-12-22
0
25
题解 | 构造A+B
while True: try: string = input() n = int(string.split(' ', 1)[0]) k = int(string.split(' ', 1)[1]) if n >= 2 a...
2025-12-21
0
32
题解 | 构造A+B
while True: try: string = input() n = int(string.split(' ', 1)[0]) k = int(string.split(' ', 1)[1]) if n >= 2 a...
2025-12-21
0
23
题解 | #计算用户8月每天的练题数量#
select day (date) as day, count(question_id) as question_cnt from question_practice_detail where month (date) = 8 and year (date) ...
2024-03-03
0
219
首页
上一页
1
2
3
4
5
下一页
末页