結果

問題 No.1946 ロッカーの問題
ユーザー ruthenruthen
提出日時 2022-05-21 00:00:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 3,000 ms
コード長 787 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 204,040 KB
実行使用メモリ 25,356 KB
最終ジャッジ日時 2024-09-20 10:24:36
合計ジャッジ時間 3,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 153 ms
25,216 KB
testcase_03 AC 178 ms
25,344 KB
testcase_04 AC 151 ms
25,356 KB
testcase_05 AC 88 ms
19,200 KB
testcase_06 AC 108 ms
21,248 KB
testcase_07 AC 73 ms
17,152 KB
testcase_08 AC 35 ms
10,368 KB
testcase_09 AC 152 ms
23,028 KB
testcase_10 AC 108 ms
19,968 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 41 ms
12,416 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 55 ms
13,952 KB
testcase_18 AC 198 ms
25,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#ifdef _RUTHEN
#include "debug.hpp"
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
template <class T> using V = vector<T>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N, M;
    cin >> N >> M;
    V<int> A(N + 1, 0);
    rep(i, M) {
        int a;
        cin >> a;
        A[a] = 1;
    }
    V<V<int>> G(N + 1);
    for (int i = 1; i <= N; i++) {
        for (int j = 2 * i; j <= N; j += i) {
            G[j].push_back(i);
        }
    }
    int ans = 0;
    for (int i = N; i > 0; i--) {
        if (A[i] == 0) {
            ans++;
        } else {
            for (auto j : G[i]) A[j] ^= 1;
        }
    }
    cout << ans << '\n';
    return 0;
}
0