题解 1160: 出圈

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

题目 1160: 出圈

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define MAX 100000int main() {    int m,n;    while(scanf("%d%d",&n,……

【出圈】 (C语言代码)

摘要:解题思路:按照题目踢出方法,先把没有踢出的人全部置1,若有人踢出把他置0;注意事项:最后一个人i的值必须等于-1,i最后还会+1,再一次循环就从牌p[0]开始;参考代码:#include <stdio……

【出圈】 (C++代码)

摘要:解题思路:f[1]=0;f[i]=(f[i-1]+m)%i; (i>1)注意事项:参考代码:#include<iostream>#include<algorithm>using namespace s……

【出圈】 (C语言代码)

摘要:参考代码://此处可以不用结构体,可以用 二维数组,本质上一样。 typedef struct people {     int num;     int chuquan; }PEOPLE……

连续输入用重复执行解决

摘要:解题思路:模板给的开头和结尾还是很有用的遇到连续输入还好是还是要尽量用一下while true:try:except:break挺好用注意事项:参考代码:while True:    try:    ……

Mark11:数组模拟链表

摘要:注意事项:                    这题和前面的一道报3退圈的,很像。这里采用的数组模拟方法,是之前一位dalao的。参考代码:#include<stdio.h> #include<s……

【出圈】 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,m,count,i,j,k;    int num[100]={0};    while(sc……

编写题解 1160: 出圈

摘要:while True:     try:         n,m =map(int,input().split())          lis = list(range(1,n+1))    ……