結果

問題 No.1665 quotient replace
ユーザー monnumonnu
提出日時 2021-09-03 23:15:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 278 ms / 3,000 ms
コード長 792 bytes
コンパイル時間 3,534 ms
コンパイル使用メモリ 229,088 KB
実行使用メモリ 11,152 KB
最終ジャッジ日時 2024-12-15 17:42:21
合計ジャッジ時間 9,789 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,120 KB
testcase_01 AC 10 ms
7,280 KB
testcase_02 AC 10 ms
7,216 KB
testcase_03 AC 10 ms
7,176 KB
testcase_04 AC 10 ms
7,248 KB
testcase_05 AC 10 ms
7,212 KB
testcase_06 AC 12 ms
7,140 KB
testcase_07 AC 10 ms
7,112 KB
testcase_08 AC 11 ms
7,144 KB
testcase_09 AC 18 ms
7,424 KB
testcase_10 AC 100 ms
8,468 KB
testcase_11 AC 214 ms
10,208 KB
testcase_12 AC 32 ms
7,448 KB
testcase_13 AC 278 ms
11,068 KB
testcase_14 AC 274 ms
11,024 KB
testcase_15 AC 275 ms
10,976 KB
testcase_16 AC 274 ms
10,968 KB
testcase_17 AC 278 ms
11,152 KB
testcase_18 AC 11 ms
7,060 KB
testcase_19 AC 10 ms
7,272 KB
testcase_20 AC 10 ms
7,176 KB
testcase_21 AC 10 ms
7,168 KB
testcase_22 AC 10 ms
7,240 KB
testcase_23 AC 11 ms
7,180 KB
testcase_24 AC 11 ms
7,284 KB
testcase_25 AC 10 ms
7,184 KB
testcase_26 AC 11 ms
7,132 KB
testcase_27 AC 12 ms
7,132 KB
testcase_28 AC 20 ms
7,192 KB
testcase_29 AC 30 ms
7,552 KB
testcase_30 AC 153 ms
9,088 KB
testcase_31 AC 215 ms
10,324 KB
testcase_32 AC 203 ms
10,080 KB
testcase_33 AC 82 ms
8,320 KB
testcase_34 AC 173 ms
9,408 KB
testcase_35 AC 153 ms
9,268 KB
testcase_36 AC 157 ms
9,320 KB
testcase_37 AC 150 ms
9,140 KB
testcase_38 AC 176 ms
9,524 KB
testcase_39 AC 123 ms
8,772 KB
testcase_40 AC 122 ms
8,976 KB
testcase_41 AC 124 ms
8,832 KB
testcase_42 AC 10 ms
7,156 KB
testcase_43 AC 10 ms
7,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<pair<int,int>>>;
#define MAX 100000
#define MOD 1000000007
#define INF 1000000000000000000

int main(){
  int N;
  cin>>N;
  vector<int> A(N);
  for(int i=0;i<N;i++){
    cin>>A[i];
  }

  int M=1000000;
  vector<int> grundy(M+1,0);
  for(int i=2;i*i<=M;i++){
    if(grundy[i]==0){
      for(int d=i;d<=M;d*=i){
        for(int j=d;j<=M;j+=d){
          grundy[j]++;
        }
      }
    }
  }
  for(int i=1001;i<=M;i++){
    if(grundy[i]==0){
      for(int j=i;j<=M;j+=i){
        grundy[j]++;
      }
    }
  }

  int x=0;
  for(int i=0;i<N;i++){
    x^=grundy[A[i]];
  }
  if(x==0){
    cout<<"black"<<'\n';
  }else{
    cout<<"white"<<'\n';
  }
}
0