题解列表

筛选

小O的乘积 (C++代码)

摘要:解题思路:只要注意几个情况就能AC了注意事项:参考代码:#include<cstdio>#include <algorithm>using namespace std;int main(){    i……

幸运数 (C++代码)

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