結果
| 問題 | No.1946 ロッカーの問題 |
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2022-05-23 17:37:43 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 708 ms / 3,000 ms |
| コード長 | 1,513 bytes |
| コンパイル時間 | 2,462 ms |
| コンパイル使用メモリ | 76,896 KB |
| 実行使用メモリ | 47,184 KB |
| 最終ジャッジ日時 | 2024-09-20 13:15:18 |
| 合計ジャッジ時間 | 7,395 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
ソースコード
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 m = sc.nextInt();
boolean[] isOpen = new boolean[n + 1];
for (int i = 0; i < m; i++) {
isOpen[sc.nextInt()] = true;
}
int count = 0;
for (int i = n; i > 0; i--) {
if (!isOpen[i]) {
count++;
continue;
}
for (int j = 1; j <= Math.sqrt(i); j++) {
if (i % j == 0) {
isOpen[j] ^= true;
if (j * j < i) {
isOpen[i / j] ^= true;
}
}
}
}
System.out.println(count);
}
}
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 {
if (!st.hasMoreTokens()) {
st = new StringTokenizer(br.readLine());
}
return st.nextToken();
}
}
tenten