結果
問題 | No.1946 ロッカーの問題 |
ユーザー | tenten |
提出日時 | 2023-02-24 15:45:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,016 ms / 3,000 ms |
コード長 | 2,287 bytes |
コンパイル時間 | 2,762 ms |
コンパイル使用メモリ | 95,932 KB |
実行使用メモリ | 138,356 KB |
最終ジャッジ日時 | 2024-09-12 23:09:20 |
合計ジャッジ時間 | 12,412 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
50,156 KB |
testcase_01 | AC | 57 ms
50,544 KB |
testcase_02 | AC | 726 ms
112,120 KB |
testcase_03 | AC | 1,011 ms
134,944 KB |
testcase_04 | AC | 724 ms
112,120 KB |
testcase_05 | AC | 485 ms
100,384 KB |
testcase_06 | AC | 655 ms
110,792 KB |
testcase_07 | AC | 460 ms
98,292 KB |
testcase_08 | AC | 475 ms
78,232 KB |
testcase_09 | AC | 897 ms
116,220 KB |
testcase_10 | AC | 801 ms
110,472 KB |
testcase_11 | AC | 143 ms
54,724 KB |
testcase_12 | AC | 402 ms
79,128 KB |
testcase_13 | AC | 55 ms
50,400 KB |
testcase_14 | AC | 55 ms
50,400 KB |
testcase_15 | AC | 118 ms
57,240 KB |
testcase_16 | AC | 56 ms
50,572 KB |
testcase_17 | AC | 561 ms
85,216 KB |
testcase_18 | AC | 1,016 ms
138,356 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); HashSet<Integer> opens = new HashSet<>(); for (int i = 0; i < m; i++) { opens.add(sc.nextInt()); } ArrayList<ArrayList<Integer>> targets = new ArrayList<>(); for (int i = 0; i <= n; i++) { targets.add(new ArrayList<>()); } for (int i = 1; i <= n; i++) { for (int j = 1; j * i <= n; j++) { targets.get(j * i).add(i); } } int ans = 0; boolean[] isOpens = new boolean[n + 1]; for (int i = n; i >= 1; i--) { if (isOpens[i] == opens.contains(i)) { ans++; } else { for (int x : targets.get(i)) { isOpens[x] ^= true; } } } System.out.println(ans); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } 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 int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }