結果

問題 No.1665 quotient replace
ユーザー SSRSSSRS
提出日時 2021-09-03 21:29:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,674 ms / 3,000 ms
コード長 678 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 176,492 KB
実行使用メモリ 125,356 KB
最終ジャッジ日時 2024-05-09 01:57:54
合計ジャッジ時間 66,978 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,350 ms
121,440 KB
testcase_01 AC 2,364 ms
121,428 KB
testcase_02 AC 2,351 ms
121,484 KB
testcase_03 AC 2,373 ms
121,492 KB
testcase_04 AC 2,399 ms
121,540 KB
testcase_05 AC 2,362 ms
121,420 KB
testcase_06 AC 2,369 ms
121,472 KB
testcase_07 AC 2,360 ms
121,360 KB
testcase_08 AC 2,356 ms
121,464 KB
testcase_09 AC 2,387 ms
121,592 KB
testcase_10 AC 2,485 ms
122,888 KB
testcase_11 AC 2,606 ms
124,408 KB
testcase_12 AC 2,367 ms
121,828 KB
testcase_13 AC 2,671 ms
125,324 KB
testcase_14 AC 2,667 ms
125,328 KB
testcase_15 AC 2,665 ms
125,348 KB
testcase_16 AC 2,674 ms
125,356 KB
testcase_17 AC 2,674 ms
125,328 KB
testcase_18 AC 2,340 ms
121,420 KB
testcase_19 AC 2,359 ms
121,412 KB
testcase_20 AC 2,364 ms
121,492 KB
testcase_21 AC 2,358 ms
121,312 KB
testcase_22 AC 2,367 ms
121,412 KB
testcase_23 AC 2,363 ms
121,488 KB
testcase_24 AC 2,328 ms
121,500 KB
testcase_25 AC 2,601 ms
121,380 KB
testcase_26 AC 2,351 ms
121,392 KB
testcase_27 AC 2,360 ms
121,464 KB
testcase_28 AC 2,368 ms
121,572 KB
testcase_29 AC 2,391 ms
121,728 KB
testcase_30 AC 2,535 ms
123,420 KB
testcase_31 AC 2,599 ms
124,616 KB
testcase_32 AC 2,575 ms
124,316 KB
testcase_33 AC 2,468 ms
122,484 KB
testcase_34 AC 2,540 ms
123,748 KB
testcase_35 AC 2,524 ms
123,492 KB
testcase_36 AC 2,534 ms
123,620 KB
testcase_37 AC 2,509 ms
123,424 KB
testcase_38 AC 2,532 ms
123,804 KB
testcase_39 AC 2,485 ms
123,136 KB
testcase_40 AC 2,505 ms
123,156 KB
testcase_41 AC 2,474 ms
123,268 KB
testcase_42 AC 2,355 ms
121,428 KB
testcase_43 AC 2,353 ms
121,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<vector<int>> f(1000001);
  for (int i = 1; i <= 1000000; i++){
    for (int j = i * 2; j <= 1000000; j += i){
      f[j].push_back(i);
    }
  }
  vector<int> grundy(1000001, 0);
  for (int i = 2; i <= 1000000; i++){
    set<int> st;
    for (int j : f[i]){
      st.insert(grundy[j]);
    }
    while (st.count(grundy[i]) == 1){
      grundy[i]++;
    }
  }
  int X = 0;
  for (int i = 0; i < N; i++){
    X ^= grundy[A[i]];
  }
  if (X > 0){
    cout << "white" << endl;
  } else {
    cout << "black" << endl;
  }
}
0