結果

問題 No.1665 quotient replace
ユーザー SSRSSSRS
提出日時 2021-09-03 21:27:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 673 bytes
コンパイル時間 1,861 ms
コンパイル使用メモリ 178,160 KB
実行使用メモリ 17,912 KB
最終ジャッジ日時 2024-12-15 10:03:23
合計ジャッジ時間 10,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
13,952 KB
testcase_01 AC 74 ms
13,952 KB
testcase_02 AC 73 ms
13,952 KB
testcase_03 AC 75 ms
14,464 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 69 ms
14,464 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 164 ms
15,360 KB
testcase_11 AC 281 ms
16,896 KB
testcase_12 WA -
testcase_13 AC 347 ms
17,904 KB
testcase_14 AC 342 ms
17,860 KB
testcase_15 AC 339 ms
17,904 KB
testcase_16 AC 343 ms
17,908 KB
testcase_17 AC 366 ms
17,912 KB
testcase_18 AC 69 ms
13,952 KB
testcase_19 AC 77 ms
13,952 KB
testcase_20 AC 74 ms
13,952 KB
testcase_21 AC 68 ms
13,952 KB
testcase_22 AC 71 ms
13,952 KB
testcase_23 WA -
testcase_24 AC 70 ms
13,952 KB
testcase_25 AC 69 ms
13,952 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 77 ms
14,464 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 144 ms
15,104 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 238 ms
16,640 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 65 ms
13,952 KB
testcase_43 AC 67 ms
13,952 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(100001);
  for (int i = 1; i <= 100000; i++){
    for (int j = i * 2; j <= 100000; j += i){
      f[j].push_back(i);
    }
  }
  vector<int> grundy(100001, 0);
  for (int i = 2; i <= 100000; 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