結果

問題 No.1946 ロッカーの問題
ユーザー tentententen
提出日時 2022-09-27 11:33:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 692 ms / 3,000 ms
コード長 1,595 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 77,936 KB
実行使用メモリ 47,752 KB
最終ジャッジ日時 2024-06-02 00:56:02
合計ジャッジ時間 7,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,284 KB
testcase_01 AC 47 ms
37,092 KB
testcase_02 AC 50 ms
37,424 KB
testcase_03 AC 668 ms
47,752 KB
testcase_04 AC 52 ms
37,416 KB
testcase_05 AC 121 ms
40,640 KB
testcase_06 AC 124 ms
41,104 KB
testcase_07 AC 106 ms
39,508 KB
testcase_08 AC 282 ms
44,860 KB
testcase_09 AC 544 ms
47,744 KB
testcase_10 AC 474 ms
45,604 KB
testcase_11 AC 86 ms
39,148 KB
testcase_12 AC 186 ms
41,812 KB
testcase_13 AC 48 ms
37,032 KB
testcase_14 AC 47 ms
37,204 KB
testcase_15 AC 47 ms
37,044 KB
testcase_16 AC 46 ms
37,160 KB
testcase_17 AC 381 ms
44,860 KB
testcase_18 AC 692 ms
45,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
    }
    
}
0