結果

問題 No.1665 quotient replace
ユーザー tko919tko919
提出日時 2021-09-03 23:39:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 362 ms / 3,000 ms
コード長 740 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 200,452 KB
実行使用メモリ 7,336 KB
最終ジャッジ日時 2024-05-09 07:49:26
合計ジャッジ時間 9,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
7,124 KB
testcase_01 AC 34 ms
7,144 KB
testcase_02 AC 31 ms
7,168 KB
testcase_03 AC 32 ms
7,336 KB
testcase_04 AC 31 ms
7,128 KB
testcase_05 AC 33 ms
7,168 KB
testcase_06 AC 36 ms
7,212 KB
testcase_07 AC 35 ms
7,168 KB
testcase_08 AC 35 ms
7,168 KB
testcase_09 AC 41 ms
7,168 KB
testcase_10 AC 139 ms
7,168 KB
testcase_11 AC 260 ms
7,296 KB
testcase_12 AC 57 ms
7,296 KB
testcase_13 AC 362 ms
7,204 KB
testcase_14 AC 347 ms
7,168 KB
testcase_15 AC 361 ms
7,164 KB
testcase_16 AC 337 ms
7,168 KB
testcase_17 AC 358 ms
7,296 KB
testcase_18 AC 32 ms
7,256 KB
testcase_19 AC 34 ms
7,156 KB
testcase_20 AC 33 ms
7,148 KB
testcase_21 AC 32 ms
7,280 KB
testcase_22 AC 34 ms
7,168 KB
testcase_23 AC 33 ms
7,240 KB
testcase_24 AC 33 ms
7,168 KB
testcase_25 AC 32 ms
7,204 KB
testcase_26 AC 34 ms
7,168 KB
testcase_27 AC 36 ms
7,168 KB
testcase_28 AC 42 ms
7,040 KB
testcase_29 AC 57 ms
7,168 KB
testcase_30 AC 199 ms
7,168 KB
testcase_31 AC 281 ms
7,168 KB
testcase_32 AC 288 ms
7,120 KB
testcase_33 AC 123 ms
7,228 KB
testcase_34 AC 229 ms
7,168 KB
testcase_35 AC 208 ms
7,168 KB
testcase_36 AC 209 ms
7,128 KB
testcase_37 AC 208 ms
7,128 KB
testcase_38 AC 225 ms
7,208 KB
testcase_39 AC 175 ms
7,168 KB
testcase_40 AC 168 ms
7,200 KB
testcase_41 AC 171 ms
7,160 KB
testcase_42 AC 34 ms
7,128 KB
testcase_43 AC 32 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

//template
#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define ALL(v) (v).begin(),(v).end()
using ll=long long int;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}



int main(){
   vector<int> buf(1010101);
   rep(x,1,1010101){
      for(int y=x*2;y<=1000000;y+=x)if(buf[y]==buf[x])buf[y]++;
   }

   int n;
   cin>>n;
   int g=0;
   rep(i,0,n){
      int x;
      cin>>x;
      g^=buf[x];
   }
   if(g)puts("white");
   else puts("black");
   return 0;
}
0