結果

問題 No.1665 quotient replace
ユーザー KudeKude
提出日時 2021-09-03 21:36:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,583 ms / 3,000 ms
コード長 2,582 bytes
コンパイル時間 4,992 ms
コンパイル使用メモリ 265,500 KB
実行使用メモリ 126,824 KB
最終ジャッジ日時 2024-05-09 02:27:23
合計ジャッジ時間 39,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,549 ms
125,888 KB
testcase_01 AC 1,519 ms
125,668 KB
testcase_02 AC 1,497 ms
125,768 KB
testcase_03 AC 1,487 ms
125,696 KB
testcase_04 AC 1,453 ms
126,644 KB
testcase_05 AC 1,432 ms
125,696 KB
testcase_06 AC 1,409 ms
125,712 KB
testcase_07 AC 1,367 ms
125,768 KB
testcase_08 AC 1,369 ms
125,852 KB
testcase_09 AC 1,376 ms
126,764 KB
testcase_10 AC 1,473 ms
125,944 KB
testcase_11 AC 1,579 ms
126,720 KB
testcase_12 AC 1,492 ms
125,716 KB
testcase_13 AC 1,553 ms
125,684 KB
testcase_14 AC 1,583 ms
126,304 KB
testcase_15 AC 1,519 ms
126,424 KB
testcase_16 AC 1,519 ms
126,824 KB
testcase_17 AC 1,495 ms
125,764 KB
testcase_18 AC 1,445 ms
126,120 KB
testcase_19 AC 1,418 ms
125,656 KB
testcase_20 AC 1,480 ms
126,452 KB
testcase_21 AC 1,494 ms
125,756 KB
testcase_22 AC 1,529 ms
126,780 KB
testcase_23 AC 1,466 ms
125,788 KB
testcase_24 AC 1,530 ms
125,844 KB
testcase_25 AC 1,385 ms
126,276 KB
testcase_26 AC 1,493 ms
125,892 KB
testcase_27 AC 1,377 ms
126,136 KB
testcase_28 AC 1,462 ms
125,820 KB
testcase_29 AC 1,381 ms
125,768 KB
testcase_30 AC 1,548 ms
125,896 KB
testcase_31 AC 1,579 ms
125,648 KB
testcase_32 AC 1,574 ms
126,548 KB
testcase_33 AC 1,490 ms
125,752 KB
testcase_34 AC 1,555 ms
126,772 KB
testcase_35 AC 1,508 ms
125,884 KB
testcase_36 AC 1,486 ms
126,640 KB
testcase_37 AC 1,466 ms
125,724 KB
testcase_38 AC 1,446 ms
126,044 KB
testcase_39 AC 1,493 ms
125,952 KB
testcase_40 AC 1,523 ms
125,712 KB
testcase_41 AC 1,557 ms
126,140 KB
testcase_42 AC 1,485 ms
125,780 KB
testcase_43 AC 1,498 ms
125,680 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);

// global variable lpf must be defined
std::vector<std::pair<int,int>> factorize(int n) {
    std::vector<std::pair<int,int>> fs;
    while(n > 1) {
        int p = lpf[n];
        int cnt = 0;
        do {n /= p; cnt++;} while(n % p == 0);
        fs.emplace_back(p, cnt);
    }
    return fs;
}

int g[1000001];
VI dests[1000001];
bool table[1000001];
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    for(int i = 1; i <= 1000000; i++) {
        for(int x: dests[i]) table[x] = true;
        int t = 0;
        while(table[t]) t++;
        g[i] = t;
        for(int x: dests[i]) table[x] = false;
        for(int j = i + i; j <= 1000000; j += i) dests[j].push_back(t);
    }


    int n;
    cin >> n;
    int gr = 0;
    rep(_, n) {
        int x;
        cin >> x;
        gr ^= g[x];
    }
    cout << (gr ? "white" : "black") << endl;
}
0