結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,760 KB
testcase_01 AC 12 ms
5,632 KB
testcase_02 AC 12 ms
5,632 KB
testcase_03 AC 12 ms
5,632 KB
testcase_04 AC 13 ms
5,632 KB
testcase_05 AC 12 ms
5,632 KB
testcase_06 AC 14 ms
5,632 KB
testcase_07 AC 12 ms
5,632 KB
testcase_08 AC 13 ms
5,632 KB
testcase_09 AC 17 ms
5,760 KB
testcase_10 AC 77 ms
6,912 KB
testcase_11 AC 159 ms
8,576 KB
testcase_12 AC 28 ms
5,888 KB
testcase_13 AC 199 ms
9,472 KB
testcase_14 AC 204 ms
9,472 KB
testcase_15 AC 200 ms
9,472 KB
testcase_16 AC 206 ms
9,452 KB
testcase_17 AC 201 ms
9,520 KB
testcase_18 AC 11 ms
5,632 KB
testcase_19 AC 11 ms
5,632 KB
testcase_20 AC 11 ms
5,632 KB
testcase_21 AC 11 ms
5,632 KB
testcase_22 AC 11 ms
5,632 KB
testcase_23 AC 11 ms
5,632 KB
testcase_24 AC 11 ms
5,888 KB
testcase_25 AC 11 ms
5,632 KB
testcase_26 AC 11 ms
5,632 KB
testcase_27 AC 12 ms
5,632 KB
testcase_28 AC 15 ms
5,760 KB
testcase_29 AC 19 ms
6,016 KB
testcase_30 AC 74 ms
7,552 KB
testcase_31 AC 104 ms
8,704 KB
testcase_32 AC 149 ms
8,448 KB
testcase_33 AC 62 ms
6,656 KB
testcase_34 AC 122 ms
7,936 KB
testcase_35 AC 112 ms
7,808 KB
testcase_36 AC 120 ms
7,808 KB
testcase_37 AC 106 ms
7,552 KB
testcase_38 AC 126 ms
8,064 KB
testcase_39 AC 91 ms
7,424 KB
testcase_40 AC 92 ms
7,424 KB
testcase_41 AC 91 ms
7,424 KB
testcase_42 AC 12 ms
5,632 KB
testcase_43 AC 11 ms
5,760 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