题解 1160: 出圈

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

筛选

出圈】指针malloc版

摘要:解题思路:我用的是指针根据n动态分配内存(使用malloc函数)代码直接复制过来会被打乱 0.o被注释掉的那三条语句是用来测试的(测试可视化,不然我怎么知道发生了什么)截图真麻烦,不知道大佬们都是怎么……

编写题解 1160: 出圈

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

【出圈】 (Java代码)

摘要:解题思路:import java.util.Scanner; public class C1160 { public static void main(String[] args) { ……

[出圈]-题解(Python代码)

摘要:解题思路:注意事项:参考代码:                       while True:                                        &nb

【出圈】 (C++代码)

摘要:解题思路:其实就是利用公式法的思路,不断循环需要数的数,数到的就删去,利用数组赋值删去注意事项:注意变量的初始化;参考代码:#include<bits/stdc++.h> using namespa……

[出圈]幸存者问题

摘要:解题思路:注意事项:参考代码:while True:    try:        a, b = map(int, input().strip().split())        l = [i for……

出圈---简单易懂

摘要:参考代码:#include <stdio.h> int fun(int n,int m) {     int a[n],i=0,j=0,k=n;     for(int aa=0;aa<n;a……

【出圈】 (C语言代码)

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