CARLJOSEPHLEE
CARLJOSEPHLEE
全部文章
分类
题解(26)
归档
标签
去牛客网
登录
/
注册
CARLJOSEPHLEE的博客
全部文章
(共14篇)
题解 | #Raining#
数组存起来,跑一遍MAX函数即可 l = [int(i) for i in input().split()] x = int(input()) for i in l: print(max(0,x-i),end=' ')
Python3
pypy3
数组
数学
2024-10-29
0
23
题解 | #超市里扫货#
这题我认为python选手最好要用deque来模拟,不断popleft直到deque空了就行了。 from sys import stdin from collections import deque input = stdin.readline n,v = map(int,input().spli...
Python3
pypy3
哈希表
字符串
数学
数组
2024-10-28
0
25
题解 | #小辰打比赛#
升序排序,然后遍历,遇到大于等于x就退出循环 n,x = map(int,input().split()) l = sorted([int(i) for i in input().split()]) s = 0 for i in l: if i < x: s += i ...
Python3
pypy3
数学
数组
2024-10-28
0
24
题解 | #牛牛去购物#
利用最大公倍数和最小公因数来减小枚举空间 from math import gcd n,a,b = map(int,input().split()) c = gcd(a,b) d = a*b//c l = set() for i in range(b//c): for j in range(...
Python3
数学
数组
计数
2024-10-28
0
21
首页
上一页
1
2
下一页
末页