結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー tentententen
提出日時 2020-09-11 18:38:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 732 ms / 1,000 ms
コード長 711 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 75,308 KB
実行使用メモリ 53,056 KB
最終ジャッジ日時 2024-06-07 23:08:43
合計ジャッジ時間 8,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,216 KB
testcase_01 AC 97 ms
40,144 KB
testcase_02 AC 107 ms
41,052 KB
testcase_03 AC 146 ms
42,448 KB
testcase_04 AC 98 ms
40,284 KB
testcase_05 AC 97 ms
40,332 KB
testcase_06 AC 105 ms
40,868 KB
testcase_07 AC 104 ms
41,132 KB
testcase_08 AC 97 ms
40,088 KB
testcase_09 AC 97 ms
40,048 KB
testcase_10 AC 106 ms
40,728 KB
testcase_11 AC 105 ms
41,008 KB
testcase_12 AC 104 ms
41,104 KB
testcase_13 AC 98 ms
40,380 KB
testcase_14 AC 99 ms
40,176 KB
testcase_15 AC 106 ms
40,892 KB
testcase_16 AC 110 ms
41,000 KB
testcase_17 AC 101 ms
40,096 KB
testcase_18 AC 95 ms
39,972 KB
testcase_19 AC 162 ms
43,440 KB
testcase_20 AC 252 ms
46,256 KB
testcase_21 AC 107 ms
40,920 KB
testcase_22 AC 108 ms
41,148 KB
testcase_23 AC 112 ms
41,124 KB
testcase_24 AC 109 ms
41,224 KB
testcase_25 AC 361 ms
46,296 KB
testcase_26 AC 120 ms
41,156 KB
testcase_27 AC 107 ms
41,104 KB
testcase_28 AC 108 ms
41,012 KB
testcase_29 AC 101 ms
39,832 KB
testcase_30 AC 95 ms
39,880 KB
testcase_31 AC 105 ms
40,956 KB
testcase_32 AC 227 ms
46,408 KB
testcase_33 AC 676 ms
53,056 KB
testcase_34 AC 732 ms
50,200 KB
testcase_35 AC 338 ms
47,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int length = sc.nextInt();
    	ArrayList<Integer> primes = new ArrayList<>();
    	long ans = 0;
    	for (int i = 2; i * (n - 1) <= length; i++) {
    	    if (isPrime(i, primes)) {
    	        primes.add(i);
    	        ans += length - i * (n - 1) + 1;
    	    }
    	}
        System.out.println(ans);
	}
	
	static boolean isPrime(int x, ArrayList<Integer> primes) {
	    for (int y : primes) {
	        if (y * y > x) {
	            break;
	        }
	        if (x % y == 0) {
	            return false;
	        }
	    }
	    return true;
	}
}
0