結果

問題 No.1665 quotient replace
ユーザー kotatsugamekotatsugame
提出日時 2021-09-03 21:32:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 443 ms / 3,000 ms
コード長 299 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 64,040 KB
実行使用メモリ 15,788 KB
最終ジャッジ日時 2024-05-09 02:03:20
合計ジャッジ時間 10,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
15,616 KB
testcase_01 AC 65 ms
15,744 KB
testcase_02 AC 66 ms
15,620 KB
testcase_03 AC 66 ms
15,616 KB
testcase_04 AC 67 ms
15,744 KB
testcase_05 AC 67 ms
15,788 KB
testcase_06 AC 70 ms
15,740 KB
testcase_07 AC 67 ms
15,684 KB
testcase_08 AC 68 ms
15,616 KB
testcase_09 AC 78 ms
15,744 KB
testcase_10 AC 192 ms
15,672 KB
testcase_11 AC 348 ms
15,788 KB
testcase_12 AC 99 ms
15,616 KB
testcase_13 AC 443 ms
15,744 KB
testcase_14 AC 438 ms
15,744 KB
testcase_15 AC 443 ms
15,616 KB
testcase_16 AC 439 ms
15,744 KB
testcase_17 AC 438 ms
15,744 KB
testcase_18 AC 68 ms
15,616 KB
testcase_19 AC 67 ms
15,616 KB
testcase_20 AC 69 ms
15,616 KB
testcase_21 AC 66 ms
15,740 KB
testcase_22 AC 67 ms
15,616 KB
testcase_23 AC 67 ms
15,616 KB
testcase_24 AC 66 ms
15,592 KB
testcase_25 AC 67 ms
15,616 KB
testcase_26 AC 67 ms
15,728 KB
testcase_27 AC 69 ms
15,624 KB
testcase_28 AC 79 ms
15,616 KB
testcase_29 AC 90 ms
15,744 KB
testcase_30 AC 255 ms
15,744 KB
testcase_31 AC 343 ms
15,744 KB
testcase_32 AC 337 ms
15,616 KB
testcase_33 AC 169 ms
15,616 KB
testcase_34 AC 283 ms
15,616 KB
testcase_35 AC 267 ms
15,672 KB
testcase_36 AC 275 ms
15,676 KB
testcase_37 AC 254 ms
15,616 KB
testcase_38 AC 292 ms
15,608 KB
testcase_39 AC 303 ms
15,644 KB
testcase_40 AC 223 ms
15,568 KB
testcase_41 AC 225 ms
15,744 KB
testcase_42 AC 69 ms
15,744 KB
testcase_43 AC 67 ms
15,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
long isp[1<<20];
int X[1<<20];
main()
{
	for(int i=1;i<1<<20;i++)
	{
		while(isp[i]>>X[i]&1)X[i]++;
		for(int j=i+i;j<1<<20;j+=i)isp[j]|=1LL<<X[i];
	}
	int N;
	cin>>N;
	int x=0;
	for(;N--;)
	{
		int A;cin>>A;
		x^=X[A];
	}
	cout<<(x?"white":"black")<<endl;
}
0