結果

問題 No.1946 ロッカーの問題
ユーザー tentententen
提出日時 2022-05-23 17:37:43
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,960 KB
testcase_01 AC 44 ms
36,960 KB
testcase_02 AC 50 ms
37,068 KB
testcase_03 AC 661 ms
46,972 KB
testcase_04 AC 51 ms
37,296 KB
testcase_05 AC 112 ms
39,016 KB
testcase_06 AC 115 ms
40,252 KB
testcase_07 AC 111 ms
39,664 KB
testcase_08 AC 280 ms
44,764 KB
testcase_09 AC 587 ms
46,852 KB
testcase_10 AC 553 ms
47,184 KB
testcase_11 AC 98 ms
38,872 KB
testcase_12 AC 199 ms
42,420 KB
testcase_13 AC 44 ms
37,096 KB
testcase_14 AC 43 ms
37,064 KB
testcase_15 AC 45 ms
36,612 KB
testcase_16 AC 47 ms
36,688 KB
testcase_17 AC 371 ms
44,660 KB
testcase_18 AC 708 ms
45,424 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 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();
    }
}
0