結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-07 03:23:17
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 748 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 75,268 KB
実行使用メモリ 57,068 KB
最終ジャッジ日時 2024-06-25 03:00:03
合計ジャッジ時間 8,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,164 KB
testcase_01 AC 132 ms
41,224 KB
testcase_02 RE -
testcase_03 AC 161 ms
42,008 KB
testcase_04 AC 117 ms
40,240 KB
testcase_05 AC 130 ms
41,112 KB
testcase_06 AC 131 ms
41,300 KB
testcase_07 AC 132 ms
41,088 KB
testcase_08 AC 132 ms
41,056 KB
testcase_09 AC 130 ms
41,396 KB
testcase_10 AC 129 ms
41,336 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 127 ms
40,984 KB
testcase_14 AC 130 ms
41,408 KB
testcase_15 RE -
testcase_16 AC 131 ms
41,356 KB
testcase_17 AC 130 ms
41,164 KB
testcase_18 AC 128 ms
41,092 KB
testcase_19 AC 159 ms
43,084 KB
testcase_20 AC 174 ms
47,528 KB
testcase_21 AC 129 ms
41,012 KB
testcase_22 AC 128 ms
41,380 KB
testcase_23 AC 131 ms
41,164 KB
testcase_24 AC 128 ms
41,280 KB
testcase_25 AC 185 ms
50,600 KB
testcase_26 AC 130 ms
41,172 KB
testcase_27 RE -
testcase_28 AC 131 ms
41,224 KB
testcase_29 AC 130 ms
40,940 KB
testcase_30 AC 131 ms
41,172 KB
testcase_31 AC 129 ms
41,144 KB
testcase_32 AC 172 ms
47,296 KB
testcase_33 AC 233 ms
57,052 KB
testcase_34 AC 233 ms
57,068 KB
testcase_35 AC 191 ms
50,800 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;
    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