結果

問題 No.1665 quotient replace
ユーザー nok0nok0
提出日時 2021-08-10 23:12:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 431 ms / 3,000 ms
コード長 494 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 202,556 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-05-09 00:37:34
合計ジャッジ時間 11,447 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
15,200 KB
testcase_01 AC 57 ms
15,232 KB
testcase_02 AC 57 ms
15,156 KB
testcase_03 AC 56 ms
15,232 KB
testcase_04 AC 56 ms
15,004 KB
testcase_05 AC 57 ms
15,244 KB
testcase_06 AC 59 ms
15,192 KB
testcase_07 AC 55 ms
15,360 KB
testcase_08 AC 58 ms
15,184 KB
testcase_09 AC 67 ms
15,232 KB
testcase_10 AC 172 ms
15,104 KB
testcase_11 AC 327 ms
15,084 KB
testcase_12 AC 87 ms
15,104 KB
testcase_13 AC 412 ms
15,232 KB
testcase_14 AC 406 ms
15,104 KB
testcase_15 AC 409 ms
15,232 KB
testcase_16 AC 431 ms
15,232 KB
testcase_17 AC 420 ms
15,192 KB
testcase_18 AC 57 ms
15,140 KB
testcase_19 AC 56 ms
15,228 KB
testcase_20 AC 57 ms
15,168 KB
testcase_21 AC 57 ms
15,320 KB
testcase_22 AC 55 ms
15,212 KB
testcase_23 AC 56 ms
15,104 KB
testcase_24 AC 56 ms
15,232 KB
testcase_25 AC 55 ms
15,204 KB
testcase_26 AC 56 ms
15,144 KB
testcase_27 AC 60 ms
15,152 KB
testcase_28 AC 67 ms
15,260 KB
testcase_29 AC 81 ms
15,196 KB
testcase_30 AC 227 ms
15,104 KB
testcase_31 AC 324 ms
15,228 KB
testcase_32 AC 316 ms
15,360 KB
testcase_33 AC 153 ms
15,220 KB
testcase_34 AC 260 ms
15,060 KB
testcase_35 AC 245 ms
15,232 KB
testcase_36 AC 252 ms
15,164 KB
testcase_37 AC 235 ms
15,112 KB
testcase_38 AC 276 ms
15,352 KB
testcase_39 AC 206 ms
15,232 KB
testcase_40 AC 203 ms
15,152 KB
testcase_41 AC 205 ms
15,164 KB
testcase_42 AC 56 ms
15,176 KB
testcase_43 AC 57 ms
15,224 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