結果

問題 No.1665 quotient replace
ユーザー KudeKude
提出日時 2021-09-04 00:08:06
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 259 ms / 3,000 ms
コード長 2,109 bytes
コンパイル時間 4,502 ms
コンパイル使用メモリ 262,800 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-12-15 19:47:11
合計ジャッジ時間 10,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,552 KB
testcase_01 AC 8 ms
7,476 KB
testcase_02 AC 7 ms
7,392 KB
testcase_03 AC 8 ms
7,412 KB
testcase_04 AC 8 ms
7,424 KB
testcase_05 AC 8 ms
7,508 KB
testcase_06 AC 10 ms
7,424 KB
testcase_07 AC 8 ms
7,424 KB
testcase_08 AC 9 ms
7,296 KB
testcase_09 AC 16 ms
7,424 KB
testcase_10 AC 89 ms
7,424 KB
testcase_11 AC 190 ms
7,448 KB
testcase_12 AC 27 ms
7,424 KB
testcase_13 AC 254 ms
7,424 KB
testcase_14 AC 244 ms
7,412 KB
testcase_15 AC 254 ms
7,424 KB
testcase_16 AC 254 ms
7,424 KB
testcase_17 AC 259 ms
7,412 KB
testcase_18 AC 8 ms
7,456 KB
testcase_19 AC 8 ms
7,420 KB
testcase_20 AC 9 ms
7,296 KB
testcase_21 AC 8 ms
7,424 KB
testcase_22 AC 8 ms
7,412 KB
testcase_23 AC 8 ms
7,552 KB
testcase_24 AC 8 ms
7,424 KB
testcase_25 AC 8 ms
7,424 KB
testcase_26 AC 8 ms
7,416 KB
testcase_27 AC 9 ms
7,388 KB
testcase_28 AC 12 ms
7,552 KB
testcase_29 AC 18 ms
7,424 KB
testcase_30 AC 84 ms
7,424 KB
testcase_31 AC 117 ms
7,424 KB
testcase_32 AC 180 ms
7,420 KB
testcase_33 AC 73 ms
7,424 KB
testcase_34 AC 150 ms
7,424 KB
testcase_35 AC 135 ms
7,424 KB
testcase_36 AC 139 ms
7,424 KB
testcase_37 AC 136 ms
7,424 KB
testcase_38 AC 160 ms
7,424 KB
testcase_39 AC 112 ms
7,416 KB
testcase_40 AC 112 ms
7,296 KB
testcase_41 AC 116 ms
7,416 KB
testcase_42 AC 9 ms
7,424 KB
testcase_43 AC 8 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;
std::pair<std::vector<int>,std::vector<int>> primes_lpf(const int n) {
    std::pair<std::vector<int>,std::vector<int>> rv;
    std::vector<int>& primes = rv.first;
    std::vector<int>& lpf = rv.second;
    primes.reserve(n / 10);
    lpf.resize(n + 1);
    for(int i = 2; i <= n; i += 2) lpf[i] = 2;
    for(int i = 3; i <= n; i += 6) lpf[i] = 3;
    if (2 <= n) primes.push_back(2);
    if (3 <= n) primes.push_back(3);
    // 5 * x <= n, x <= floor(n / 5)
    const int n5 = n / 5;
    int x = 5;
    bool one_mod6 = false;
    // x_1 <= n5, x_2 = x_1 + 2 <= n5 + 2 <= n
    for(; x <= n5; one_mod6 = !one_mod6, x += (one_mod6 ? 2 : 4)) {
        if (lpf[x] == 0) {
            lpf[x] = x;
            primes.push_back(x);
        }
        int px = lpf[x];
        for(int i = 2;; ++i) {
            int q = primes[i];
            int y = q * x;
            if (y > n) break;
            lpf[y] = q;
            if (q == px) break;
        }
    }
    for(; x <= n; one_mod6 = !one_mod6, x += (one_mod6 ? 2 : 4)) {
        if (lpf[x] == 0) {
            lpf[x] = x;
            primes.push_back(x);
        }
    }
    return rv;
}

auto [primes, lpf] = primes_lpf(1000000);

int factorize(int n) {
    int ret = 0;
    while(n > 1) {
        int p = lpf[n];
        do {n /= p; ret++;} while(n % p == 0);
    }
    return ret;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    int g = 0;
    rep(_, n) {
        int x;
        cin >> x;
        g ^= factorize(x);
    }
    cout << (g ? "white" : "black") << endl;
}
0