結果

問題 No.1665 quotient replace
ユーザー kabipoyokabipoyo
提出日時 2022-01-04 03:56:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 539 ms / 3,000 ms
コード長 1,774 bytes
コンパイル時間 4,264 ms
コンパイル使用メモリ 264,212 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-10-13 17:32:43
合計ジャッジ時間 13,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
11,136 KB
testcase_01 AC 16 ms
11,008 KB
testcase_02 AC 15 ms
11,008 KB
testcase_03 AC 15 ms
11,008 KB
testcase_04 AC 16 ms
11,136 KB
testcase_05 AC 15 ms
11,008 KB
testcase_06 AC 18 ms
11,136 KB
testcase_07 AC 15 ms
11,008 KB
testcase_08 AC 17 ms
11,264 KB
testcase_09 AC 30 ms
11,520 KB
testcase_10 AC 185 ms
16,384 KB
testcase_11 AC 411 ms
22,912 KB
testcase_12 AC 56 ms
12,416 KB
testcase_13 AC 518 ms
26,624 KB
testcase_14 AC 539 ms
26,624 KB
testcase_15 AC 533 ms
26,624 KB
testcase_16 AC 523 ms
26,624 KB
testcase_17 AC 534 ms
26,752 KB
testcase_18 AC 17 ms
11,008 KB
testcase_19 AC 16 ms
11,008 KB
testcase_20 AC 15 ms
11,008 KB
testcase_21 AC 17 ms
11,008 KB
testcase_22 AC 16 ms
11,008 KB
testcase_23 AC 16 ms
11,136 KB
testcase_24 AC 16 ms
11,008 KB
testcase_25 AC 17 ms
11,008 KB
testcase_26 AC 16 ms
11,264 KB
testcase_27 AC 19 ms
11,264 KB
testcase_28 AC 28 ms
11,520 KB
testcase_29 AC 40 ms
12,160 KB
testcase_30 AC 201 ms
19,072 KB
testcase_31 AC 297 ms
23,168 KB
testcase_32 AC 373 ms
22,528 KB
testcase_33 AC 148 ms
15,360 KB
testcase_34 AC 304 ms
20,224 KB
testcase_35 AC 283 ms
19,456 KB
testcase_36 AC 294 ms
19,840 KB
testcase_37 AC 266 ms
18,944 KB
testcase_38 AC 329 ms
20,736 KB
testcase_39 AC 237 ms
17,664 KB
testcase_40 AC 227 ms
17,792 KB
testcase_41 AC 230 ms
17,792 KB
testcase_42 AC 16 ms
11,136 KB
testcase_43 AC 15 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef int64_t lint;
#define rep(i, n) for(int i=0; i<n; i++)
#define repx(i, l, n) for(int i=l; i<n; i++)
#define all(v) v.begin(), v.end()
#define show(x) cout << #x << ": " << x << endl;
#define list(x) cout << #x << ": " << x << "  ";
#define pb push_back
using vi = vector<lint>;
using vvi = vector<vector<lint>>;
template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<class T> inline void drop(T x) { cout << x << endl; exit(0); }
template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; }
constexpr lint LINF = LLONG_MAX/2;
struct Sieve {
	int n;
	vector<lint> p;
	Sieve(int n=1):n(n), p(n+1) {
		p.at(0) = -1, p.at(1) = -1;
		for(lint i=2; i<=n; i++) {
			if(!p.at(i)) {
				p.at(i) = i;
				for(lint j=i*i; j<=n; j+=i) {
					if (!p.at(j)) p.at(j) = i;
				}
			}
		}
	}
	bool isPrime(int x) { return p.at(x) == x;}
	vector<lint> factorList(int x) {
		vector<lint> v;
		while (x != 1) {
			v.push_back(p.at(x));
			x /= p.at(x);
		}
		return v;
	}
	vector<lint> factor(int x) {
		vector<lint> v;
		while (x != 1) {
			int t = p.at(x);
			v.push_back(t);
			while (x % t == 0) x /= t;
		}
		return v;
	}
};

int main() {
	lint N;
	cin >> N;
	vi v(N), w(N);
	vin(v);

	lint a=0, b=0, c=0, x, y, z;
	Sieve S(1001001);
	rep(i, N) {
		if (v[i] == 1) continue;
		w[i] = S.factorList(v[i]).size();
	}
	rep(i, N) {
		a ^= w[i];
	}
	if (!a) std::cout << "black" << '\n';
	else std::cout << "white" << '\n';
}
0