一开始想的是直接暴力破解 然后数量少一点还是可以但是数量多了就有点问题;
import java.util.Scanner;; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a=scanner.nextInt(); int b=scanner.nextInt(); int c=scanner.nextInt(); int sum=0; for (int i = b; i <=c; i++) { boolean isFlag=false; for (int j = 2; j <= a; j++) { if (i%j==0) { if (isFlag==true) { isFlag=false; }else if(isFlag==false){ isFlag=true; } } } if (isFlag==true) { sum++; } } System.out.println(sum); } }
然后看了下写题解的大佬们写的 真的牛思路可以看第一个c++题解 我是水个题解
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long n = sc.nextLong(); long l = sc.nextLong(); long r = sc.nextLong(); long a=r-l+1; long b=(long)Math.sqrt(r)-(long)Math.sqrt(l); System.out.println(a-b); } }
0.0分
1 人评分
妹子杀手的故事 (C语言代码)浏览:737 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:1071 |
【出圈】 (C语言代码)浏览:824 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:632 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:631 |
简单的for循环浏览:1498 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:600 |
模拟计算器 (C++代码)浏览:885 |
核桃的数量 (C语言代码)浏览:893 |
最好的,浏览:601 |