結果

問題 No.1665 quotient replace
ユーザー pengin_2000pengin_2000
提出日時 2021-09-03 22:12:37
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 173 ms / 3,000 ms
コード長 533 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 9,564 KB
最終ジャッジ日時 2024-12-15 13:50:47
合計ジャッジ時間 5,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 9 ms
6,820 KB
testcase_02 AC 9 ms
6,824 KB
testcase_03 AC 9 ms
6,820 KB
testcase_04 AC 10 ms
6,816 KB
testcase_05 AC 10 ms
7,160 KB
testcase_06 AC 10 ms
6,820 KB
testcase_07 AC 10 ms
6,820 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 15 ms
6,824 KB
testcase_10 AC 64 ms
7,072 KB
testcase_11 AC 132 ms
9,500 KB
testcase_12 AC 22 ms
6,820 KB
testcase_13 AC 171 ms
9,528 KB
testcase_14 AC 169 ms
9,544 KB
testcase_15 AC 169 ms
9,564 KB
testcase_16 AC 173 ms
9,500 KB
testcase_17 AC 170 ms
9,564 KB
testcase_18 AC 10 ms
6,816 KB
testcase_19 AC 11 ms
6,820 KB
testcase_20 AC 10 ms
6,820 KB
testcase_21 AC 10 ms
6,820 KB
testcase_22 AC 10 ms
6,816 KB
testcase_23 AC 10 ms
6,820 KB
testcase_24 AC 10 ms
6,820 KB
testcase_25 AC 10 ms
6,820 KB
testcase_26 AC 10 ms
6,816 KB
testcase_27 AC 10 ms
6,816 KB
testcase_28 AC 14 ms
6,820 KB
testcase_29 AC 17 ms
7,556 KB
testcase_30 AC 67 ms
9,540 KB
testcase_31 AC 96 ms
9,492 KB
testcase_32 AC 126 ms
9,468 KB
testcase_33 AC 53 ms
6,932 KB
testcase_34 AC 100 ms
9,488 KB
testcase_35 AC 94 ms
9,536 KB
testcase_36 AC 98 ms
9,504 KB
testcase_37 AC 96 ms
9,524 KB
testcase_38 AC 113 ms
9,480 KB
testcase_39 AC 83 ms
9,556 KB
testcase_40 AC 80 ms
9,336 KB
testcase_41 AC 76 ms
9,480 KB
testcase_42 AC 10 ms
6,820 KB
testcase_43 AC 10 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main()
{
	int n;
	scanf("%d", &n);
	int i, j;
	int a[1000006];
	for (i = 0; i < n; i++)
		scanf("%d", &a[i]);
	int div[1000006];
	for (i = 0; i < 1000006; i++)
		div[i] = i;
	for (i = 2; i < 1000006; i++)
	{
		if (div[i] != i)
			continue;
		for (j = 2; i * j < 1000006; j++)
			div[i * j] = i;
	}
	long long int x = 0, cnt;
	for (i = 0; i < n; i++)
	{
		cnt = 0;
		while (a[i] > 1)
		{
			cnt++;
			a[i] /= div[a[i]];
		}
		x ^= cnt;
	}
	if (x == 0)
		printf("black\n");
	else
		printf("white\n");
	return 0;
}
0