結果

問題 No.1946 ロッカーの問題
ユーザー elpheelphe
提出日時 2024-11-14 15:13:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 3,000 ms
コード長 640 bytes
コンパイル時間 994 ms
コンパイル使用メモリ 76,120 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 15:13:24
合計ジャッジ時間 2,271 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 6 ms
6,820 KB
testcase_03 AC 21 ms
6,820 KB
testcase_04 AC 6 ms
6,820 KB
testcase_05 AC 5 ms
6,820 KB
testcase_06 AC 5 ms
6,820 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 8 ms
6,820 KB
testcase_09 AC 19 ms
6,816 KB
testcase_10 AC 16 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 6 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 9 ms
6,816 KB
testcase_18 AC 16 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint32_t N, M, i, j;
	cin >> N >> M;
	vector<uint32_t> A(M);
	for (i = 0; i != M; ++i) cin >> A[i];

	vector<bool> result(N, false);
	for (i = 0; i != M; ++i) result[A[i] - 1] = true;

	vector<bool> is_skipped(N, false);
	uint32_t ans = 0;
	for (i = N; i != 0; --i)
	{
		uint32_t skip_count = 0;
		for (j = i * 2; j <= N; j += i)
			if (is_skipped[j - 1]) ++skip_count;

		if (((N / i - skip_count) & 1) != result[i - 1])
			is_skipped[i - 1] = true, ++ans;
	}

	cout << ans << '\n';
	return 0;
}
0