結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,612 KB
testcase_01 AC 128 ms
41,556 KB
testcase_02 AC 119 ms
40,404 KB
testcase_03 AC 136 ms
41,680 KB
testcase_04 AC 128 ms
41,196 KB
testcase_05 AC 129 ms
41,584 KB
testcase_06 AC 127 ms
41,624 KB
testcase_07 AC 120 ms
40,360 KB
testcase_08 AC 132 ms
41,460 KB
testcase_09 AC 136 ms
41,720 KB
testcase_10 AC 123 ms
40,104 KB
testcase_11 AC 130 ms
41,492 KB
testcase_12 AC 130 ms
41,260 KB
testcase_13 AC 131 ms
41,792 KB
testcase_14 AC 120 ms
40,388 KB
testcase_15 AC 134 ms
41,236 KB
testcase_16 AC 130 ms
41,496 KB
testcase_17 AC 130 ms
41,248 KB
testcase_18 AC 131 ms
41,560 KB
testcase_19 AC 141 ms
42,124 KB
testcase_20 AC 145 ms
43,064 KB
testcase_21 AC 131 ms
41,548 KB
testcase_22 AC 134 ms
41,408 KB
testcase_23 AC 130 ms
41,660 KB
testcase_24 AC 129 ms
41,680 KB
testcase_25 AC 155 ms
44,044 KB
testcase_26 AC 130 ms
41,356 KB
testcase_27 AC 127 ms
41,372 KB
testcase_28 AC 129 ms
41,716 KB
testcase_29 AC 128 ms
41,672 KB
testcase_30 AC 129 ms
41,628 KB
testcase_31 AC 114 ms
41,364 KB
testcase_32 AC 144 ms
42,648 KB
testcase_33 AC 173 ms
46,112 KB
testcase_34 AC 172 ms
46,528 KB
testcase_35 AC 149 ms
43,812 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