結果
| 問題 |
No.1946 ロッカーの問題
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2022-09-27 11:33:37 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 814 ms / 3,000 ms |
| コード長 | 1,595 bytes |
| コンパイル時間 | 2,259 ms |
| コンパイル使用メモリ | 77,396 KB |
| 実行使用メモリ | 46,964 KB |
| 最終ジャッジ日時 | 2024-12-22 16:40:04 |
| 合計ジャッジ時間 | 7,972 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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 ans = 0;
for (int i = n; i >= 1; i--) {
if (!isOpen[i]) {
ans++;
continue;
}
for (int j = 2; j <= Math.sqrt(i); j++) {
if (i % j == 0) {
isOpen[j] ^= true;
if (j * j < i) {
isOpen[i / j] ^= true;
}
}
}
isOpen[1] ^= true;
}
System.out.println(ans);
}
}
class Scanner {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer("");
StringBuilder sb = new StringBuilder();
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