连续输入用重复执行解决
摘要:解题思路:模板给的开头和结尾还是很有用的遇到连续输入还好是还是要尽量用一下while true:try:except:break挺好用注意事项:参考代码:while True: try: ……
编写题解 1160: 出圈
摘要:while True:
try:
n,m =map(int,input().split())
lis = list(range(1,n+1))
……
编写题解 1160: 出圈(队列)
摘要:解题思路:把m-1个数加到后面之后,删除第一个数即可注意事项:参考代码:while True: try: n,m = map(int,input().split()) ……
[出圈]-题解(Python代码)
摘要:```python
while True:
m,n=map(int,input().split())
lis=[i for i in range(1,m+1)]
k=1……
【出圈】-题解(Python代码)公式法!
摘要:**代码如下:**
while True:
a,b=map(int,input().split())
x=0
for i in ra……
[出圈]-题解(Python代码)
摘要:```python
def lastRemaining(n,m):
x =0
for i in range(2, n + 1):
x = (m + x) % i
……
出圈:重点是怎么在反复遍历一个圈时确定下标问题
摘要:解题思路:本题可以将所有的人从1到m设置好序号,然后放到列表里面,序号存在表示该人尚未出圈,每次遍历时index更新为(index+(m-1))%len(c),保证下标在超过范围时能够正确判断,每一次……
[出圈]-题解(Python代码)
摘要: while True:
n_number, m_number = map(int, input().split()) # 输入人数和m
people_num……