結果

問題 No.1665 quotient replace
ユーザー sten_san
提出日時 2021-09-03 22:01:01
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 288 ms / 3,000 ms
コード長 1,581 bytes
コンパイル時間 2,860 ms
コンパイル使用メモリ 191,828 KB
最終ジャッジ日時 2025-01-24 05:44:50
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct iofast_t {
    iofast_t() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} iofast;

struct uns_t {} uns;
template <typename Element, typename Head, typename ...Args>
auto vec(Element init, Head arg, Args ...args) {
    if constexpr (sizeof...(Args) == 0) return std::vector(arg, init);
    else return std::vector(arg, vec(init, args...));
}
template <typename Element, typename Head, typename ...Args>
auto vec(uns_t, Head arg, Args ...args) {
    return vec(Element(), arg, args...);
}

template <typename T, typename Compare = less<T>>
T &chmin(T &l, T r, Compare &&f = less<T>()) { return l = min(l, r, f); }
template <typename T, typename Compare = less<T>>
T &chmax(T &l, T r, Compare &&f = less<T>()) { return l = max(l, r, f); }

constexpr int lim = 1000000;

int sieve[lim + 1];

int main() {
    iota(begin(sieve), end(sieve), 0);

    for (int i = 2; i <= lim / i; ++i) {
        if (sieve[i] != i) {
            continue;
        }
        for (int j = i * i; j <= lim; j += i) {
            chmin(sieve[j], i);
        }
    }

    auto sum = [&](int x) {
        int sum = 0;

        while (1 < x) {
            auto p = sieve[x];

            int count = 0;
            while (x % p == 0) {
                x /= p;
                ++count;
            }

            sum += count;
        }

        return sum;
    };

    int n; cin >> n;

    int all = 0;
    while (n--) {
        int a; cin >> a;
        all ^= sum(a);
    }

    cout << (all != 0 ? "white" : "black") << endl;
}

0