题解 1441: 蓝桥杯2013年第四届真题-幸运数

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

筛选

寻找幸运数-惰性删除-模拟

摘要:解题思路:关键在于寻找每一次的幸运数和控制循环退出条件,             寻找幸运数,对于第i轮寻找,即当前数列中第i个数为幸运数,并对数列中第i个数,当i满足i%lucky==0时对该数进行……

幸运数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;const int M=500000;int a[M],d;void f(int *s,int……

这个没什么技巧,直接干

摘要:解题思路:注意事项:参考代码:m,n=map(int,input().split()) # left保存的幸运数 left=[1] # right 保存的除了幸运数之外的数字 right=li……

幸运数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;const int M=500000;int a[M],count;void Lucky_nu……