鱼C论坛

 找回密码
 立即注册
查看: 3375|回复: 1

[已解决]py求助

[复制链接]
发表于 2022-4-19 18:22:52 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
【问题描述】农夫有N(N大于0)个西瓜,第一天卖掉总数的一半后又多卖出两个,以后每天卖剩下的一半多两个,问几天以后能卖完?

【输入形式】输入一个正整数N,表示农夫拥有的西瓜数。

【输出形式】输出一个整数,表示农夫卖完全部瓜所需要的天数。

【样例输入】10

【样例输出】2

【样例说明】农夫有10个瓜,第一天卖出(5+2)个,剩余3个;第二天卖出(1+2)个,剩余0个。注:农夫只卖整瓜!
【评分标准】

def  main():
        total_count  =  int(input())
        calculate_days(total_count)

main()
最佳答案
2022-4-19 19:00:47
def calculate_days(total_count):
    days = 0
    while True:
        total_count = total_count - (total_count // 2 + 2)
        days += 1
        if total_count <= 0:
            break
    print(days)

def  main():
        total_count  =  int(input())
        calculate_days(total_count)

main()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-4-19 19:00:47 | 显示全部楼层    本楼为最佳答案   
def calculate_days(total_count):
    days = 0
    while True:
        total_count = total_count - (total_count // 2 + 2)
        days += 1
        if total_count <= 0:
            break
    print(days)

def  main():
        total_count  =  int(input())
        calculate_days(total_count)

main()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-11 17:59

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表