编写题解 1160: 出圈(队列) 摘要:解题思路:把m-1个数加到后面之后,删除第一个数即可注意事项:参考代码:while True: try: n,m = map(int,input().split()) …… 题解列表 2023年12月09日 1 点赞 0 评论 115 浏览 评分:0.0
出圈:重点是怎么在反复遍历一个圈时确定下标问题 摘要:解题思路:本题可以将所有的人从1到m设置好序号,然后放到列表里面,序号存在表示该人尚未出圈,每次遍历时index更新为(index+(m-1))%len(c),保证下标在超过范围时能够正确判断,每一次…… 题解列表 2023年11月08日 0 点赞 0 评论 116 浏览 评分:9.9
连续输入用重复执行解决 摘要:解题思路:模板给的开头和结尾还是很有用的遇到连续输入还好是还是要尽量用一下while true:try:except:break挺好用注意事项:参考代码:while True: try: …… 题解列表 2023年03月09日 0 点赞 0 评论 64 浏览 评分:0.0
编写题解 1160: 出圈 摘要:while True: try: n,m =map(int,input().split()) lis = list(range(1,n+1)) …… 题解列表 2021年12月22日 0 点赞 0 评论 145 浏览 评分:0.0
[出圈]幸存者问题 摘要:解题思路:注意事项:参考代码:while True: try: a, b = map(int, input().strip().split()) l = [i for…… 题解列表 2021年06月17日 0 点赞 0 评论 218 浏览 评分:0.0
[出圈]-题解(Python代码) 摘要:```python while True: m,n=map(int,input().split()) lis=[i for i in range(1,m+1)] k=1…… 题解列表 2020年04月15日 0 点赞 1 评论 487 浏览 评分:6.0
[出圈]-题解(Python代码) 摘要:```python def lastRemaining(n,m): x =0 for i in range(2, n + 1): x = (m + x) % i …… 题解列表 2020年04月11日 0 点赞 0 评论 502 浏览 评分:9.9
[出圈]-题解(Python代码) 摘要: while True: n_number, m_number = map(int, input().split()) # 输入人数和m people_num…… 题解列表 2020年03月07日 0 点赞 0 评论 697 浏览 评分:9.9
【出圈】-题解(Python代码)公式法! 摘要:**代码如下:** while True: a,b=map(int,input().split()) x=0 for i in ra…… 题解列表 2019年12月25日 0 点赞 3 评论 809 浏览 评分:7.3