結果

問題 No.1946 ロッカーの問題
ユーザー nawawannawawan
提出日時 2022-05-20 22:37:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 243 ms / 3,000 ms
コード長 909 bytes
コンパイル時間 765 ms
コンパイル使用メモリ 85,484 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-09-20 08:55:02
合計ジャッジ時間 2,724 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 236 ms
5,376 KB
testcase_03 AC 115 ms
5,504 KB
testcase_04 AC 243 ms
5,376 KB
testcase_05 AC 151 ms
5,376 KB
testcase_06 AC 179 ms
5,376 KB
testcase_07 AC 123 ms
5,376 KB
testcase_08 AC 31 ms
5,376 KB
testcase_09 AC 100 ms
5,376 KB
testcase_10 AC 82 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 53 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 21 ms
5,376 KB
testcase_18 AC 44 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <utility>
#include <set>
#include <map>
#include <queue>
using namespace std;
int main()
{
    int N, M;
    cin >> N >> M;
    vector<int> A(M);
    vector<int> temp(N + 1);
    for (int i = 0; i < M; i++)
    {
        cin >> A[i];
        temp[A[i]] = 1;
    }
    vector<int> cnt(N + 1);
    for (int i = 1; i <= N; i++)
    {
        for (int j = i; j <= N; j += i)
            cnt[i]++;
    }
    int ans = 0;
    for (int i = N; i >= 1; i--)
    {
        if (cnt[i] % 2 == temp[i])
            continue;
        else
        {
            ans++;
            for (int j = 1; j * j <= i; j++)
            {
                if (i % j == 0)
                {
                    cnt[j]--;
                    if (j * j != i)
                        cnt[i / j]--;
                }
            }
        }
    }
    cout << ans << endl;
}
0