結果

問題 No.1665 quotient replace
ユーザー monnumonnu
提出日時 2021-09-03 23:08:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 3,849 ms
コンパイル使用メモリ 228,868 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-05-09 06:44:35
合計ジャッジ時間 9,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,128 KB
testcase_01 AC 11 ms
7,280 KB
testcase_02 AC 10 ms
7,288 KB
testcase_03 AC 12 ms
7,296 KB
testcase_04 AC 11 ms
7,168 KB
testcase_05 AC 11 ms
7,296 KB
testcase_06 AC 13 ms
7,168 KB
testcase_07 AC 11 ms
7,252 KB
testcase_08 AC 12 ms
7,316 KB
testcase_09 AC 21 ms
7,424 KB
testcase_10 AC 110 ms
8,480 KB
testcase_11 AC 231 ms
10,112 KB
testcase_12 AC 34 ms
7,448 KB
testcase_13 AC 303 ms
11,008 KB
testcase_14 AC 305 ms
11,008 KB
testcase_15 AC 302 ms
11,008 KB
testcase_16 AC 304 ms
11,264 KB
testcase_17 AC 303 ms
11,008 KB
testcase_18 AC 11 ms
7,152 KB
testcase_19 AC 10 ms
7,168 KB
testcase_20 AC 10 ms
7,164 KB
testcase_21 AC 10 ms
7,060 KB
testcase_22 AC 10 ms
7,116 KB
testcase_23 AC 10 ms
7,168 KB
testcase_24 AC 11 ms
7,196 KB
testcase_25 AC 10 ms
7,168 KB
testcase_26 AC 10 ms
7,168 KB
testcase_27 AC 12 ms
7,240 KB
testcase_28 AC 20 ms
7,444 KB
testcase_29 AC 31 ms
7,424 KB
testcase_30 AC 160 ms
9,088 KB
testcase_31 AC 245 ms
10,172 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 10 ms
7,296 KB
testcase_43 AC 10 ms
7,296 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){
      grundy[i]++;
    }
  }

  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