結果
| 問題 |
No.407 鴨等素数間隔列の数え上げ
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2022-08-01 19:07:35 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 111 ms / 1,000 ms |
| コード長 | 1,351 bytes |
| コンパイル時間 | 3,185 ms |
| コンパイル使用メモリ | 77,636 KB |
| 実行使用メモリ | 43,256 KB |
| 最終ジャッジ日時 | 2024-07-22 09:58:09 |
| 合計ジャッジ時間 | 5,354 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 31 |
ソースコード
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner();
int n = sc.nextInt();
int length = sc.nextInt();
boolean[] isNotPrime = new boolean[length / 2 + 2];
long ans = 0;
for (int i = 2; i < isNotPrime.length && i * (n - 1) <= length; i++) {
if (!isNotPrime[i]) {
ans += length - i * (n - 1) + 1;
for (int j = 2; j * i < isNotPrime.length; j++) {
isNotPrime[j * i] = true;
}
}
}
System.out.println(ans);
}
}
class Scanner {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer("");
public Scanner() throws Exception {
}
public int nextInt() throws Exception {
return Integer.parseInt(next());
}
public long nextLong() throws Exception {
return Long.parseLong(next());
}
public double nextDouble() throws Exception {
return Double.parseDouble(next());
}
public String next() throws Exception {
while (!st.hasMoreTokens()) {
st = new StringTokenizer(br.readLine());
}
return st.nextToken();
}
}
tenten