結果

問題 No.1946 ロッカーの問題
ユーザー atjh16atjh16
提出日時 2022-09-23 12:48:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 292 ms / 3,000 ms
コード長 481 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 200,456 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-01 18:11:23
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 291 ms
5,376 KB
testcase_03 AC 125 ms
5,376 KB
testcase_04 AC 292 ms
5,376 KB
testcase_05 AC 182 ms
5,376 KB
testcase_06 AC 215 ms
5,376 KB
testcase_07 AC 150 ms
5,376 KB
testcase_08 AC 34 ms
5,376 KB
testcase_09 AC 110 ms
5,376 KB
testcase_10 AC 91 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 66 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 12 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 <bits/stdc++.h>
using namespace std;

int n, m, a, t;
bool f[200001];

int main() {
	cin >> n >> m;

	for (int i = 0; i < m; i++) {		
		cin >> a;
		f[a] = 1;
	}

	for (int i = n; i > 0; i--) {
		int u = n / i;

		if ((u & 1) ^ f[i]) {
			t++;

			for (int j = 1; j < sqrt(i); j++) {
				if (i % j == 0) {
					f[j] = 1 - f[j];
					f[i / j] = 1 - f[i / j];
				}
			}

			int k = (int)sqrt(i);

			if (k * k == i) {
				f[k] = 1 - f[k];
			}
		}
	}

	cout << t << endl;
}
0