結果

問題 No.1665 quotient replace
ユーザー kotatsugamekotatsugame
提出日時 2021-09-03 21:28:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 333 bytes
コンパイル時間 799 ms
コンパイル使用メモリ 63,872 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-05-09 01:46:50
合計ジャッジ時間 8,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
7,592 KB
testcase_01 AC 11 ms
7,552 KB
testcase_02 AC 11 ms
7,552 KB
testcase_03 WA -
testcase_04 AC 11 ms
7,552 KB
testcase_05 AC 13 ms
7,424 KB
testcase_06 AC 14 ms
7,552 KB
testcase_07 AC 12 ms
7,580 KB
testcase_08 AC 13 ms
7,552 KB
testcase_09 AC 27 ms
7,632 KB
testcase_10 AC 159 ms
7,516 KB
testcase_11 AC 345 ms
7,508 KB
testcase_12 AC 46 ms
7,520 KB
testcase_13 AC 447 ms
7,552 KB
testcase_14 AC 457 ms
7,552 KB
testcase_15 AC 447 ms
7,608 KB
testcase_16 AC 445 ms
7,552 KB
testcase_17 AC 448 ms
7,552 KB
testcase_18 AC 11 ms
7,552 KB
testcase_19 AC 11 ms
7,552 KB
testcase_20 AC 11 ms
7,416 KB
testcase_21 AC 11 ms
7,504 KB
testcase_22 WA -
testcase_23 AC 12 ms
7,496 KB
testcase_24 AC 12 ms
7,596 KB
testcase_25 WA -
testcase_26 AC 12 ms
7,532 KB
testcase_27 AC 14 ms
7,552 KB
testcase_28 AC 22 ms
7,524 KB
testcase_29 AC 36 ms
7,552 KB
testcase_30 AC 194 ms
7,536 KB
testcase_31 AC 298 ms
7,424 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 240 ms
7,552 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 196 ms
7,580 KB
testcase_42 AC 11 ms
7,516 KB
testcase_43 AC 11 ms
7,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int isp[1<<20];
main()
{
	for(int i=2;i<1<<20;i++)if(!isp[i])
	{
		for(int j=i;j<1<<20;j+=i)isp[j]=i;
	}
	int N;
	cin>>N;
	int x=0;
	for(;N--;)
	{
		int A;cin>>A;
		while(A>1)
		{
			int p=isp[A];
			int cnt=0;
			while(A%p==0)A/=p,cnt++;
			x^=cnt;
		}
	}
	cout<<(x?"white":"black")<<endl;
}
0