結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-04 04:12:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 1,000 ms
コード長 653 bytes
コンパイル時間 2,521 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 46,072 KB
最終ジャッジ日時 2024-12-16 01:47:34
合計ジャッジ時間 8,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,208 KB
testcase_01 AC 119 ms
40,200 KB
testcase_02 AC 132 ms
41,432 KB
testcase_03 AC 140 ms
41,332 KB
testcase_04 AC 120 ms
40,416 KB
testcase_05 AC 134 ms
41,112 KB
testcase_06 AC 122 ms
40,408 KB
testcase_07 AC 132 ms
41,196 KB
testcase_08 AC 135 ms
41,280 KB
testcase_09 AC 121 ms
39,996 KB
testcase_10 AC 121 ms
39,884 KB
testcase_11 AC 136 ms
41,324 KB
testcase_12 AC 132 ms
41,244 KB
testcase_13 AC 120 ms
40,280 KB
testcase_14 AC 139 ms
41,108 KB
testcase_15 AC 135 ms
41,144 KB
testcase_16 AC 133 ms
41,052 KB
testcase_17 AC 132 ms
41,148 KB
testcase_18 AC 133 ms
40,964 KB
testcase_19 AC 143 ms
41,760 KB
testcase_20 AC 139 ms
41,820 KB
testcase_21 AC 133 ms
41,276 KB
testcase_22 AC 130 ms
41,336 KB
testcase_23 AC 132 ms
41,096 KB
testcase_24 AC 138 ms
41,200 KB
testcase_25 AC 166 ms
43,480 KB
testcase_26 AC 137 ms
41,044 KB
testcase_27 AC 136 ms
41,164 KB
testcase_28 AC 124 ms
40,248 KB
testcase_29 AC 134 ms
41,084 KB
testcase_30 AC 134 ms
41,168 KB
testcase_31 AC 134 ms
41,072 KB
testcase_32 AC 148 ms
42,520 KB
testcase_33 AC 180 ms
46,048 KB
testcase_34 AC 179 ms
46,072 KB
testcase_35 AC 159 ms
43,428 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 L = sc.nextInt();
        int dlim = L/(N-1);
        boolean [] b = new boolean [dlim+1];
        long count=0L;
        if(dlim>=2){
            count+=L-2*(N-1)+1;
        }
        for(int i=3; i<=dlim; i+=2){
            if(b[i]==false){
                count+=L-i*(N-1)+1;
                int k=2;
                while(i*k<=dlim){
                    b[i*k]=true;
                    k++;
                }
            }
        }
        System.out.println(count);
    }
}
0