結果

問題 No.1665 quotient replace
ユーザー nok0nok0
提出日時 2021-08-10 23:12:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 365 ms / 3,000 ms
コード長 494 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 202,828 KB
実行使用メモリ 15,312 KB
最終ジャッジ日時 2024-12-15 08:47:59
合計ジャッジ時間 9,634 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
15,276 KB
testcase_01 AC 52 ms
15,136 KB
testcase_02 AC 52 ms
15,132 KB
testcase_03 AC 51 ms
15,112 KB
testcase_04 AC 51 ms
15,228 KB
testcase_05 AC 55 ms
15,228 KB
testcase_06 AC 54 ms
15,144 KB
testcase_07 AC 52 ms
15,172 KB
testcase_08 AC 52 ms
15,056 KB
testcase_09 AC 61 ms
15,172 KB
testcase_10 AC 161 ms
15,236 KB
testcase_11 AC 301 ms
15,192 KB
testcase_12 AC 78 ms
15,132 KB
testcase_13 AC 360 ms
15,096 KB
testcase_14 AC 365 ms
15,196 KB
testcase_15 AC 345 ms
15,076 KB
testcase_16 AC 350 ms
15,160 KB
testcase_17 AC 343 ms
15,312 KB
testcase_18 AC 52 ms
15,208 KB
testcase_19 AC 53 ms
15,036 KB
testcase_20 AC 52 ms
15,208 KB
testcase_21 AC 52 ms
15,128 KB
testcase_22 AC 51 ms
15,236 KB
testcase_23 AC 51 ms
15,244 KB
testcase_24 AC 50 ms
15,180 KB
testcase_25 AC 51 ms
15,136 KB
testcase_26 AC 51 ms
15,092 KB
testcase_27 AC 57 ms
15,132 KB
testcase_28 AC 62 ms
15,132 KB
testcase_29 AC 74 ms
15,032 KB
testcase_30 AC 206 ms
15,200 KB
testcase_31 AC 294 ms
15,144 KB
testcase_32 AC 278 ms
15,008 KB
testcase_33 AC 135 ms
15,228 KB
testcase_34 AC 234 ms
15,244 KB
testcase_35 AC 218 ms
15,164 KB
testcase_36 AC 230 ms
15,284 KB
testcase_37 AC 222 ms
15,180 KB
testcase_38 AC 249 ms
15,124 KB
testcase_39 AC 180 ms
15,152 KB
testcase_40 AC 177 ms
15,228 KB
testcase_41 AC 181 ms
15,188 KB
testcase_42 AC 52 ms
15,220 KB
testcase_43 AC 52 ms
15,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int M = 30;
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