結果

問題 No.1946 ロッカーの問題
ユーザー pengin_2000pengin_2000
提出日時 2022-07-02 11:37:34
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 214 ms / 3,000 ms
コード長 533 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 30,592 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 09:17:05
合計ジャッジ時間 2,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 212 ms
5,376 KB
testcase_03 AC 68 ms
5,376 KB
testcase_04 AC 214 ms
5,376 KB
testcase_05 AC 128 ms
5,376 KB
testcase_06 AC 153 ms
5,376 KB
testcase_07 AC 108 ms
5,376 KB
testcase_08 AC 17 ms
5,376 KB
testcase_09 AC 60 ms
5,376 KB
testcase_10 AC 49 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 42 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 17 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int a[200005];
int t[200005], s[200005];
int main()
{
	int n, m;
	scanf("%d %d", &n, &m);
	int i, j;
	for (i = 0; i < m; i++)
		scanf("%d", &a[i]);
	for (i = 1; i <= n; i++)
		t[i] = n / i % 2;
	for (i = 0; i <= n; i++)
		s[i] = 0;
	for (i = 0; i < m; i++)
		s[a[i]] = 1;
	int ans = 0;
	for (i = n; i > 0; i--)
	{
		if (s[i] == t[i])
			continue;
		ans++;
		for (j = 1; j * j <= i; j++)
		{
			if (i % j > 0)
				continue;
			s[j] ^= 1;
			if (j * j < i)
				s[i / j] ^= 1;
		}
	}
	printf("%d\n", ans);
	return 0;
}
0