当前位置: 首页 > news >正文

洛谷题单2-P1424 小鱼的航程(改进版)-python-流程图重构

题目描述

有一只小鱼,它平日每天游泳 250 250 250 公里,周末休息(实行双休日),假设从周 x x x 开始算起,过了 n n n 天以后,小鱼一共累计游泳了多少公里呢?

输入格式

输入两个正整数 x , n x,n x,n,表示从周 x x x 算起,经过 n n n 天。

输出格式

输出一个整数,表示小鱼累计游泳了多少公里。

输入输出样例

输入

3 10

输出

2000

说明/提示

数据保证, 1 ≤ x ≤ 7 1\le x \le 7 1x7 1 ≤ n ≤ 1 0 6 1 \le n\le 10^6 1n106

方式

代码

class Solution:@staticmethoddef oi_input():"""从标准输入读取数据"""x, n = map(int, input().split())return x, n@staticmethoddef oi_test():"""提供测试数据"""return 3, 10@staticmethoddef solution(x, n):now = x - 1total = (n // 7) * 1250for _ in range(n % 7):if now <= 4:  # 工作日(周一到周五)total += 250now = (now + 1) % 7  # 更新到下一天print(total)oi_input = Solution.oi_input
oi_test = Solution.oi_test
solution = Solution.solutionif __name__ == '__main__':x, n = oi_test()# x, n = oi_input()solution(x, n)

流程图

每日处理
当前是工作日?
now <= 4
循环处理剩余天数
for _ in range(remain_days)
累加工资250元
total += 250
跳过
更新星期索引
now = (now+1)%7
开始
主函数调用
读取输入数据
x, n = map(int, input().split())
初始化当前星期索引
now = x-1
计算完整周工资
total = (n//7)*1250
计算剩余天数
remain_days = n % 7
格式化输出总工资
print(total)
结束

http://www.mrgr.cn/news/96695.html

相关文章:

  • thinkcmf搭建
  • 游戏引擎学习第198天
  • 大模型高质量rag构建:A Cheat Sheet and Some Recipes For Building Advanced RAG
  • 配置防火墙和SELinux(1)
  • 【Yolov8部署】 VS2019 + opencv + onnxruntime 环境下部署目标检测模型
  • mysql 八股
  • C语言常用的字符串函数
  • 06-02-自考数据结构(20331)- 查找技术-动态查找知识点
  • 蓝桥杯 刷题对应的题解
  • Java基础 3.31
  • 【Feign】⭐️使用 openFeign 时传递 MultipartFile 类型的参数参考
  • SpringBoot详细教程(持续更新中...)
  • HCIP(RSTP+MSTP)
  • 记忆学习用内容
  • Sentinel[超详细讲解]-4
  • Axure疑难杂症:完美解决文本框读取、赋值、计数(玩转文本框)
  • 安卓一些接口使用
  • python文件的基本操作和文件读写
  • 实现在Unity3D中仿真汽车,而且还能使用ros2控制
  • Docker部署sprintboot后端项目