結果

問題 No.1946 ロッカーの問題
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-29 14:27:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 239 ms / 3,000 ms
コード長 534 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 205,040 KB
実行使用メモリ 39,552 KB
最終ジャッジ日時 2024-07-06 05:28:27
合計ジャッジ時間 4,338 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 231 ms
39,424 KB
testcase_03 AC 239 ms
39,552 KB
testcase_04 AC 174 ms
39,552 KB
testcase_05 AC 105 ms
29,312 KB
testcase_06 AC 129 ms
32,768 KB
testcase_07 AC 86 ms
25,856 KB
testcase_08 AC 53 ms
14,720 KB
testcase_09 AC 200 ms
35,712 KB
testcase_10 AC 162 ms
30,720 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 56 ms
18,048 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 9 ms
6,400 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 81 ms
20,736 KB
testcase_18 AC 228 ms
39,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){

    ll N, M, c, ans=0;
    cin >> N >> M;

    vector<ll> cnt(N+1), open(N+1);
    vector<vector<ll>> div(N+1);

    for (int i=1; i<=N; i++){
        for (int j=i; j<=N; j+=i) div[j].push_back(i);
    }

    for (int i=1; i<=M; i++){
        cin >> c;
        open[c] = 1;
    }

    for (int i=N; i>=1; i--){
        if (open[i] != (cnt[i]+1) % 2) ans++;
        else for (auto x : div[i]) cnt[x]++;
    }

    cout << ans << endl;

    return 0;
}
0