居左


私信TA

用户名:JZ50

访问量:75714

签 名:

楼下你的分数已经再次被超越!!快刷!!

等  级
排  名 34
经  验 14142
参赛次数 2
文章发表 109
年  龄 0
在职情况 学生
学  校 99
专  业

  自我简介:

解题思路:





注意事项:





参考代码:

import java.util.Scanner;

public class C1485 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		while (sc.hasNext()) {
			F(sc.nextInt());
		}
		sc.close();
	}
	
	private static void F(int n){
		long sum = 1;
		int a = 2;
		int count = 0;
		while(count < n){
			if(isSu(a)){
				//(a*b)%k = ((a%k)*(b%k)%k
				sum = (sum * (a%50000))%50000;
				count++;
			}
			a++;
		}
		
		System.out.println(sum);
	} 
	
	private static boolean isSu(int n){
		for(int i = 2; i*i <= n; i++){
			if( n % i == 0)
				return false;
		}
		return true;
	}
}


 

0.0分

0 人评分

  评论区

  • «
  • »