結果

問題 No.1665 quotient replace
ユーザー nok0nok0
提出日時 2021-09-03 20:40:21
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 414 ms / 3,000 ms
コード長 495 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 202,884 KB
実行使用メモリ 38,672 KB
最終ジャッジ日時 2024-12-15 09:05:23
合計ジャッジ時間 11,974 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
38,528 KB
testcase_01 AC 91 ms
38,624 KB
testcase_02 AC 89 ms
38,528 KB
testcase_03 AC 91 ms
38,528 KB
testcase_04 AC 93 ms
38,528 KB
testcase_05 AC 97 ms
38,528 KB
testcase_06 AC 101 ms
38,528 KB
testcase_07 AC 95 ms
38,608 KB
testcase_08 AC 98 ms
38,528 KB
testcase_09 AC 108 ms
38,656 KB
testcase_10 AC 204 ms
38,656 KB
testcase_11 AC 337 ms
38,436 KB
testcase_12 AC 122 ms
38,588 KB
testcase_13 AC 402 ms
38,640 KB
testcase_14 AC 414 ms
38,436 KB
testcase_15 AC 377 ms
38,456 KB
testcase_16 AC 386 ms
38,472 KB
testcase_17 AC 393 ms
38,484 KB
testcase_18 AC 94 ms
38,620 KB
testcase_19 AC 91 ms
38,600 KB
testcase_20 AC 83 ms
38,492 KB
testcase_21 AC 97 ms
38,592 KB
testcase_22 AC 88 ms
38,544 KB
testcase_23 AC 90 ms
38,536 KB
testcase_24 AC 92 ms
38,632 KB
testcase_25 AC 88 ms
38,580 KB
testcase_26 AC 87 ms
38,604 KB
testcase_27 AC 90 ms
38,672 KB
testcase_28 AC 105 ms
38,464 KB
testcase_29 AC 114 ms
38,512 KB
testcase_30 AC 245 ms
38,464 KB
testcase_31 AC 328 ms
38,636 KB
testcase_32 AC 313 ms
38,448 KB
testcase_33 AC 186 ms
38,584 KB
testcase_34 AC 276 ms
38,660 KB
testcase_35 AC 256 ms
38,524 KB
testcase_36 AC 258 ms
38,576 KB
testcase_37 AC 243 ms
38,508 KB
testcase_38 AC 276 ms
38,460 KB
testcase_39 AC 215 ms
38,636 KB
testcase_40 AC 221 ms
38,584 KB
testcase_41 AC 229 ms
38,500 KB
testcase_42 AC 99 ms
38,540 KB
testcase_43 AC 86 ms
38,500 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