【出圈】-另类简单解法 摘要:解题思路: 在数组中将所有人从1到n编号,报数到的第b个人出圈(对其赋大值然后sort),始终在n+1-b个人中报数参考代码: 1 #include<iostream>…… 题解列表 2021年12月17日 0 点赞 0 评论 161 浏览 评分:9.9
Kanna-【出圈】-(38行代码解决问题) 摘要:使用C++的list容器,比较方便书写(就不必取写链表了) **代码中使用到的函数有:** clear():清空容器中的元素 push.back(int i):存储元素在容器中 fro…… 题解列表 2020年01月23日 0 点赞 0 评论 695 浏览 评分:9.9
[出圈]-题解(Java代码) 摘要: import java.util.Scanner; public class Main { public static void main(String…… 题解列表 2021年01月27日 0 点赞 0 评论 468 浏览 评分:9.9
还差50分的话,就要while多组输入。29行代码搞定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m; while(cin>>n>>m…… 题解列表 2022年08月07日 0 点赞 0 评论 198 浏览 评分:9.9
C语言代码,数组循环出圈 摘要:解题思路: 定义一个长度为n的数组,表示n个人,初始值为1,表示未出圈,0表示已出圈。利用while循环,从头开始报数,每一次先判断这个人有没有出圈。如果没有出圈,就报数,并判断报的…… 题解列表 2021年07月27日 0 点赞 0 评论 486 浏览 评分:9.9
猴子选大王(报数问题) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n,m; while(scanf("%d %d",&n,&m)!=EOF) { int s=0; …… 题解列表 2024年03月18日 0 点赞 0 评论 144 浏览 评分:9.9
[出圈]-题解(Python代码) 摘要: while True: n_number, m_number = map(int, input().split()) # 输入人数和m people_num…… 题解列表 2020年03月07日 0 点赞 0 评论 730 浏览 评分:9.9
【出圈】-题解(C语言代码) 摘要:### 直接分析代码吧!!! ```c #include int main() { int n;//总人数 int m;//退出号码 int a[100]; int temp;…… 题解列表 2019年12月12日 0 点赞 2 评论 553 浏览 评分:9.9
[出圈]☞每日一题 摘要:#include int main() { int n,k,m,j,r; int a[100]; while(scanf("%d%d",&n,&m)!=EOF) …… 题解列表 2022年01月18日 0 点赞 0 评论 234 浏览 评分:9.9
出圈(约瑟夫环)问题---用C语言解决 摘要:```c #include int main(void) { int n,m; while(scanf("%d%d", &n,&m)!=EOF) { int row[n]; …… 题解列表 2022年11月25日 0 点赞 0 评论 501 浏览 评分:9.9