結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー tentententen
提出日時 2020-09-11 18:44:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 571 bytes
コンパイル時間 1,668 ms
コンパイル使用メモリ 73,820 KB
実行使用メモリ 45,980 KB
最終ジャッジ日時 2024-06-07 23:13:58
合計ジャッジ時間 6,672 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,124 KB
testcase_01 AC 107 ms
40,992 KB
testcase_02 AC 108 ms
40,912 KB
testcase_03 AC 115 ms
41,180 KB
testcase_04 AC 95 ms
39,840 KB
testcase_05 AC 108 ms
41,124 KB
testcase_06 AC 107 ms
40,860 KB
testcase_07 AC 97 ms
40,040 KB
testcase_08 AC 106 ms
41,020 KB
testcase_09 AC 110 ms
40,980 KB
testcase_10 AC 111 ms
41,028 KB
testcase_11 AC 108 ms
41,180 KB
testcase_12 AC 107 ms
41,012 KB
testcase_13 AC 106 ms
41,048 KB
testcase_14 AC 107 ms
40,972 KB
testcase_15 AC 105 ms
40,960 KB
testcase_16 AC 106 ms
41,436 KB
testcase_17 AC 106 ms
41,140 KB
testcase_18 AC 99 ms
40,088 KB
testcase_19 AC 119 ms
41,340 KB
testcase_20 AC 123 ms
42,400 KB
testcase_21 AC 100 ms
40,108 KB
testcase_22 AC 110 ms
40,980 KB
testcase_23 AC 106 ms
41,148 KB
testcase_24 AC 106 ms
40,836 KB
testcase_25 AC 132 ms
43,500 KB
testcase_26 AC 100 ms
39,944 KB
testcase_27 AC 111 ms
40,984 KB
testcase_28 AC 104 ms
41,088 KB
testcase_29 AC 105 ms
40,980 KB
testcase_30 AC 97 ms
40,116 KB
testcase_31 AC 106 ms
41,000 KB
testcase_32 AC 121 ms
41,920 KB
testcase_33 AC 157 ms
45,980 KB
testcase_34 AC 143 ms
45,236 KB
testcase_35 AC 135 ms
43,464 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();
    	boolean[] isNotPrime = new boolean[length / (n - 1) + 1];
    	long ans = 0;
    	for (int i = 2; i < isNotPrime.length; i++) {
    	    if (!isNotPrime[i]) {
    	        ans += length - i * (n - 1) + 1;
    	        for (int j = 2; j * i < isNotPrime.length; j++) {
    	            isNotPrime[i * j] = true;
    	        }
    	    }
    	}
        System.out.println(ans);
	}
}
0