結果

問題 No.1946 ロッカーの問題
ユーザー tentententen
提出日時 2023-08-08 12:57:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 763 ms / 3,000 ms
コード長 2,081 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 92,304 KB
実行使用メモリ 46,976 KB
最終ジャッジ日時 2024-11-08 18:37:28
合計ジャッジ時間 8,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,104 KB
testcase_01 AC 52 ms
37,048 KB
testcase_02 AC 55 ms
36,972 KB
testcase_03 AC 674 ms
46,976 KB
testcase_04 AC 54 ms
36,856 KB
testcase_05 AC 118 ms
40,080 KB
testcase_06 AC 94 ms
38,912 KB
testcase_07 AC 114 ms
39,640 KB
testcase_08 AC 319 ms
44,596 KB
testcase_09 AC 610 ms
46,884 KB
testcase_10 AC 528 ms
45,728 KB
testcase_11 AC 98 ms
39,200 KB
testcase_12 AC 205 ms
41,824 KB
testcase_13 AC 51 ms
36,992 KB
testcase_14 AC 50 ms
36,956 KB
testcase_15 AC 51 ms
37,224 KB
testcase_16 AC 51 ms
37,228 KB
testcase_17 AC 413 ms
44,608 KB
testcase_18 AC 763 ms
45,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
        boolean[] opens = new boolean[n + 1];
        while (m-- > 0) {
            opens[sc.nextInt()] = true;
        }
        int ans = 0;
        for (int i = n; i >= 1; i--) {
            if (opens[i]) {
                for (int j = 1; j <= Math.sqrt(i); j++) {
                    if (i % j == 0) {
                        opens[j] ^= true;
                        if (j * j < i) {
                            opens[i / j] ^= true;
                        }
                    }
                }
            } else {
                ans++;
            }
        }
        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();
    }
    
}
0