結果

問題 No.1665 quotient replace
ユーザー nok0nok0
提出日時 2021-08-09 23:05:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 619 ms / 3,000 ms
コード長 1,191 bytes
コンパイル時間 2,859 ms
コンパイル使用メモリ 206,328 KB
実行使用メモリ 7,708 KB
最終ジャッジ日時 2024-05-09 00:37:48
合計ジャッジ時間 13,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
7,564 KB
testcase_01 AC 12 ms
7,708 KB
testcase_02 AC 12 ms
7,564 KB
testcase_03 AC 14 ms
7,560 KB
testcase_04 AC 13 ms
7,680 KB
testcase_05 AC 12 ms
7,560 KB
testcase_06 AC 17 ms
7,568 KB
testcase_07 AC 13 ms
7,680 KB
testcase_08 AC 16 ms
7,688 KB
testcase_09 AC 31 ms
7,688 KB
testcase_10 AC 223 ms
7,564 KB
testcase_11 AC 471 ms
7,568 KB
testcase_12 AC 66 ms
7,564 KB
testcase_13 AC 612 ms
7,692 KB
testcase_14 AC 619 ms
7,564 KB
testcase_15 AC 618 ms
7,680 KB
testcase_16 AC 610 ms
7,564 KB
testcase_17 AC 609 ms
7,696 KB
testcase_18 AC 12 ms
7,564 KB
testcase_19 AC 12 ms
7,560 KB
testcase_20 AC 13 ms
7,564 KB
testcase_21 AC 12 ms
7,564 KB
testcase_22 AC 12 ms
7,680 KB
testcase_23 AC 12 ms
7,564 KB
testcase_24 AC 12 ms
7,612 KB
testcase_25 AC 13 ms
7,560 KB
testcase_26 AC 13 ms
7,564 KB
testcase_27 AC 14 ms
7,680 KB
testcase_28 AC 25 ms
7,568 KB
testcase_29 AC 39 ms
7,564 KB
testcase_30 AC 222 ms
7,568 KB
testcase_31 AC 333 ms
7,680 KB
testcase_32 AC 448 ms
7,680 KB
testcase_33 AC 179 ms
7,680 KB
testcase_34 AC 363 ms
7,692 KB
testcase_35 AC 330 ms
7,680 KB
testcase_36 AC 353 ms
7,680 KB
testcase_37 AC 314 ms
7,560 KB
testcase_38 AC 391 ms
7,568 KB
testcase_39 AC 270 ms
7,680 KB
testcase_40 AC 271 ms
7,688 KB
testcase_41 AC 269 ms
7,564 KB
testcase_42 AC 11 ms
7,696 KB
testcase_43 AC 12 ms
7,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct osa_k {
private:
	std::vector<int> spf, pr;

public:
	osa_k() = default;

	osa_k(int MAX) : spf(MAX + 1) {
		for(int i = 2; i <= MAX; i++) {
			if(spf[i] == 0) {
				spf[i] = i;
				pr.push_back(i);
			}
			for(int j = 0; j < pr.size() and pr[j] <= spf[i] and i * pr[j] <= MAX; j++)
				spf[i * pr[j]] = pr[j];
		}
	}

	std::vector<std::pair<int, int>> PF(int n) {
		std::vector<std::pair<int, int>> divisor;
		if(n == 1) return divisor;
		int before = spf[n], cnt = 0;
		while(n > 1) {
			if(spf[n] == before) {
				cnt++;
				n /= spf[n];
			} else {
				divisor.emplace_back(before, cnt);
				before = spf[n];
				cnt = 1;
				n /= spf[n];
			}
		}
		divisor.emplace_back(before, cnt);
		return divisor;
	}

	int smallestprimefactor(const int n) const {
		return spf[n];
	}

	bool isPrime(const int n) const {
		return n == spf[n];
	}
};

const int m = 1000000;
osa_k pf(m);
int main() {
	int n;
	cin >> n;
	int fold = 0;
	while(n--) {
		int a;
		cin >> a;
		if(a == 1) continue;
		auto vec = pf.PF(a);
		int tmp = 0;
		for(auto [val, cnt] : vec) tmp += cnt;
		fold ^= tmp;
	}
	cout << (fold ? "white" : "black") << '\n';
	return 0;
}
0