結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-07 03:24:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 234 ms / 1,000 ms
コード長 759 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 78,196 KB
実行使用メモリ 57,152 KB
最終ジャッジ日時 2024-06-25 03:00:46
合計ジャッジ時間 8,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,328 KB
testcase_01 AC 131 ms
41,124 KB
testcase_02 AC 132 ms
41,244 KB
testcase_03 AC 163 ms
42,056 KB
testcase_04 AC 131 ms
41,196 KB
testcase_05 AC 118 ms
39,944 KB
testcase_06 AC 132 ms
41,396 KB
testcase_07 AC 132 ms
41,244 KB
testcase_08 AC 131 ms
41,004 KB
testcase_09 AC 134 ms
41,248 KB
testcase_10 AC 132 ms
41,308 KB
testcase_11 AC 119 ms
40,172 KB
testcase_12 AC 131 ms
41,132 KB
testcase_13 AC 119 ms
40,084 KB
testcase_14 AC 132 ms
41,312 KB
testcase_15 AC 132 ms
41,364 KB
testcase_16 AC 132 ms
40,972 KB
testcase_17 AC 131 ms
41,260 KB
testcase_18 AC 129 ms
41,116 KB
testcase_19 AC 161 ms
43,292 KB
testcase_20 AC 175 ms
47,568 KB
testcase_21 AC 134 ms
41,164 KB
testcase_22 AC 132 ms
41,196 KB
testcase_23 AC 135 ms
41,524 KB
testcase_24 AC 132 ms
41,232 KB
testcase_25 AC 174 ms
50,188 KB
testcase_26 AC 129 ms
40,956 KB
testcase_27 AC 130 ms
41,140 KB
testcase_28 AC 130 ms
41,108 KB
testcase_29 AC 131 ms
41,156 KB
testcase_30 AC 133 ms
41,212 KB
testcase_31 AC 131 ms
41,352 KB
testcase_32 AC 159 ms
46,624 KB
testcase_33 AC 234 ms
57,152 KB
testcase_34 AC 232 ms
56,988 KB
testcase_35 AC 190 ms
51,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    long l = sc.nextLong();
    int t = (int)l / (n - 1);
    ArrayList<Long> prime = new ArrayList<Long>();
    boolean[] is_prime = new boolean[t + 1];
    for(int i = 0; i <= t; i++) is_prime[i] = true;
    is_prime[0] = false;
    if(t >= 1) is_prime[1] = false;
    for(int i = 2; i <= t; i++) {
      if(is_prime[i]) {
        prime.add((long)i);
        for(int j = 2 * i; j <= t; j += i) is_prime[j] = false;
      }
    }
    long ans = 0;
    for(int i = 0; i < prime.size(); i++) {
      long p = prime.get(i);
      ans += (l + 1 - p * (long)(n - 1));
    }
    System.out.println(ans);    
  }
}
0