結果

問題 No.1665 quotient replace
ユーザー miscalcmiscalc
提出日時 2021-09-03 21:50:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 511 ms / 3,000 ms
コード長 1,445 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 204,536 KB
実行使用メモリ 29,336 KB
最終ジャッジ日時 2024-05-09 03:23:55
合計ジャッジ時間 16,259 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
13,592 KB
testcase_01 AC 207 ms
13,676 KB
testcase_02 AC 203 ms
13,712 KB
testcase_03 AC 211 ms
13,760 KB
testcase_04 AC 199 ms
13,696 KB
testcase_05 AC 194 ms
13,604 KB
testcase_06 AC 187 ms
13,696 KB
testcase_07 AC 188 ms
13,720 KB
testcase_08 AC 181 ms
13,672 KB
testcase_09 AC 175 ms
14,080 KB
testcase_10 AC 303 ms
18,944 KB
testcase_11 AC 431 ms
25,472 KB
testcase_12 AC 209 ms
14,924 KB
testcase_13 AC 505 ms
29,268 KB
testcase_14 AC 492 ms
29,240 KB
testcase_15 AC 488 ms
29,292 KB
testcase_16 AC 511 ms
29,288 KB
testcase_17 AC 487 ms
29,336 KB
testcase_18 AC 171 ms
13,696 KB
testcase_19 AC 193 ms
13,656 KB
testcase_20 AC 193 ms
13,676 KB
testcase_21 AC 180 ms
13,616 KB
testcase_22 AC 164 ms
13,604 KB
testcase_23 AC 175 ms
13,676 KB
testcase_24 AC 177 ms
13,664 KB
testcase_25 AC 177 ms
13,568 KB
testcase_26 AC 199 ms
13,804 KB
testcase_27 AC 175 ms
13,696 KB
testcase_28 AC 183 ms
14,124 KB
testcase_29 AC 204 ms
14,824 KB
testcase_30 AC 335 ms
21,616 KB
testcase_31 AC 417 ms
25,772 KB
testcase_32 AC 398 ms
24,956 KB
testcase_33 AC 278 ms
17,908 KB
testcase_34 AC 351 ms
22,764 KB
testcase_35 AC 355 ms
21,888 KB
testcase_36 AC 342 ms
22,500 KB
testcase_37 AC 332 ms
21,604 KB
testcase_38 AC 360 ms
23,168 KB
testcase_39 AC 309 ms
20,436 KB
testcase_40 AC 306 ms
20,352 KB
testcase_41 AC 304 ms
20,476 KB
testcase_42 AC 201 ms
13,696 KB
testcase_43 AC 193 ms
13,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
//using mint = modint1000000007;
using ll = long long;
using ld = long double;
using pll = pair<ll, ll>;
using tlll = tuple<ll, ll, ll>;
constexpr ll INF = 1LL << 60;
template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;}
ll safemod(ll A, ll M) {return (A % M + M) % M;}
ll divfloor(ll A, ll B) {if (B < 0) {return divfloor(-A, -B);} return (A - safemod(A, B)) / B;}
ll divceil(ll A, ll B) {if (B < 0) {return divceil(-A, -B);} return divfloor(A + B - 1, B);}
#define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false)

int main()
{
  ll N;
  cin >> N;
  vector<ll> A(N);
  for (ll i = 0; i < N; i++)
  {
    cin >> A.at(i);
  }

  const ll M = 1333333;
  vector<ll> primecount(M, 0);
  for (ll p = 2; p < M; p++)
  {
    if (primecount.at(p) == 0)
    {
      for (ll k = 1; k * p < M; k++)
      {
        ll tmp = k * p;
        while (tmp % p == 0)
        {
          tmp /= p;
          primecount.at(k * p)++;
        }
      }
    }
  }

  vector<ll> B(N);
  for (ll i = 0; i < N; i++)
  {
    B.at(i) = primecount.at(A.at(i));
    //cerr << B.at(i) << endl;
  }

  ll x = 0;
  for (ll i = 0; i < N; i++)
  {
    x ^= B.at(i);
  }

  cout << (x == 0 ? "black\n" : "white\n");
}
0