CARLJOSEPHLEE
CARLJOSEPHLEE
全部文章
分类
题解(26)
归档
标签
去牛客网
登录
/
注册
CARLJOSEPHLEE的博客
全部文章
(共3篇)
题解 | #小苯的区间选数#
思路很简单,直接上代码 from sys import stdin input = stdin.readline t = int(input()) def sumdigit(x): return sum(int(i) for i in str(x)) def f(ltrue,rtrue,te...
Python3
pypy3
数组
数学
贪心
2024-11-13
0
216
题解 | #超级闪光牛可乐#
贪心即可,找到值最大的食物,直接喂1000次,如果可以就输出,不可以就输出-1 x = int(input()) n = int(input()) max1 = 0 maxtype = None for _ in range(n): a,b = input().split() if ...
pypy3
Python3
数学
贪心
2024-10-29
0
39
题解 | #伊甸之花#
最小值如果是1,那么肯定不能下移,最大值如果是m,那么不能上移,如果首项是1,不能下移,如果首项是m,不能上移 n,m = map(int,input().split()) l = [int(i) for i in input().split()] if n == 1: print("Yes...
Python3
pypy3
数组
数学
贪心
2024-10-29
0
25