結果

問題 No.1665 quotient replace
ユーザー umezoumezo
提出日時 2021-09-03 22:17:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 563 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 201,748 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-05-09 04:37:17
合計ジャッジ時間 24,923 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,520 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 63 ms
5,376 KB
testcase_10 AC 693 ms
5,376 KB
testcase_11 AC 1,557 ms
6,272 KB
testcase_12 AC 170 ms
5,376 KB
testcase_13 AC 2,050 ms
7,160 KB
testcase_14 AC 2,053 ms
7,168 KB
testcase_15 AC 2,046 ms
7,144 KB
testcase_16 AC 2,050 ms
7,168 KB
testcase_17 AC 2,049 ms
7,168 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 16 ms
5,376 KB
testcase_27 AC 50 ms
5,376 KB
testcase_28 AC 227 ms
5,376 KB
testcase_29 AC 466 ms
5,376 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

int prime_factor(ll x){
  int res=0;
  for(ll i=2;i*i<=x;i++){
    while(x%i==0){
      res++;
      x/=i;
    }
  }
  if(x!=1) res++;
  return res;
}
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  vector<int> A(n);
  rep(i,n) cin>>A[i];
  
  int ans=0;
  rep(i,n) ans^=prime_factor(A[i]);
  if(ans==0) cout<<"black"<<endl;
  else cout<<"white"<<endl;
  
  return 0;
}
0