爱看电影的小飞象就要上岸了
爱看电影的小飞象就要上岸了
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱看电影的小飞象就要上岸了的博客
全部文章
(共20篇)
题解 | 多组_一维数组_T组形式
import sys t = int(sys.stdin.readline()) for _ in range (t): n = int(sys.stdin.readline()) num = list(map(int,sys.stdin.readline().split()))...
2025-08-17
0
39
题解 | 单组_一维数组
import sys n = int(sys.stdin.readline()) nums = list(map(int,sys.stdin.readline().split())) res = nums[:n] print(sum(res)) map 字符转换成 int 批量转换
2025-08-17
0
30
题解 | 多组_A+B_零尾模式
import sys while True: a, b = map(int, sys.stdin.readline().split()) if a == 0 and b == 0: break else: print(a + b) 循环bre...
2025-08-17
0
32
题解 | 多组_A+B_T组形式
import sys n = int(sys.stdin.readline()) for _ in range(n): a, b = map(int,sys.stdin.readline().split()) print(a + b) 代码速记需要记住 按照格式 先读 再读map...
2025-08-17
0
48
题解 | 单组_A+B
import sys for line in sys.stdin: a = line.split() print(int(a[0]) + int(a[1])) python
2025-08-17
0
34
题解 | 单组_A+B
x, y = map(int, input().split()) print(x+y)
2025-08-17
0
37
题解 | 只有输出
import sys print("Hello Nowcoder!") python
2025-08-17
0
23
题解 | 每个月Top3的周杰伦歌曲
select sub.month, sub.ranking, sub.song_name, sub.play_pv from( select month(p.fdate) as month, row_number() over...
2025-08-14
0
36
题解 | 获取指定客户每月的消费额
select DATE_FORMAT(tr.t_time, '%Y-%m') as time, sum(tr.t_amount) as total from trade tr join customer c on tr.t_cus = c.c_id where ...
2025-08-12
0
38
题解 | 分析客户逾期情况
select ct.pay_ability as pay_ability, CONCAT(round(sum(case when lt.overdue_days is not null then 1 else 0 end) / count(*)*100,1),'%') as over...
2025-08-12
0
29
首页
上一页
1
2
下一页
末页