蓝桥杯算法提高VIP-Torry的困惑(提高型)-题解(C语言代码),22行 摘要:```c #include int main(){ long n,i,j,count=0,sum=1; scanf("%ld",&n); for(i=2;;i++){ i…… 题解列表 2020年01月10日 0 点赞 0 评论 852 浏览 评分:8.7
蓝桥杯算法提高VIP-Torry的困惑(提高型) (C++代码) 摘要:#include"bits/stdc++.h" using namespace std; int is(int n) { int y=sqrt(n); for(int j=2;j<=y;…… 题解列表 2018年06月14日 2 点赞 0 评论 693 浏览 评分:8.0
蓝桥杯算法提高VIP-Torry的困惑(提高型)-题解(Python代码) 摘要:解题思路:注意事项:筛选素数要优化,不然超时。参考代码:import math n=int(input()) i=2 s=1 def check(n): …… 题解列表 2020年07月14日 0 点赞 2 评论 412 浏览 评分:7.3
蓝桥杯算法提高VIP-Torry的困惑(提高型)-题解(C++代码) 摘要:1、判断素数 2、a*b%c=((a%c)*(b%c))%c 3、提前进行模,否则会溢出 ```cpp #include #include using namespace std; bo…… 题解列表 2020年01月22日 0 点赞 0 评论 569 浏览 评分:7.3
时间超限解决方案 摘要:解题思路:相信大部分人卡在了时间超限这儿,实际上就是判断质数时的比较次数太多了,如下给出解决注意事项:参考代码:#include<stdio.h>int judge(int n){ int a=1; …… 题解列表 2022年02月09日 0 点赞 0 评论 525 浏览 评分:6.3
每日一题 spperman 题解1485:蓝桥杯算法提高VIP-Torry的困惑(提高型) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b=0,i,n,j,f,c; long product=…… 题解列表 2018年04月21日 11 点赞 0 评论 965 浏览 评分:2.0
蓝桥杯算法提高VIP-Torry的困惑(提高型)-题解(Java代码) 摘要: `` static long a[]=new long[100002]; public static void main(String[] args)…… 题解列表 2020年03月16日 0 点赞 0 评论 326 浏览 评分:0.0
蓝桥杯算法提高VIP-Torry的困惑(提高型)(java) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2024年01月20日 0 点赞 0 评论 46 浏览 评分:0.0
蓝桥杯算法提高VIP-Torry的困惑(提高型) (C++描述,线性筛素数 ) 摘要:解题思路: 用筛法求素数的基本思想是:把从1开始的、某一范围内的正整数从小到大顺序排列, 1不是素数,首先把它筛掉。剩下的数中选择最小的数是素数,然后去掉它的倍数。依次类…… 题解列表 2018年06月16日 1 点赞 0 评论 519 浏览 评分:0.0
蓝桥杯算法提高VIP-Torry的困惑(提高型) (C++代码) 摘要:解题思路:把求素数的方法变简单注意事项:参考代码:#include <iostream>#include <algorithm>#include <map>#include <math.h>#incl…… 题解列表 2019年01月16日 0 点赞 0 评论 384 浏览 评分:0.0