結果

問題 No.1665 quotient replace
ユーザー nok0nok0
提出日時 2021-09-03 20:40:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 562 ms / 3,000 ms
コード長 495 bytes
コンパイル時間 3,002 ms
コンパイル使用メモリ 200,940 KB
実行使用メモリ 38,784 KB
最終ジャッジ日時 2024-05-09 00:57:21
合計ジャッジ時間 17,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
38,656 KB
testcase_01 AC 167 ms
38,656 KB
testcase_02 AC 174 ms
38,784 KB
testcase_03 AC 174 ms
38,656 KB
testcase_04 AC 173 ms
38,784 KB
testcase_05 AC 183 ms
38,528 KB
testcase_06 AC 168 ms
38,528 KB
testcase_07 AC 162 ms
38,656 KB
testcase_08 AC 153 ms
38,656 KB
testcase_09 AC 159 ms
38,656 KB
testcase_10 AC 280 ms
38,656 KB
testcase_11 AC 469 ms
38,656 KB
testcase_12 AC 215 ms
38,784 KB
testcase_13 AC 562 ms
38,528 KB
testcase_14 AC 553 ms
38,656 KB
testcase_15 AC 536 ms
38,656 KB
testcase_16 AC 517 ms
38,528 KB
testcase_17 AC 515 ms
38,784 KB
testcase_18 AC 154 ms
38,656 KB
testcase_19 AC 159 ms
38,528 KB
testcase_20 AC 164 ms
38,528 KB
testcase_21 AC 153 ms
38,656 KB
testcase_22 AC 151 ms
38,656 KB
testcase_23 AC 154 ms
38,656 KB
testcase_24 AC 152 ms
38,656 KB
testcase_25 AC 156 ms
38,528 KB
testcase_26 AC 155 ms
38,528 KB
testcase_27 AC 156 ms
38,656 KB
testcase_28 AC 164 ms
38,656 KB
testcase_29 AC 175 ms
38,656 KB
testcase_30 AC 327 ms
38,656 KB
testcase_31 AC 410 ms
38,528 KB
testcase_32 AC 406 ms
38,656 KB
testcase_33 AC 248 ms
38,656 KB
testcase_34 AC 367 ms
38,528 KB
testcase_35 AC 341 ms
38,656 KB
testcase_36 AC 357 ms
38,656 KB
testcase_37 AC 334 ms
38,656 KB
testcase_38 AC 380 ms
38,656 KB
testcase_39 AC 324 ms
38,528 KB
testcase_40 AC 337 ms
38,656 KB
testcase_41 AC 303 ms
38,656 KB
testcase_42 AC 150 ms
38,656 KB
testcase_43 AC 150 ms
38,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int M = 241;
const int S = 1000000;
array<bitset<M>, S + 10> mex_vec;
array<int, S + 10> grundy;
int n, fold, a;
int main() {
	for(int i = 2; i <= S; i++) {
		for(int j = 1; j < M; j++) {
			if(mex_vec[i][j] == 0) {
				grundy[i] = j;
				break;
			}
		}
		for(int j = i; j <= S; j += i)
			mex_vec[j][grundy[i]] = 1;
	}

	cin >> n;
	while(n--) {
		cin >> a;
		fold ^= grundy[a];
	}

	cout << (fold ? "white" : "black") << '\n';

	return 0;
}
0