题解 1047: [编程入门]报数问题

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

筛选

约瑟夫问题

摘要:#include<bits/stdc++.h>usingnamespacestd;queue<int>q;int&nbs……

Python代码-报数问题

摘要:```pythonfrom collections import dequeif __name__ == '__main__': n = int(input()) qu……