結果

問題 No.1665 quotient replace
ユーザー eSeFeSeF
提出日時 2021-09-14 22:03:58
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 3,000 ms
コード長 592 bytes
コンパイル時間 4,899 ms
コンパイル使用メモリ 179,456 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-06-27 13:36:25
合計ジャッジ時間 13,330 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
14,848 KB
testcase_01 AC 27 ms
14,976 KB
testcase_02 AC 27 ms
15,104 KB
testcase_03 AC 27 ms
14,976 KB
testcase_04 AC 27 ms
14,976 KB
testcase_05 AC 26 ms
14,976 KB
testcase_06 AC 31 ms
15,104 KB
testcase_07 AC 28 ms
14,976 KB
testcase_08 AC 29 ms
15,104 KB
testcase_09 AC 40 ms
14,848 KB
testcase_10 AC 171 ms
14,976 KB
testcase_11 AC 319 ms
14,976 KB
testcase_12 AC 63 ms
14,976 KB
testcase_13 AC 410 ms
14,976 KB
testcase_14 AC 415 ms
14,976 KB
testcase_15 AC 405 ms
14,976 KB
testcase_16 AC 406 ms
14,976 KB
testcase_17 AC 415 ms
14,976 KB
testcase_18 AC 26 ms
15,104 KB
testcase_19 AC 27 ms
14,976 KB
testcase_20 AC 27 ms
14,848 KB
testcase_21 AC 27 ms
14,976 KB
testcase_22 AC 27 ms
14,976 KB
testcase_23 AC 27 ms
14,976 KB
testcase_24 AC 27 ms
14,976 KB
testcase_25 AC 26 ms
14,976 KB
testcase_26 AC 28 ms
14,976 KB
testcase_27 AC 29 ms
14,976 KB
testcase_28 AC 39 ms
14,976 KB
testcase_29 AC 50 ms
14,976 KB
testcase_30 AC 201 ms
14,976 KB
testcase_31 AC 290 ms
14,976 KB
testcase_32 AC 311 ms
14,976 KB
testcase_33 AC 141 ms
14,976 KB
testcase_34 AC 257 ms
14,976 KB
testcase_35 AC 241 ms
14,976 KB
testcase_36 AC 256 ms
14,976 KB
testcase_37 AC 226 ms
14,976 KB
testcase_38 AC 272 ms
14,976 KB
testcase_39 AC 200 ms
14,848 KB
testcase_40 AC 200 ms
14,976 KB
testcase_41 AC 195 ms
14,976 KB
testcase_42 AC 27 ms
14,976 KB
testcase_43 AC 27 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
int main(){
  int N;
  cin >> N;
  int M = 1000000;
  vector<int>C(M+1,0);
  for(int i=0;i<N;i++){
    int a;cin >> a;
    C[a]^=1;
  }
  vector<int>p(M+1,1);
  vector<int>gs(M+1,0);
  for(int i=2;i<=M;i++){
    if(p[i]==0)continue;
    for(int j=2*i;j<=M;j+=i){
      p[j] = 0;
    }
    for(int j=i;j<=M;j+=i){
      if(C[j]==0)continue;
      int y = j;
      while(y%i==0)y/=i,gs[j]++;
    }
  }
  int g = 0;
  for(int i=1;i<=M;i++)g^=gs[i];
  cout << (g?"white":"black") << endl;
  return 0;
}
0