蓝桥杯刷题--python-16

562. 壁画 - AcWing题库

T=int(input())
j=1
while(j<=T):

    N = int(input())
    a=input()
    s = [0]*(N+1)
    # 求前戳和
    for i in range(1, N + 1):
        s[i] = int(a[i-1]) + s[i - 1]

    # 枚举
    # 区间
    max_ = float('-inf')
    k = (N + 2 - 1) // 2
    for i in range(k, N + 1):
        tmp_ = s[i] - s[i - k]
        max_ = max(tmp_, max_)

    print(f'Case #{j}: {max_}')
    j += 1

 4956. 冶炼金属 - AcWing题库

N=int(input())
V_min=float("-inf")
V_max=float("inf")
for _ in range(N):
    A,B=map(int,input().split())

    V_min=max(V_min,(A//(B+1))+1)
    V_max=min(V_max,(A//B))
print(V_min,V_max)

 

N=int(input())
V_min=float("-inf")
V_max=float("inf")


def check(A,B):
    l=1
    r=10**9+1
    while(l<r):
        mid=l+r>>1
        if (A//mid<=B):
            r=mid
        else:
            l=mid+1
    return r
for _ in range(N):
    A,B=map(int,input().split())

    V_min=max(V_min,check(A,B))
    V_max=min(V_max,check(A,B-1)-1)
print(V_min,V_max)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

芝士小熊饼干

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值